/* ============================================
   ETS Website Styles
   Color Palette from Logo:
   - Dark Blue: #1a5490
   - Medium Blue: #2d6cb5
   - Light Blue/Cyan: #4fc3f7
   ============================================ */

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

:root {
    --color-primary: #1a5490;
    --color-primary-dark: #143d6b;
    --color-secondary: #2d6cb5;
    --color-accent: #4fc3f7;
    --color-accent-light: #7dd3f8;
    --color-white: #ffffff;
    --color-gray-50: #f8fafc;
    --color-gray-100: #f1f5f9;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
}

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

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

a:hover {
    color: var(--color-secondary);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

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

.btn-nav {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

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

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-700);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 0;
    overflow: hidden;
    background-image: url('../images/hero-apartment.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.hero-overlay {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 3rem 1.5rem;
}

.hero-content {
    background: rgba(26, 84, 144, 0.50);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    max-width: 500px;
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.highlight-text {
    color: var(--color-accent);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-size-sm);
}

.btn-secondary-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-light:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
}

.hero-image-split {
    display: none;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

.hero-illustration {
    width: 100%;
    max-width: 450px;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(26, 84, 144, 0.2));
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
}

.section-header.light h2 {
    color: var(--color-white);
}

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

/* Solutions Section */
.solutions {
    background: var(--color-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.solution-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.solution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.solution-icon svg {
    width: 100%;
    height: 100%;
}

.solution-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
}

.solution-card p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

/* Privera Section */
.privera {
    background: linear-gradient(135deg, var(--color-gray-50) 0%, rgba(79, 195, 247, 0.1) 100%);
}

.privera-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.privera-text h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.privera-text h2 sup.tm {
    font-size: 0.35em;
    color: var(--color-gray-500);
    font-weight: 400;
    vertical-align: super;
}

.privera-tagline {
    font-size: var(--font-size-xl);
    font-weight: 500;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.privera-text > p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.privera-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.privera-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privera-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.privera-feature span {
    font-size: var(--font-size-sm);
    color: var(--color-gray-700);
}

.privera-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connected-home {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.home-illustration {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.home-illustration .device line {
    animation: pulse-line 2s ease-in-out infinite;
}

.home-illustration .pulse {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.device-count {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.count-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.count-label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Industries Section */
.industries {
    background: var(--color-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.industry-image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-image svg {
    width: 80px;
    height: 80px;
}

.industry-content {
    padding: 1.5rem;
}

.industry-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
}

.industry-content p {
    font-size: var(--font-size-sm);
    color: var(--color-gray-600);
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--color-accent);
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta {
    background: var(--color-gray-900);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-400);
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: var(--color-gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: var(--font-size-lg);
    color: var(--color-gray-600);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.contact-method strong {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-gray-500);
    margin-bottom: 0.25rem;
}

.contact-method a {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-gray-900);
}

.contact-form-wrapper {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-gray-700);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    border: 1px solid var(--color-gray-300);
    border-radius: 8px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn.full-width {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--color-gray-900);
    color: var(--color-gray-400);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    color: var(--color-accent);
}

.footer-links h4 {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: var(--font-size-sm);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-800);
    text-align: center;
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero {
        margin-top: 80px;
        min-height: 500px;
        background-position: center right;
    }

    .hero .container {
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 1.5rem !important;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: var(--font-size-2xl);
    }

    .hero-subtitle {
        font-size: var(--font-size-sm);
    }

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

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-illustration {
        max-width: 300px;
    }

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

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

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

    .connected-home {
        padding: 1rem;
    }

    .home-illustration {
        max-width: 100%;
    }

    .count-number {
        font-size: var(--font-size-xl);
    }

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

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

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

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: var(--font-size-3xl);
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .privera-illustration {
        grid-template-columns: 1fr;
        max-width: 200px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: var(--font-size-3xl);
    }
}

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    background: var(--color-gray-100);
}

.dark-mode-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--color-gray-700);
}

.dark-mode-toggle .icon-moon {
    display: none;
}

.dark-mode-toggle .icon-sun {
    display: block;
}

/* Dark Mode Styles */
[data-theme="dark"] {
    --color-white: #0f172a;
    --color-gray-50: #1e293b;
    --color-gray-100: #334155;
    --color-gray-200: #475569;
    --color-gray-300: #64748b;
    --color-gray-400: #94a3b8;
    --color-gray-500: #cbd5e1;
    --color-gray-600: #e2e8f0;
    --color-gray-700: #f1f5f9;
    --color-gray-800: #f8fafc;
    --color-gray-900: #ffffff;
}

[data-theme="dark"] body {
    background-color: #0f172a;
    color: #f1f5f9;
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0.95);
}

[data-theme="dark"] .logo img {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .nav-links a {
    color: #f1f5f9;
}

[data-theme="dark"] .dark-mode-toggle:hover {
    background: #334155;
}

[data-theme="dark"] .dark-mode-toggle svg {
    color: #f1f5f9;
}

[data-theme="dark"] .dark-mode-toggle .icon-moon {
    display: block;
}

[data-theme="dark"] .dark-mode-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .solutions {
    background: #0f172a;
}

[data-theme="dark"] .solution-card {
    background: #1e293b;
    border-color: #334155;
}

[data-theme="dark"] .solution-card h3 {
    color: #ffffff;
}

[data-theme="dark"] .solution-card p {
    color: #cbd5e1;
}

[data-theme="dark"] .privera {
    background: linear-gradient(135deg, #1e293b 0%, rgba(79, 195, 247, 0.1) 100%);
}

[data-theme="dark"] .connected-home {
    background: #1e293b;
}

[data-theme="dark"] .home-illustration rect[fill="#f8fafc"] {
    fill: #334155;
}

[data-theme="dark"] .home-illustration text[fill="#64748b"] {
    fill: #94a3b8;
}

[data-theme="dark"] .count-label {
    color: #cbd5e1;
}

[data-theme="dark"] .industries {
    background: #0f172a;
}

[data-theme="dark"] .industry-card {
    background: #1e293b;
}

[data-theme="dark"] .industry-content h3 {
    color: #ffffff;
}

[data-theme="dark"] .industry-content p {
    color: #cbd5e1;
}

[data-theme="dark"] .cta {
    background: #1e293b;
}

[data-theme="dark"] .contact {
    background: #1e293b;
}

[data-theme="dark"] .contact-info h2 {
    color: #ffffff;
}

[data-theme="dark"] .contact-info > p {
    color: #cbd5e1;
}

[data-theme="dark"] .contact-method a {
    color: #ffffff;
}

[data-theme="dark"] .contact-form-wrapper {
    background: #334155;
}

[data-theme="dark"] .form-group label {
    color: #f1f5f9;
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: #1e293b;
    border-color: #475569;
    color: #f1f5f9;
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: #64748b;
}

[data-theme="dark"] .section-header h2 {
    color: #ffffff;
}

[data-theme="dark"] .section-header p {
    color: #cbd5e1;
}

[data-theme="dark"] .footer {
    background: #020617;
}

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.thank-you-message h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.thank-you-message p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-gray-600);
}
