/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #1a202c;
}

p {
    color: #64748b;
    margin-bottom: 16px;
}

/* Colors */
:root {
    --primary-color: #4285f4;
    --secondary-color: #34a853;
    --accent-color: #ea4335;
    --dark-color: #1a202c;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.text-accent {
    color: var(--primary-color);
}

.brand-accent {
    color: var(--secondary-color);
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow);
}

/* Comparison / Pricing Tables */
.comparison-table {
    margin-top: 32px;
    overflow-x: auto;
}

/* About Section 3 Column Layout */
.about-three-column {
    padding: 40px 0;
    background-color: #F5F7FA;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column - About Content */
.about-left {
    padding-right: 20px;
}

.decorative-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.decorative-heading h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F5D57;
    margin: 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.line-left, .line-right {
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.line-left {
    margin-right: 15px;
}

.line-right {
    margin-left: 15px;
}

.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 24px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #1A1A1A;
}

.about-features i {
    color: #2F5D57;
    margin-right: 12px;
    font-size: 1rem;
}

.learn-more {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more:hover {
    transform: translateX(5px);
}

.learn-more span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #2F5D57;
    margin-right: 12px;
}

.arrow-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #2F5D57;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.arrow-button:hover {
    background-color: #244944;
    transform: scale(1.1);
}

/* Center Column - Car Image */
.about-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.green-background-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 380px;
    background-color: #244944;
    border-radius: 12px;
    z-index: 1;
}

.car-image-center {
    position: relative;
    z-index: 2;
}

.car-image-center img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Right Column - Features */
.about-right {
    padding-left: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.feature-item {
    text-align: center;
    transition: transform 0.3s ease;
    padding: 20px;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A1A1A;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .about-center {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-left, .about-right {
        padding: 0;
    }
    
    .about-center {
        order: -1;
    }
    
    .green-background-center {
        width: 150px;
        height: 300px;
    }
    
    .decorative-heading {
        flex-direction: column;
        gap: 16px;
    }
    
    .line-left, .line-right {
        width: 60px;
        height: 1px;
        margin: 0;
    }
    
    .about-features {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 32px auto;
    }
    
    .learn-more {
        justify-content: center;
    }
    
    .features-list {
        gap: 30px;
        padding: 10px 0;
    }
    
    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .about-three-column {
        padding: 30px 0;
    }
    
    .features-list {
        gap: 25px;
        padding: 5px 0;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
}

/* About Us Page Styles */
.about-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    padding: 120px 0 80px;
}

.about-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 32px;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 24px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px 20px;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
}

.position {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.member-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    padding: 14px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    background: #0f766e;
    text-align: left;
    white-space: nowrap;
}

.comparison-table tbody td {
    padding: 12px 18px;
    font-size: 0.95rem;
    color: #334155;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tbody tr:nth-child(even) td {
    background: #f8fafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    font-weight: 600;
    color: #0f172a;
}

/* Slight header color variations for different sections if needed */
.section.bg-light .comparison-table thead th {
    background: #1e3a8a;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    position: relative;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.nav-brand .logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    border: 1px solid #e5e7eb;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Show dropdown on hover and when active */
.nav-menu > li:hover > .dropdown-menu,
.nav-menu > li > .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
        align-items: flex-start;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding: 0 0 0 20px;
    }

    .dropdown-menu.active {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    /* Animate hamburger to X */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Why Choose Grid - 2 columns on tablet */
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: #3367d6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background: #2d8f47;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.trust-badges {
    display: flex;
    gap: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.badge i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step {
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    padding: 24px 20px 20px;
    position: relative;
    overflow: hidden;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    box-shadow: 0 6px 15px rgba(15, 118, 110, 0.35);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step p {
    margin-bottom: 0;
}

.step::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.25);
    pointer-events: none;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    animation: fadeInUp 1s ease;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    color: #444;
}

.mission-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.member-info p {
    color: #666;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f5f5;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Testimonials Section */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonial {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin: 20px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-name {
    font-weight: 600;
    color: var(--dark-color);
}

.student-location {
    color: #777;
    font-size: 0.9rem;
    position: relative;
    padding-left: 15px;
}

.student-location::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #ccc;
    border-radius: 50%;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    text-align: left;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
}

.faq-question i {
    font-size: 0.9rem;
    color: #64748b;
    transition: transform 0.25s ease, color 0.25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 12px 0 16px;
    color: #4b5563;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
}

.faq-question i.rotate {
    transform: rotate(180deg);
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    /* Why Choose Grid - 1 column on mobile */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .page-header {
        padding: 100px 20px 60px;
        margin-top: 70px;
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .stats-container {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .nav-brand .logo-image {
        height: 35px;
        max-width: 160px;
    }

    .page-header {
        padding: 90px 16px 50px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .testimonial {
        padding: 30px 20px;
    }

    .stat {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 15px 40px;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .page-header p {
        font-size: 1.05rem;
    }

    .stat {
        min-width: 100%;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.savings {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--secondary-color);
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--dark-color);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #64748b;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: var(--primary-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: #f1f5f9;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Sticky CTA Button */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.sticky-cta .btn {
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Global Responsive Tweaks */
@media (max-width: 992px) {
    .hero {
        padding: 110px 0 70px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .service-card,
    .pricing-card,
    .contact-form {
        padding: 28px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Chatbot Widget */
#chatbot-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
    z-index: 10000;
    font-family: 'Inter', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4285f4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
    background: linear-gradient(135deg, #4285f4, var(--primary-color));
}

.chatbot-button:active {
    transform: scale(0.95);
}

.chatbot-button i {
    font-size: 24px;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform-origin: bottom left;
}

.chatbot-window.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color), #4285f4);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-header h3 {
    margin: 0;
    font-size: 16px;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 400px;
}

.chatbot-messages {
    flex: none;
    padding: 16px;
    overflow-y: visible;
}

.message {
    margin-bottom: 12px;
}

.bot-message {
    text-align: left;
}

.bot-message p {
    margin: 0;
    font-size: 14px;
    color: #333;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chatbot-form {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.chatbot-form input,
.chatbot-form select,
.chatbot-form textarea {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #333;
    box-sizing: border-box;
}

.chatbot-form input:focus,
.chatbot-form select:focus,
.chatbot-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.1);
}

.chatbot-form textarea {
    resize: vertical;
    min-height: 60px;
}

.chatbot-form button {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chatbot-form button:hover {
    background: #4285f4;
    transform: translateY(-1px);
}

/* Chatbot Options */
.chatbot-options {
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    background: #f8f9fa;
    display: none;
}

.chatbot-options.active {
    display: block;
}

.chatbot-options h4 {
    margin: 0 0 12px 0;
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.chatbot-option-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chatbot-option-btn {
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #333;
}

.chatbot-option-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.chatbot-option-btn i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.user-message {
    text-align: right;
    margin-bottom: 12px;
}

.user-message p {
    margin: 0;
    font-size: 14px;
    color: white;
    background: var(--primary-color);
    padding: 12px;
    border-radius: 12px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    display: inline-block;
    max-width: 80%;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Mobile responsiveness for chatbot */
@media (max-width: 768px) {
    #chatbot-widget {
        bottom: 20px;
        left: 20px;
        right: auto;
        z-index: 10000;
    }

    .chatbot-window {
        width: calc(100vw - 40px);
        height: 500px;
        max-height: 80vh;
        bottom: 80px;
        left: 0;
        position: absolute;
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .chatbot-header {
        padding: 20px;
        border-radius: 16px 16px 0 0;
    }

    .chatbot-header h3 {
        font-size: 16px;
        font-weight: 600;
    }

    .chatbot-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .chatbot-body {
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        max-height: 400px;
    }

    .chatbot-messages {
        flex: none;
        padding: 20px;
        overflow-y: visible;
    }

    .message {
        margin-bottom: 16px;
    }

    .bot-message p {
        font-size: 15px;
        padding: 16px;
        line-height: 1.5;
    }

    .chatbot-form {
        padding: 20px;
        gap: 16px;
        background: white;
        border-top: 1px solid #e2e8f0;
        border-radius: 0 0 16px 16px;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    .chatbot-form input,
    .chatbot-form select,
    .chatbot-form textarea {
        font-size: 16px;
        padding: 16px;
        border-radius: 12px;
        border: 2px solid #e2e8f0;
        transition: border-color 0.2s ease;
        box-sizing: border-box;
    }

    .chatbot-form input:focus,
    .chatbot-form select:focus,
    .chatbot-form textarea:focus {
        border-color: var(--primary-color);
        outline: none;
    }

    .chatbot-form textarea {
        min-height: 80px;
        resize: vertical;
    }

    .chatbot-form button {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        background: var(--primary-color);
        color: white;
        border: none;
        cursor: pointer;
        transition: all 0.2s ease;
        margin-top: 8px;
    }

    .chatbot-form button:hover {
        background: #4285f4;
        transform: translateY(-1px);
    }

    .chatbot-button {
        width: 60px;
        height: 60px;
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
    }

    .chatbot-button i {
        font-size: 24px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    #chatbot-widget {
        bottom: 16px;
        left: 16px;
        right: auto;
        z-index: 10000;
    }

    .chatbot-window {
        width: calc(100vw - 32px);
        height: 450px;
        max-height: 75vh;
        bottom: 76px;
        left: 0;
        position: absolute;
    }

    .chatbot-header {
        padding: 16px;
    }

    .chatbot-header h3 {
        font-size: 15px;
    }

    .chatbot-messages {
        padding: 16px;
        overflow-y: visible;
    }

    .bot-message p {
        font-size: 14px;
        padding: 14px;
    }

    .chatbot-form {
        padding: 16px;
        gap: 14px;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }

    .chatbot-form input,
    .chatbot-form select,
    .chatbot-form textarea {
        font-size: 16px;
        padding: 14px;
        box-sizing: border-box;
    }

    .chatbot-form textarea {
        min-height: 70px;
    }

    .chatbot-form button {
        padding: 14px 20px;
        font-size: 15px;
        background: var(--primary-color);
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 12px;
        margin-top: 8px;
    }

    .chatbot-button {
        width: 56px;
        height: 56px;
    }

    .chatbot-button i {
        font-size: 22px;
    }
}
