/* =========================================
   Variables & Theme
   ========================================= */
:root {
    /* Color Palette */
    --primary: #0a4275;       /* Deep professional blue */
    --primary-light: #256bb1;
    --accent: #ff6b6b;        /* Vibrant coral for CTAs and highlights */
    --accent-hover: #ff4f4f;
    --bg-light: #f4f7fa;      /* Soft grayish blue background */
    --bg-white: #ffffff;
    --text-main: #2b3a4a;     /* Dark slate for text */
    --text-muted: #64748b;    /* Slate gray for secondary text */
    --text-light: #ffffff;
    
    /* Layout */
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 66, 117, 0.12);
    --shadow-hover: 0 15px 35px rgba(10, 66, 117, 0.18);
    
    /* Header/Nav */
    --nav-height: 80px;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* =========================================
   Layout & Utility
   ========================================= */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 40px 0;
}

.overflow-hidden {
    overflow: hidden;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
}

.bg-gradient h2, .bg-gradient p {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
}

.header-line {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.header-line-left {
    height: 4px;
    width: 60px;
    background: var(--accent);
    margin: 0 0 20px 0;
    border-radius: 2px;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-secondary, .btn-primary-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 15px 32px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
    color: var(--text-light);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 15px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-primary-sm {
    background-color: var(--accent);
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 0.95rem;
}
.btn-primary-sm:hover {
    background-color: var(--accent-hover);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* =========================================
   Top Bar & Navigation
   ========================================= */
.top-bar {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: var(--text-light);
    opacity: 0.9;
}
.contact-info a:hover {
    opacity: 1;
    color: var(--accent);
}

.top-bar .social-links a {
    color: var(--text-light);
    margin-left: 15px;
    opacity: 0.8;
}
.top-bar .social-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Main Nav */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo .accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary-sm) {
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-sm):hover::after,
.nav-links a:not(.btn-primary-sm).active::after {
    width: 100%;
}

.nav-links a:not(.btn-primary-sm):hover,
.nav-links a:not(.btn-primary-sm).active {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height) - 40px);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero-bg.png'); /* Custom premium generated image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 66, 117, 0.95) 0%, rgba(10, 66, 117, 0.8) 50%, rgba(10, 66, 117, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-light);
    max-width: 700px;
}

.hero h1 {
    color: var(--text-light);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    color: var(--accent);
}

/* =========================================
   Brands Carousel Section
   ========================================= */
.brands-title {
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brands-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgb(0,0,0) 10%, rgb(0,0,0) 90%, rgba(0,0,0,0) 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brand-item {
    font-size: 1.8rem;
    font-weight: 800;
    color: #cbd5e1;
    font-family: 'Arial', sans-serif;
    letter-spacing: -0.5px;
    transition: var(--transition);
    cursor: default;
}

.brand-item:hover {
    color: var(--primary);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 30px)); /* Half minus gap */
    }
}

/* =========================================
   How It Works Section (Process)
   ========================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::after {
    content: '';
    position: absolute;
    top: 45px; /* Center of the icon */
    left: 10%;
    width: 80%;
    height: 2px;
    background: rgba(10, 66, 117, 0.1);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step .step-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-white);
    border: 3px solid rgba(10, 66, 117, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 2rem;
    color: var(--primary);
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-step:hover .step-icon {
    border-color: var(--accent);
    color: var(--text-light);
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step .step-num {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(45px); /* Offset to the right of icon */
    background: var(--primary);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid var(--bg-white);
    z-index: 2;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.95rem;
}

/* =========================================
   Services Section
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 4px solid var(--bg-white);
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: rotate(360deg);
}

.service-content {
    padding: 35px 30px 30px;
}

.service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   About Us Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 500;
}

.about-list i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 3px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-box h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.about-image {
    position: relative;
}

.img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--text-light);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    text-align: center;
    border: 5px solid var(--bg-light);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '\f10d'; /* FontAwesome quote left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: rgba(10, 66, 117, 0.05);
}

.stars {
    color: #f59e0b; /* Golden yellow */
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.review-text {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 20px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.client-info h4 {
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   Locations Section
   ========================================= */
.locations-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.location-tag {
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.location-tag i {
    color: var(--accent);
}

.location-tag:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--primary);
    color: var(--text-light);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: var(--bg-white);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--bg-light);
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

/* =========================================
   Contact & Booking Section
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-info-panel p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.detail-item h4 {
    color: var(--text-light);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.detail-item p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.booking-form-panel {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.booking-form-panel h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    background: #f8fafc;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 66, 117, 0.1);
    background: var(--bg-white);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    background: var(--accent);
    color: var(--text-light);
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* =========================================
   Mobile Floating Action Button
   ========================================= */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366; /* WhatsApp/Call Green */
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: pulse-glow 2s infinite normal;
}

.mobile-fab i {
    font-size: 1.3rem;
    animation: wiggle 2s linear infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes wiggle {
    0%, 7% { transform: rotateZ(0); }
    15% { transform: rotateZ(-15deg); }
    20% { transform: rotateZ(10deg); }
    25% { transform: rotateZ(-10deg); }
    30% { transform: rotateZ(6deg); }
    35% { transform: rotateZ(-4deg); }
    40%, 100% { transform: rotateZ(0); }
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: #062847; /* Darker shade of primary */
    color: #a0aec0;
    padding-top: 80px;
}

.footer h3, .footer h4 {
    color: var(--text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col.about h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-col.about h3 .accent {
    color: var(--accent);
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-light);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #a0aec0;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li i {
    font-size: 0.7rem;
    margin-right: 8px;
    color: var(--accent);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
}

.newsletter-form input::placeholder {
    color: #a0aec0;
}

.newsletter-form button {
    background: var(--accent);
    color: var(--text-light);
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.footer-bottom {
    background: #041c32;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* =========================================
   Animations
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .experience-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::after { display: none; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .navbar { height: 70px; }
    
    .mobile-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active { left: 0; }
    
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .stats-container { grid-template-columns: 1fr; text-align: center; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    /* Show FAB on Mobile */
    .mobile-fab { display: flex; }
}

@media (max-width: 576px) {
    .form-grid { grid-template-columns: 1fr; }
    .section-padding { padding: 60px 0; }
    .process-grid { grid-template-columns: 1fr; }
}
