/* CSS Variables - Easy customization */
/* CSS Variables - Dark Mode Enforced */
:root {
    /* Dark Theme Colors (Default) */
    --bg: #0f172a;
    --surface: #1e293b;
    --surface-elevated: #334155;
    --muted: #94a3b8;
    --accent: #2563eb;
    --accent-2: #10b981;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --border: #334155;
    --border-hover: #475569;

    /* Shadows - Dark Mode Intensity */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);

    /* Fonts */
    /* Fonts - iOS System Stack */
    --font-heading: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Layout */
    --container-max: 1200px;
    --border-radius: 0.5rem;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-call-btn {
    display: none;
    /* Hidden by default, toggled by JS */
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-left: 1rem;
}

.nav-call-btn:hover {
    transform: scale(1.05);
    background: #1d4ed8;
}

/* Parallax Background Effect */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    opacity: 0.03;
    z-index: -1;
    transform: translateY(var(--scroll-offset, 0px));
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .parallax-bg {
    opacity: 0.05;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    /* Apple uses bold headings */
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
    letter-spacing: -0.02em;
    /* Tight tracking for headings */
}

h1 {
    font-size: var(--text-4xl);
}

h2 {
    font-size: var(--text-3xl);
}

h3 {
    font-size: var(--text-2xl);
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--text-5xl);
    }

    h2 {
        font-size: var(--text-4xl);
    }
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    max-width: 65ch;
    font-weight: 400;
    letter-spacing: -0.01em;
    /* Subtle tightening for reading text */
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-6);
    }
}

.section {
    padding: var(--space-16) 0;
    position: relative;
}

@media (min-width: 768px) {
    .section {
        padding: var(--space-20) 0;
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--space-8);
}

.grid--2-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid--2-cols {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.grid--3-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid--3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid--4-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid--4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid--4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Components */
/* iOS-Inspired Animation Easing */
:root {
    --ios-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --ios-bouncy: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 500;
    text-decoration: none;
    border-radius: 99px;
    /* Pill shape like iOS buttons */
    border: none;
    cursor: pointer;
    transition: transform 0.4s var(--ios-ease), box-shadow 0.4s var(--ios-ease), background-color 0.2s ease;
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: scale(0.96);
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #1d4ed8;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.card {
    background-color: var(--surface);
    border-radius: 20px;
    /* iOS rounded corners */
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ios-ease), box-shadow 0.5s var(--ios-ease);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

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

.card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.card__desc {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Theme Toggle */
.theme-toggle {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    width: 60px;
    height: 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle::after {
    content: '🌙';
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    font-size: 16px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .theme-toggle::after {
    content: '☀️';
    left: 32px;
}

.theme-toggle:hover {
    border-color: var(--accent);
}

/* Form Styles */
.form {
    display: grid;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--border);
    border-radius: 12px;
    /* iOS rounded inputs */
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all 0.3s var(--ios-ease);
    min-height: 48px;
    background-color: var(--surface);
    color: var(--text-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    /* Softer, larger glow */
    transform: translateY(-1px);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Text animation on scroll */
/* Text animation on scroll */
.animate-text {
    color: var(--text-primary);
    position: relative;
}

@keyframes liquidShine {
    to {
        background-position: 200% center;
    }
}

/* Header */
.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    background-color: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
}

.header__right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo__img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: none;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        gap: var(--space-6);
    }

    .nav__link {
        text-decoration: none;
        color: var(--text-secondary);
        font-weight: 500;
        transition: all 300ms ease;
        position: relative;
    }

    .nav__link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
    }

    .nav__link:hover::after,
    .nav__link:focus::after {
        width: 100%;
    }

    .nav__link:hover,
    .nav__link:focus {
        color: var(--accent);
        transform: translateY(-1px);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: block;
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: floating 20s infinite linear;
    z-index: 0;
    pointer-events: none;
}

@keyframes floating {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

@media (min-width: 768px) {
    .hero__content {
        text-align: left;
    }
}

.hero__title {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.hero__subtitle {
    font-size: var(--text-lg);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: center;
}

@media (min-width: 768px) {
    .hero__cta {
        flex-direction: row;
        align-items: center;
    }
}

.hero__cta-note {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.hero__image {
    background: linear-gradient(45deg, var(--accent-2), var(--accent));
    border-radius: var(--border-radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--text-lg);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.hero__image::before {
    display: none;
}

@media (min-width: 768px) {
    .hero__image {
        height: 400px;
    }
}

/* About Section */
.about {
    background-color: var(--surface);
}

.about__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about__title {
    margin-bottom: var(--space-6);
}

.about__text {
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    color: var(--text-secondary);
    max-width: none;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: var(--space-2);
}

.stat__label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Why Choose Us Section */
.why-choose {
    position: relative;
}

.why-choose__title {
    text-align: center;
    margin-bottom: var(--space-12);
}

.feature {
    text-align: center;
}

.feature__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: white;
    font-size: var(--text-2xl);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.feature__icon::before {
    display: none;
}

/* Steps Section */
.steps__heading {
    text-align: center;
    margin-bottom: var(--space-12);
}

.step {
    text-align: center;
}

.step__icon {
    width: 64px;
    height: 64px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: white;
    font-size: var(--text-2xl);
    font-weight: 700;
    transition: all 0.3s ease;
}

.step:hover .step__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* Projects Section */
.projects {
    background-color: var(--surface);
}

.projects__title {
    text-align: center;
    margin-bottom: var(--space-12);
}

.projects__grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-4);
    }
}

.project-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-md);
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.project-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card__image {
    transform: scale(1.1);
}

.project-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-card__title {
    color: white;
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.project-card:hover .project-card__title {
    transform: translateY(0);
}

.project-card__desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--text-sm);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
    margin: 0;
}

.project-card:hover .project-card__desc {
    transform: translateY(0);
}

.project-card__badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--accent-2);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease 0.3s;
}

.project-card:hover .project-card__badge {
    transform: translateY(0);
    opacity: 1;
}

/* Feedback Section */
.feedback {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.feedback::before {
    display: none;
}

.feedback__title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.feedback__subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-12);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feedback__container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback__form {
    background-color: var(--surface);
    border-radius: var(--border-radius);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feedback__form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.feedback__form-title {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
    font-family: var(--font-heading);
}

.feedback__form-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .feedback__form-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-6);
    }
}

.feedback__form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feedback__form-group--full {
    grid-column: 1 / -1;
}

.feedback__form-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-base);
}

.feedback__form-input,
.feedback__form-select,
.feedback__form-textarea {
    padding: var(--space-4);
    border: 2px solid var(--border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all 300ms ease;
    min-height: 52px;
    background-color: var(--surface);
    color: var(--text-primary);
}

.feedback__form-input:focus,
.feedback__form-select:focus,
.feedback__form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.feedback__form-textarea {
    resize: vertical;
    min-height: 150px;
    font-family: var(--font-body);
}

.rating-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.rating-stars {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

.rating-star {
    font-size: var(--text-3xl);
    color: #e5e7eb;
    cursor: pointer;
    transition: all 200ms ease;
    user-select: none;
}

.rating-star:hover,
.rating-star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.rating-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: var(--text-sm);
    min-height: 20px;
}

.feedback__submit-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--border-radius);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 300ms ease;
    min-height: 56px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.feedback__submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.feedback__submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feedback__submit-btn:hover::before {
    left: 100%;
}

.feedback__submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.feedback__success-message {
    display: none;
    background: linear-gradient(135deg, var(--accent-2), #059669);
    color: white;
    padding: var(--space-6);
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: var(--space-6);
    box-shadow: var(--shadow-md);
}

.feedback__success-message.show {
    display: block;
    animation: slideUp 500ms ease;
}

.feedback__success-title {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.feedback__success-text {
    opacity: 0.9;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    background-color: var(--bg);
}

.services__heading {
    text-align: center;
    margin-bottom: var(--space-12);
}

.services__list {
    display: grid;
    gap: var(--space-4);
    list-style: none;
}

@media (min-width: 768px) {
    .services__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services__item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    background-color: var(--bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.services__item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

.services__icon {
    width: 24px;
    height: 24px;
    background-color: var(--accent-2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* FAQ Section */
.faq__title {
    text-align: center;
    margin-bottom: var(--space-12);
}

.faq-item {
    background-color: var(--surface);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-5);
    background: none;
    border: none;
    text-align: left;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question::after {
    content: '+';
    font-size: var(--text-2xl);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-5) var(--space-5);
    margin: 0;
}

/* Contact Section */
.contact__heading {
    text-align: center;
    margin-bottom: var(--space-4);
}

.contact__heading {
    text-align: center;
    margin-bottom: var(--space-6);
}

.contact__subtext {
    text-align: center;
    margin-bottom: var(--space-10);
    /* Increased spacing */
    font-size: var(--text-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact__form {
    max-width: 600px;
    margin: 0 auto;
}

.privacy-note {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-align: center;
    margin-top: var(--space-4);
}

/* Footer */
.footer {
    background-color: var(--surface);
    color: var(--text-primary);
    text-align: center;
    padding: var(--space-8) 0;
    border-top: 1px solid var(--border);
}

.footer__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 768px) {
    .footer__content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer__links {
    display: flex;
    gap: var(--space-4);
    list-style: none;
}

.footer__link {
    color: #9ca3af;
    text-decoration: none;
    transition: all 300ms ease;
}

.footer__link:hover,
.footer__link:focus {
    color: white;
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, var(--accent-2), #059669);
    color: white;
    padding: var(--space-6);
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: var(--text-lg);
}

.success-message.show {
    display: block;
    animation: slideDown 300ms ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .nav {
        display: none;
    }

    .header__right {
        gap: var(--space-2);
    }
}

.hero__image {
    width: 100%;
    height: 100%;
    /* Or give it a fixed height like 500px */
    overflow: hidden;
    /* Ensures no overflow */
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Makes the image cover the box */
    display: block;
    /* Removes unwanted spacing */
}