/* ============================================
   SABIA - Education Technology Landing Page
   Custom Stylesheet - Enhanced Version
   ============================================ */
/* ============================================
   CSS VARIABLES
   ============================================ */
   :root {
    /* Primary Colors */
    --color-primary: #0A6E6E;
    --color-primary-dark: #085858;
    --color-primary-light: #0C8484;
    /* Accent Colors */
    --color-accent: #D4A84B;
    --color-accent-dark: #B8923F;
    --color-accent-light: #E5C06A;
    /* Nano Banana Concept (Organic Tech Pop) */
    --color-nano-pop: #D4E157;
    --gradient-nano: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-nano-pop) 100%);
    /* Neutral Colors */
    --color-background: #FDFBF7;
    --color-background-alt: #F5F1E8;
    --color-text: #2D3436;
    --color-text-light: #636E72;
    --color-text-muted: #9BA3A7;
    --color-white: #FFFFFF;
    --color-dark: #1A1A2E;
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    /* Dynamic Navbar Height (set by JavaScript) */
    --navbar-height: 0px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}
/* ============================================
   BASE STYLES & LAYOUT FIXES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
    overflow-x: hidden;
}
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    overflow-x: hidden;
    position: relative;
    width: 100%;
}
/* Prevent horizontal scroll from AOS animations */
section {
    max-width: 100%;
    overflow-x: clip; /* Modern fix */
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-dark);
}
a {
    text-decoration: none;
    transition: var(--transition-fast);
}
img {
    max-width: 100%;
    height: auto;
}
.section-padding {
    padding: var(--section-padding) 0;
}
/* CONTAINER SPACING (High Status Layout) */
.container {
    /* Remove the forced 100% width to allow centering */
    padding-left: 2rem; 
    padding-right: 2rem;
}
/* On very large screens, ensure it centers beautifully */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--color-dark);
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .section-padding {
        padding: var(--section-padding-mobile) 0;
    }
    .section-title {
        font-size: 1.875rem;
    }
}
/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}
.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}
.btn-accent:hover {
    background-color: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}
/* ============================================
   NAVIGATION
   ============================================ */
#mainNav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 1.25rem 0;
    transition: all var(--transition-normal);
}
#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.75rem 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.brand-icon {
    font-size: 1.75rem;
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: var(--transition-fast);
}
.brand-icon:hover {
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}
#mainNav.scrolled .brand-icon {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}
#mainNav.scrolled .brand-text {
    color: var(--color-dark);
    text-shadow: none;
}
.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: transform var(--transition-fast);
    box-shadow: 0 0 8px var(--color-accent);
}
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.nav-link:hover {
    color: var(--color-accent) !important;
    text-shadow: 0 0 10px rgba(212, 168, 75, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}
#mainNav.scrolled .nav-link {
    color: var(--color-text) !important;
    text-shadow: none;
}
#mainNav.scrolled .nav-link:hover {
    color: var(--color-primary) !important;
    background: rgba(10, 110, 110, 0.08);
}
#mainNav.scrolled .nav-link::after {
    background: var(--color-primary);
    box-shadow: 0 0 8px var(--color-primary);
}
#mainNav .btn-accent {
    box-shadow: 0 2px 10px rgba(212, 168, 75, 0.4);
}
#mainNav .btn-accent:hover {
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.5);
}
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.3);
}
.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
#mainNav.scrolled .navbar-toggler {
    background: rgba(10, 110, 110, 0.08);
}
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: none;
}
@media (max-width: 991px) {
    #mainNav {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 0.4rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    .brand-icon {
        font-size: 1.4rem;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
    }
    .brand-text {
        font-size: 1.2rem;
        color: var(--color-dark);
        text-shadow: none;
    }
    .nav-link {
        color: var(--color-text) !important;
        text-shadow: none;
    }
    .nav-link::after {
        display: none;
    }
    .nav-link:hover {
        color: var(--color-primary) !important;
        background: rgba(10, 110, 110, 0.08);
        text-shadow: none;
    }
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        border-radius: var(--radius-md);
        margin-top: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    .navbar-toggler {
        background: rgba(10, 110, 110, 0.08);
        padding: 0.25rem 0.5rem;
        font-size: 0.9rem;
    }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 52, 54, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        filter: none;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + 1rem);
}
.hero-section .col-lg-7,
.hero-section .col-lg-5 {
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 168, 75, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    will-change: transform, opacity;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-trust-note {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    padding-top: 0.5rem;
}
.hero-trust-note i {
    color: var(--color-accent);
    font-size: 1.25rem;
}
@media (max-width: 991px) {
    .hero-section {
        padding-bottom: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.125rem;
    }
    .hero-cta {
        flex-direction: column;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
}
/* ============================================
   ABOUT & OTHER SECTIONS
   ============================================ */
.about-section {
    background-color: var(--color-white);
}
.about-pillar {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-background);
    transition: var(--transition-normal);
}
.about-pillar:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.pillar-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}
.about-pillar h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.about-pillar p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}
/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background-color: var(--color-background);
}
.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-icon i {
    font-size: 2rem;
    color: var(--color-white);
}
.service-icon.google-icon {
    background: linear-gradient(135deg, #4285F4 0%, #34A853 50%, #FBBC05 100%);
}
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.service-card > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: var(--color-text);
}
.service-features li i {
    color: var(--color-primary);
    font-size: 1rem;
}
/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us-section {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-background) 100%);
}
.trust-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.trust-icon i {
    font-size: 2.25rem;
    color: var(--color-dark);
}
.trust-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
}
.trust-card p {
    color: var(--color-text-light);
    margin-bottom: 0;
}
/* ============================================
   AI INTEGRATION SECTION
   ============================================ */
.ai-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-white) 100%);
}
.ai-benefits {
    margin-top: 2rem;
}
.ai-benefit-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border-left: 4px solid var(--color-primary);
}
.ai-benefit-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}
.benefit-icon {
    flex-shrink: 0;
}
.benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}
.benefit-content h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}
.benefit-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.6;
}
/* ============================================
   GUARANTEES SECTION
   ============================================ */
.guarantees-section {
    background: linear-gradient(135deg, var(--color-background-alt) 0%, var(--color-background) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.guarantees-section h3 {
    font-size: 1.5rem;
    color: var(--color-dark);
}
.guarantee-item {
    text-align: center;
    padding: 1.5rem 1rem;
}
.guarantee-item i {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}
.guarantee-item h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}
.guarantee-item p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}
/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background-color: var(--color-background);
}
.consultation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.consultation-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}
.consultation-list li i {
    color: var(--color-primary);
    font-size: 1.25rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--color-text);
}
.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.contact-reassurance {
    background-color: rgba(10, 110, 110, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--color-primary);
    font-size: 0.875rem;
    color: var(--color-text-light);
    display: flex;
    align-items: flex-start;
}
.contact-reassurance i {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-form-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.form-label {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid #E8E8E8;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
}
.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 110, 110, 0.1);
}
.form-control::placeholder {
    color: var(--color-text-muted);
}
.form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}
.form-note i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}
.form-success,
.form-error {
    text-align: center;
    padding: 2rem;
}
.form-success i,
.form-error i {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.form-success i {
    color: #28a745;
}
.form-error i {
    color: #dc3545;
}
.form-success h4,
.form-error h4 {
    margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
    .contact-form-card {
        padding: 1.5rem;
    }
}
/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.footer-brand .brand-icon {
    font-size: 1.5rem;
}
.footer-brand .brand-text {
    font-size: 1.25rem;
}
.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: var(--transition-normal);
}
.footer-social a:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}
.footer-links a:hover {
    color: var(--color-accent);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}
.footer-contact li i {
    color: var(--color-accent);
}
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2.5rem 0 1.5rem;
}
.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}
.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}
.footer-legal a:hover {
    color: var(--color-accent);
}
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
    }
    .footer-description {
        margin: 0 auto 1.5rem;
    }
    .footer-social {
        justify-content: center;
        margin-bottom: 2rem;
    }
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}
/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}
/* Focus styles for accessibility (WCAG 2.2) */
:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(212, 168, 75, 0.4), 
                0 0 0 1px var(--color-accent) !important;
    transition: box-shadow 0.2s ease;
}
::selection {
    background-color: var(--color-primary);
    color: var(--color-white);
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-background);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-dark);
}
/* ============================================
   HIGH STATUS ILLUSTRATIONS (Nano Banana Concept)
   ============================================ */
.svg-illustration {
    width: 100%;
    height: auto;
    max-height: 450px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.svg-illustration:hover {
    transform: translateY(-5px) scale(1.02);
}
/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; r: 15; }
    50% { opacity: 0.9; r: 18; }
}
@keyframes dash-flow {
    to { stroke-dashoffset: -100; }
}
.animate-float {
    animation: float-slow 7s ease-in-out infinite;
}
.animate-float-delayed {
    animation: float-delayed 9s ease-in-out infinite 1.5s;
}
.animate-pulse {
    animation: pulse-glow 4s ease-in-out infinite;
}
.animate-flow {
    stroke-dasharray: 10;
    animation: dash-flow 20s linear infinite;
}
/* ============================================
   UX ENHANCEMENTS & ACCESSIBILITY
   ============================================ */
/* Skip to Content */
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-to-content {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: var(--shadow-xl);
}
/* ============================================
   FLOATING CTA BUTTON (NEW)
   ============================================ */
.btn-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000; /* Higher than back-to-top */
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid var(--color-white); /* White border makes it pop */
}

/* Hover Effect */
.btn-floating-cta:hover {
    background: var(--color-accent-dark);
    color: var(--color-white);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.6);
}

/* Icon Size */
.btn-floating-cta i {
    font-size: 1.25rem;
}

/* Mobile Optimization: Circle button with icon only */
@media (max-width: 768px) {
    .btn-floating-cta {
        padding: 0;
        width: 60px;
        height: 60px;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
    
    .btn-floating-cta .cta-text {
        display: none; /* Hide text on mobile */
    }
    
    .btn-floating-cta i {
        font-size: 1.5rem;
    }
}

/* Back to Top Button */
.btn-back-to-top {
    position: fixed;
    bottom: 100px; /* Adjusted to sit above the FAB */
    right: 30px;
    width: 40px; /* Slightly smaller to de-emphasize */
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    box-shadow: var(--shadow-lg);
    z-index: 990; /* Lower than FAB */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
}
.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.btn-back-to-top:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .btn-back-to-top {
        bottom: 90px;
        right: 25px;
    }
}

/* Enhanced Card Interaction (Tactile Feel) */
.service-card, .trust-card {
    cursor: default; 
    position: relative;
    overflow: hidden;
}
.service-card::after, .trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-nano-pop));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover::after, .trust-card:hover::after {
    transform: scaleX(1);
}
/* ============================================
   MOBILE & TABLET FIXES
   ============================================ */
@media (min-width: 577px) and (max-width: 992px) {
    /* Tablet Portrait Fix */
    .hero-section {
        min-height: auto !important; 
        align-items: flex-start !important; 
        padding-top: calc(var(--navbar-height) + 5rem) !important; 
        padding-bottom: 5rem !important; 
    }
    .hero-section .col-lg-7 {
        max-width: 100%;
        padding-right: 15px; 
    }
}
@media (max-width: 992px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        overflow: hidden;
    }
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    .row > * {
        padding-left: 12px;
        padding-right: 12px;
    }
    section {
        overflow-x: clip;
    }
    .hero-section {
        padding-top: calc(var(--navbar-height) + 1.5rem);
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    .guarantees-section {
        padding: 2rem 1rem;
    }
    .contact-form-card {
        margin: 0 -5px;
        border-radius: var(--radius-md);
    }
}
@media (max-width: 576px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-section {
        padding-top: calc(var(--navbar-height) + 2.5rem);
    }
    .btn {
        white-space: normal;
        word-wrap: break-word;
    }
    .trust-card {
        padding: 1.5rem 1rem;
    }
    .service-card {
        margin-left: 0;
        margin-right: 0;
    }
}