:root {
    --azure-crystal: #e8f4f8;
    --electric-teal: #0d9488;
    --deep-teal: #0f766e;
    --coral-accent: #f97066;
    --coral-hover: #e85a4f;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-500: #64748b;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --font-display: 'Clash Display', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

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

ul {
    list-style: none;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-height: 48px;
}

.btn-primary {
    background: var(--coral-accent);
    color: var(--white);
    border-color: var(--coral-accent);
}

.btn-primary:hover {
    background: var(--coral-hover);
    border-color: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--electric-teal);
    transform: translateY(-2px);
}

/* Hero section specific button styles */
.hero .btn-secondary {
    background: var(--electric-teal);
    color: var(--white);
    border-color: var(--electric-teal);
    box-shadow: var(--shadow-md);
}

.hero .btn-secondary:hover {
    background: var(--deep-teal);
    border-color: var(--deep-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--electric-teal);
    border-color: var(--electric-teal);
}

.btn-outline:hover {
    background: var(--electric-teal);
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
}

.section-crystal {
    background: var(--azure-crystal);
}

.section-crystal .process-step {
    color: var(--gray-900);
}

.section-crystal .step-number {
    background: var(--electric-teal);
    color: var(--white);
    border: 2px solid var(--electric-teal);
}

.section-crystal .process-step h3 {
    color: var(--gray-900);
}

.section-crystal .process-step p {
    color: var(--gray-700);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--electric-teal);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-accent);
    transition: var(--transition);
}

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

.nav-desktop a:hover {
    color: var(--electric-teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--electric-teal);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-900);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--azure-crystal) 0%, #d0f0f0 50%, var(--azure-crystal) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(13, 148, 136, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--gray-900);
}

.hero-text h1 span {
    color: var(--electric-teal);
}

.hero-text p {
    font-size: 20px;
    color: var(--gray-700);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: 40px;
    left: -40px;
}

.hero-floating-card.card-2 {
    top: 40px;
    right: -40px;
    animation-delay: 1.5s;
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.floating-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.floating-text p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--electric-teal);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--azure-crystal), #b8e5e3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-500);
}

.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--coral-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.2;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--azure-crystal);
    border-radius: var(--radius-lg);
}

.stat-item h3 {
    font-size: 36px;
    color: var(--electric-teal);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.services-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--azure-crystal) 100%);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

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

.service-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--electric-teal);
    margin-bottom: 20px;
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

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

.service-link:hover {
    gap: 12px;
}

.testimonials-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 10%;
    font-size: 400px;
    font-family: Georgia, serif;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
}

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

.testimonial-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--radius-xl);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--electric-teal), var(--coral-accent));
    border-radius: var(--radius-sm);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 16px;
    color: var(--gray-700);
    font-style: italic;
}

.process-section {
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.process-section .section-header h2,
.process-section .section-header p {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Default process-step styles for light backgrounds (white, etc.) */
.process-step {
    text-align: center;
    color: var(--gray-900);
}

.step-number {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--electric-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    border: 2px solid var(--electric-teal);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.step-number:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.process-step p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Dark process section overrides */
.process-section {
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    position: relative;
    overflow: hidden;
}

.process-section .section-header h2,
.process-section .section-header p {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-section .process-step {
    color: var(--white);
}

.process-section .step-number {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.process-section .step-number:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.process-section .process-step h3 {
    color: var(--white);
}

.process-section .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(249, 112, 102, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 80px 0 24px;
}

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

.footer-brand p {
    color: var(--gray-300);
    margin-top: 16px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

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

.footer-social a:hover {
    background: var(--coral-accent);
}

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--gray-300);
    font-size: 15px;
}

.footer-column a:hover {
    color: var(--coral-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--coral-accent);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    z-index: 9999;
    display: block;
}

.cookie-banner h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-buttons button {
    flex: 1;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--electric-teal);
    color: var(--white);
    border: none;
}

.cookie-accept:hover {
    background: var(--deep-teal);
}

.cookie-decline {
    background: transparent;
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
}

.cookie-decline:hover {
    border-color: var(--gray-500);
}

.cookie-settings {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.cookie-settings.active {
    display: block;
}

.cookie-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category label {
    font-size: 14px;
    color: var(--gray-700);
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--electric-teal);
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-actions .phone-link {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--azure-crystal) 0%, #d0f0f0 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 148, 136, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 32px;
}

.faq-section {
    background: var(--white);
}

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

.faq-item {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--gray-900);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--electric-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--gray-700);
    line-height: 1.8;
}

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

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--azure-crystal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--electric-teal);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-500);
    font-size: 15px;
    margin: 0;
}

.contact-form {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-xl);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--electric-teal);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

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

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--azure-crystal) 0%, #d0f0f0 100%);
    padding: 80px 24px;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--electric-teal), var(--deep-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    margin: 0 auto 32px;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thank-you-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thank-you-content p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.legal-section {
    background: var(--white);
    padding: 100px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 32px 0 16px;
}

.legal-content p {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 8px;
    list-style: disc;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.team-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

.team-card p {
    font-size: 15px;
    color: var(--gray-500);
}

.service-detail-section {
    background: var(--white);
    padding: 100px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.service-detail-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-detail-content .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--electric-teal);
    margin-bottom: 24px;
}

.service-detail-content .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray-500);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gray-700);
}

.service-features li::before {
    content: '✓';
    color: var(--electric-teal);
    font-weight: 700;
}

.service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--azure-crystal);
    border-radius: var(--radius-lg);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--electric-teal);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

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

    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }
}
