:root {
    --primary-color: #1a365d;
    --secondary-color: #e11d48; /* Reddish color to match logo */
    --accent-color: #f43f5e;
    --text-dark: #1f2937;
    --text-light: #f3f4f6;
    --white: #ffffff;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.top-bar-info {
    display: flex;
    gap: 25px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

.top-bar-social a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.top-bar-social a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
        padding: 10px 5%;
        text-align: center;
    }
    .top-bar-info {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .top-bar { display: none; }
}

/* --- Navbar --- */
nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
    margin-left: 30px; /* More room for the massive scale */
}

.logo img {
    height: 30px; 
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
    transform: scale(4.5); /* Massive visual presence for desktop */
    transform-origin: left center;
}

@media (max-width: 768px) {
    .logo { margin-left: 10px; }
    .logo img { transform: scale(3.5); } /* Increased for mobile visibility */
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-schedule {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-schedule:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* --- Hamburger Menu --- */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile Nav Links */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.5s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
    position: relative;
    overflow: hidden; /* For background zoom */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(26, 54, 93, 0.65), rgba(26, 54, 93, 0.65)), 
                url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?q=80&w=2071&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
    animation: kenBurns 20s infinite alternate ease-in-out;
}

.hero-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease-out, shimmer 3s infinite;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s both, floating 4s infinite ease-in-out 1.5s;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@media (max-width: 768px) {
    .hero { height: auto; padding: 120px 5% 180px; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
}

.btn-repair {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    animation: fadeInUp 1s ease-out 0.9s both;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
    border: 2px solid transparent;
}

.btn-repair:hover {
    background-color: transparent;
    border-color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.5);
}

/* --- Feature Cards --- */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 80%;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

@media (max-width: 1024px) {
    .features-container { width: 90%; }
}

@media (max-width: 768px) {
    .features-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 40px 5%;
        margin-top: -100px;
    }
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
    animation: slideInBottom 1s ease-out 1.2s both;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    background: var(--accent-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-info p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* --- About Section --- */
.about {
    padding: 120px 5% 80px;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .about-container { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .about-content { align-items: center; }
    .section-tag { margin: 0 auto; }
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: var(--transition-slow);
}

.about-img:hover {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.3);
    animation: floating 4s infinite ease-in-out;
}

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

.experience-badge .exp-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-tag {
    background: rgba(225, 29, 72, 0.1);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    width: fit-content;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 800;
}

.about-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    transition: var(--transition-fast);
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

/* --- Services Section --- */
.services {
    padding: 100px 5%;
    background-color: #f8fafc;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2.2rem; }
    .section-header p { font-size: 1rem; }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(10deg);
}

.service-info {
    padding: 40px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Card Variations */
.card-light { background-color: #f1f5f9; }
.card-medium { background-color: #94a3b8; color: var(--white); }
.card-dark { background-color: #1e293b; color: var(--white); }

.card-medium h3, .card-dark h3 { color: var(--white) !important; }
.card-medium p, .card-dark p { color: rgba(255,255,255,0.8) !important; }

.service-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

.btn-read {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
    margin-top: auto;
    transition: var(--transition-fast);
}

.card-medium .btn-read, .card-dark .btn-read {
    background: rgba(255,255,255,0.15);
}

.service-card:hover .btn-read {
    background: var(--secondary-color);
    color: var(--white);
}

/* --- Why Choose Us Section --- */
.choose-us {
    padding: 100px 5%;
    background-color: #f1f5f9;
}

.section-tag-alt {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto 15px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.choose-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-fast);
}

.choose-item:hover {
    transform: translateX(10px);
}

.choose-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.box-dark { background-color: var(--primary-color); }
.box-light { background-color: var(--accent-color); }

.choose-item:hover .choose-icon-box {
    border-radius: 50%;
    transform: rotate(360deg);
}

.choose-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.choose-info p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .choose-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .choose-grid { grid-template-columns: 1fr; }
}

/* --- Specialist Section --- */
.specialist {
    padding: 80px 5%;
    background-color: var(--white);
}

.specialist-card {
    max-width: 1200px;
    margin: 0 auto;
    background: url('https://images.unsplash.com/photo-1556912170-4537da367129?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    box-shadow: 0 30px 100px rgba(0,0,0,0.15);
}

.specialist-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26, 54, 93, 0.9) 0%, rgba(26, 54, 93, 0.7) 50%, rgba(26, 54, 93, 0.4) 100%);
    backdrop-filter: blur(5px);
}

.specialist-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    padding: 60px 80px;
    align-items: center;
}

.specialist-content {
    color: var(--white);
}

.specialist-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin: 25px 0 35px;
    font-weight: 700;
}

.specialist-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.profile-img-wrapper {
    width: 300px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition-slow);
}

.profile-img-wrapper:hover {
    transform: translateY(-10px) rotate(2deg);
}

.profile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.profile-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

@media (max-width: 992px) {
    .specialist-grid {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        text-align: center;
    }
    .specialist-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .profile-img-wrapper {
        width: 250px;
        height: 300px;
    }
}

/* --- How It Works Section --- */
.how-it-works {
    padding: 100px 5%;
    background-color: var(--white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.process-card {
    background-color: var(--accent-color);
    padding: 40px 30px;
    border-radius: 20px;
    color: var(--white);
    text-align: left;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.2);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 100px; height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: var(--transition-slow);
}

.process-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
}

.process-card:hover::before {
    width: 150px; height: 150px;
    background: rgba(255, 255, 255, 0.1);
}

.step-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* --- Specialization & Stats Section --- */
.specialization {
    padding: 100px 5%;
    background-color: var(--white);
}

.spec-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.spec-content h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 20px 0 30px;
    line-height: 1.2;
    font-weight: 800;
}

.spec-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
}

.spec-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.collage-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: var(--transition-slow);
}

.collage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.collage-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.item-stat-1 {
    background-color: #f8fafc;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.item-stat-2 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    font-size: 2rem;
    font-weight: 600;
    margin-left: 5px;
}

.item-stat-1 .stat-number { color: var(--primary-color); }
.item-stat-1 p { color: #64748b; }

.item-stat-2 p { opacity: 0.9; font-weight: 500; }

@media (max-width: 992px) {
    .spec-container { grid-template-columns: 1fr; gap: 60px; }
    .spec-content { text-align: center; }
    .section-tag { margin: 0 auto; }
}

@media (max-width: 640px) {
    .spec-collage { grid-template-columns: 1fr; }
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 100px 5%;
    background-color: #f8fafc;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    opacity: 0.6;
}

.customer-profile {
    margin-bottom: 25px;
}

.customer-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #f1f5f9;
}

.customer-profile h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.customer-profile span {
    font-size: 0.85rem;
    color: #94a3b8;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.stars {
    color: #fbbf24;
    font-size: 0.9rem;
    display: flex;
    gap: 5px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* --- FAQ Section --- */
.faq {
    padding: 100px 5%;
    background-color: var(--white);
}

.faq-container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.faq-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.faq-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.support-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.4);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-question i {
    color: #94a3b8;
    transition: var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .faq-container { grid-template-columns: 1fr; gap: 60px; }
    .faq-image-wrapper img { height: 400px; }
}

/* --- Contact Section --- */
.contact {
    padding: 100px 5%;
    background-color: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-info p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.method-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.method-item h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3px;
}

.method-item p {
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 5% 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    margin-left: -35px; /* Moved further left */
}

.footer-logo img {
    height: 60px; /* Adjusted for footer visibility */
    width: auto;
    filter: brightness(0) invert(1); /* Optional: makes logo white if it's dark */
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.8;
    margin: 20px 0;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links h4, .footer-newsletter h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after, .footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--secondary-color);
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
}

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

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

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .contact-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* --- Animations --- */
@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes shimmer {
    0%, 100% { background: rgba(255, 255, 255, 0.2); box-shadow: 0 0 0 rgba(255,255,255,0); }
    50% { background: rgba(255, 255, 255, 0.35); box-shadow: 0 0 15px rgba(255,255,255,0.4); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInBottom {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Cleanup */
@media (max-width: 1024px) {
    .features-container { width: 95%; }
}

@media (max-width: 768px) {
    .nav-links { display: flex; } 
    .hero { height: auto; padding: 120px 5% 180px; }
}
