/* Plex Family Prime Styles - v3.2.1 */

:root {
    --primary-color: #1a365d;
    --secondary-color: #d69e2e;
    --accent-color: #38a169;
    --bg-light: #f7fafc;
    --text-dark: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff
}

/* Navigation Styles */
.f1g4-area-element-nav .navbar {
    transition: all 0.3s ease;
    padding: 1rem 0
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: -0.5px
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important
}

/* Bootstrap Color Overrides */
.bg-primary {
    background-color: var(--primary-color) !important
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease
}

.btn-primary:hover {
    background-color: #2c5282;
    border-color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3)
}

.btn-warning {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #ffffff
}

.btn-warning:hover {
    background-color: #b7791f;
    border-color: #b7791f;
    color: #ffffff
}

/* Hero Section */
.f1g4-area-element-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
    min-height: 80vh;
    position: relative
}



.min-vh-75 {
    min-height: 75vh
}

/* Cards */
.card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 12px
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important
}

/* Stats Section */
.f1g4-area-element-stats .display-4 {
    font-size: 3.5rem
}

/* Services */
.f1g4-area-element-services .card-body {
    padding: 2rem !important
}

.f1g4-area-element-services .card-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem
}

/* About Section */
.f1g4-area-element-about {
    background-color: var(--bg-light)
}

/* Process Section */
.f1g4-area-element-process .position-relative::after {
    content: "";
    position: absolute;
    top: 40px;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), transparent);
    z-index: -1
}

.f1g4-area-element-process .col-lg-3:last-child .position-relative::after {
    display: none
}

/* Testimonials */
.f1g4-area-element-testimonials .card {
    height: 100%
}

/* Contact Page Styles */
.f1g4-area-element-contact-hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, #2f855a 100%)
}

.f1g4-area-element-contact-form .form-control,
.f1g4-area-element-contact-form .form-select {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease
}

.f1g4-area-element-contact-form .form-control:focus,
.f1g4-area-element-contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 54, 93, 0.1)
}

/* Contact Info Cards */
.f1g4-area-element-contact-info .rounded-circle {
    width: 80px !important;
    height: 80px !important
}

/* Office Hours */
.f1g4-area-element-office-hours .card {
    transition: all 0.3s ease
}

.f1g4-area-element-office-hours .card:hover {
    transform: scale(1.05)
}

/* Emergency Section */
.f1g4-area-element-emergency {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e53e3e 100%)
}

/* Footer */
.f1g4-area-element-footer {
    background-color: #1a202c !important
}

.f1g4-area-element-footer a {
    transition: color 0.3s ease
}

.f1g4-area-element-footer a:hover {
    color: var(--secondary-color) !important
}

/* Investment Section */
.f1g4-area-element-investments .bg-light {
    background-color: var(--bg-light) !important;
    border-radius: 8px;
    transition: all 0.3s ease
}

.f1g4-area-element-investments .bg-light:hover {
    background-color: #edf2f7 !important;
    transform: translateY(-2px)
}

/* FAQ Section */
.f1g4-area-element-faq .card {
    border-left: 4px solid var(--primary-color)
}

/* CTA Section */
.f1g4-area-element-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.card, .btn {
    animation: fadeInUp 0.6s ease-out
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem !important
    }
    
    .display-5 {
        font-size: 2rem !important
    }
    
    .f1g4-area-element-hero {
        min-height: 60vh;
        text-align: center
    }
    
    .f1g4-area-element-process .position-relative::after {
        display: none
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem
    }
}

/* Custom Utilities */
.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important
}

.rounded-3 {
    border-radius: 0.75rem !important
}

/* Form Enhancements */
.form-control-lg, .form-select-lg {
    padding: 0.75rem 1rem;
    font-size: 1.1rem
}

/* Icon Styling */
.bi {
    line-height: 1
}

/* Text Utilities */
.text-muted {
    color: var(--text-muted) !important
}

/* Background Gradients */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%) !important
}

/* Additional spacing */
.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
}

/* Cookie Banner Styles */
#cookieConsent {
    background-color: #1a202c !important;
    border-top: 3px solid var(--secondary-color)
}

/* TODO: Add dark mode support */
/* TODO: Optimize for better mobile performance */

/* Legacy support - keeping for backwards compatibility */
.legacy-button {
    background: #007bff;
    color: white
}