/* ==========================================
   STRICT CORPORATE DESIGN SYSTEM
   DigitalHellas - Professional Technology Team
   ========================================== */

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

:root {
    /* APPROVED CORPORATE PALETTE */
    --slate-950: #0f172a;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    
    --charcoal: #111827;
    --near-black: #0a0a0a;
    --neutral-gray: #52525b;
    --accent-blue: #2563eb;
    --accent-muted: #3b82f6;
    
    /* SECTION-SPECIFIC BACKGROUNDS */
    --hero-bg: var(--slate-900);
    --services-bg: var(--slate-50);
    --infrastructure-bg: #fafbfc;
    --approach-bg: var(--slate-100);
    --contact-bg: var(--charcoal);
    
    /* Typography */
    --font-stack: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --heading-weight: 600;
    --body-weight: 400;
    
    /* Spacing System */
    --section-padding: 96px;
    --container-max: 1200px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-stack);
    font-weight: var(--body-weight);
    line-height: 1.65;
    color: var(--neutral-gray);
    font-size: 16px;
    background: var(--slate-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   MANDATORY SECTION BACKGROUNDS (ENFORCED)
   Each section MUST have visually distinct background
   ========================================== */

.section {
    position: relative;
}

.section-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding) var(--spacing-md);
}

/* STRICT ENFORCEMENT: Different background per section */
.section-home,
.hero {
    background: #0f172a;
    color: #ffffff;
}

.section-services,
.services {
    background: #f8fafc;
    color: #0f172a;
}

.section-projects {
    background: #f3f4f6;
    color: #0f172a;
}

.section-infrastructure,
.infrastructure {
    background: #eef2f7;
    color: #0f172a;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.section-approach,
.approach {
    background: #ffffff;
    color: #0f172a;
}

.section-contact,
.contact {
    background: #111827;
    color: #ffffff;
}

/* ==========================================
   NAVIGATION - White on scroll, transparent on hero
   ========================================== */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--slate-900);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: var(--slate-700);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--slate-700);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px 0;
}

.nav-menu li a:hover {
    color: var(--slate-900);
}

.nav-lang {
    display: flex;
    gap: 6px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid var(--slate-300);
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--slate-300);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--slate-600);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    border-color: var(--slate-700);
    color: var(--slate-900);
}

.lang-btn.active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: white;
}

.nav-toggle {
    display: none;
}

/* ==========================================
   HERO SECTION - Dark, corporate, authoritative
   ========================================== */

.hero {
    background: var(--hero-bg);
    color: white;
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--slate-300);
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-description {
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--slate-400);
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: var(--slate-900);
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
    background: var(--slate-100);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   SERVICES SECTION - Light neutral
   ========================================== */

.services {
    background: var(--services-bg);
    padding: var(--section-padding) 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--slate-900);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 17px;
    color: var(--slate-600);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.service-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--slate-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 22px;
    color: var(--slate-700);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Mobile: 1 column */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.project-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.project-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.project-icon i {
    font-size: 24px;
    color: #ffffff;
}

.project-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.project-card p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.project-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-bullets li {
    position: relative;
    padding-left: 24px;
    margin-bottom: var(--spacing-sm);
    color: #334155;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.project-bullets li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #0f172a;
    border-radius: 50%;
}

.project-bullets li:last-child {
    margin-bottom: 0;
}

/* ==========================================
   INFRASTRUCTURE SECTION - Subtle tinted background
   ========================================== */

.infrastructure {
    background: var(--infrastructure-bg);
    padding: var(--section-padding) 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

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

/* Mobile: 1 column */
@media (max-width: 768px) {
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
}

.infra-card {
    text-align: center;
    padding: 40px 24px;
}

.infra-icon {
    width: 64px;
    height: 64px;
    background: var(--slate-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.infra-icon i {
    font-size: 28px;
    color: white;
}

.infra-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.infra-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* General Capabilities Block - Vertical Stack */
.infra-capabilities {
    display: block;
    margin: 48px 0;
}

.capability-block {
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
    padding: 32px 40px;
    background: rgba(15, 23, 42, 0.02);
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.capability-block:last-child {
    margin-bottom: 0;
}

.capability-block h3 {
    white-space: nowrap;
    line-height: 1.3;
}

.capability-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon i {
    font-size: 22px;
    color: #ffffff;
}

.capability-block h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.capability-block p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Enterprise Infrastructure */
.enterprise-infra {
    margin-top: 64px;
    padding-top: 64px;
    border-top: 2px solid var(--slate-200);
}

.enterprise-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 48px;
    text-align: center;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.enterprise-block {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.enterprise-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--slate-900);
    padding-bottom: 12px;
}

.enterprise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--slate-700);
    font-size: 14px;
    line-height: 1.6;
}

.enterprise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--slate-900);
}

.enterprise-list li:last-child {
    margin-bottom: 0;
}

/* Infrastructure Details Cards */
.infra-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.detail-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 8px;
    border-left: 4px solid var(--slate-900);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.detail-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.detail-icon i {
    font-size: 20px;
    color: #ffffff;
}

.detail-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
}

.detail-card p {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ==========================================
   APPROACH SECTION - Light background with cards
   ========================================== */

.approach {
    background: var(--approach-bg);
    padding: var(--section-padding) 0;
}

.approach-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-step {
    display: flex;
    gap: 24px;
    background: white;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--slate-200);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--slate-900);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.65;
}

/* ==========================================
   CONTACT SECTION - Dark, reassuring
   ========================================== */

.contact {
    background: var(--contact-bg);
    padding: var(--section-padding) 0;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact .section-intro {
    color: var(--slate-400);
}

.contact-content {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 48px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate-300);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: white;
    font-size: 15px;
    font-family: var(--font-stack);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.submit-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--slate-900);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--slate-100);
    transform: translateY(-1px);
}

/* ==========================================
   FOOTER - Professional, minimal
   ========================================== */

.footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 64px 0 32px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--slate-500);
}

.footer-logo span {
    font-size: 18px;
    font-weight: 600;
    color: var(--slate-300);
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(148, 163, 184, 0.1);
    color: var(--slate-400);
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #3b82f6;
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-300);
    margin-bottom: 16px;
}

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

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

.footer-links a {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-contact a {
    color: var(--slate-400);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--slate-300);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    :root {
        --section-padding: 64px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .hero h1 {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }
    
    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--slate-700);
        margin: 5px 0;
        transition: var(--transition-fast);
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 24px;
        border-bottom: 1px solid var(--slate-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
    
    .nav-lang {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 16px;
        border-top: 1px solid var(--slate-200);
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
}

/* ===== PREMIUM THANK YOU CARD ===== */

/* Hidden utility class */
.hidden {
    display: none !important;
}

/* Form wrapper for smooth transitions */
#contactFormWrap {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

#contactFormWrap.hiding {
    opacity: 0;
    transform: translateY(10px);
}

/* Thank you container */
.thankyou {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.thankyou.showing {
    opacity: 1;
    transform: translateY(0);
}

/* Thank you card */
.thankyou-card {
    background: #ffffff;
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    padding: 48px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Header with icon */
.thankyou-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.thankyou-header i {
    font-size: 48px;
    color: #10b981; /* success green */
    flex-shrink: 0;
}

.thankyou-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 8px 0;
}

.thankyou-header p {
    font-size: 16px;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.6;
}

/* Meta section */
.thankyou-meta {
    margin-bottom: 32px;
}

.thankyou-note {
    font-size: 14px;
    color: var(--slate-500);
    margin: 0 0 16px 0;
    text-align: center;
}

/* Progress bar */
.thankyou-progress {
    background: var(--slate-100);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.thankyou-progress-bar {
    background: linear-gradient(90deg, var(--slate-400) 0%, var(--slate-600) 100%);
    height: 100%;
    width: 100%;
    transition: width 10s linear;
}

.thankyou-progress-bar.counting {
    width: 0%;
}

/* Actions */
.thankyou-actions {
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary {
    background: var(--slate-100);
    color: var(--slate-900);
    border: 1px solid var(--slate-300);
}

.btn-secondary:hover {
    background: var(--slate-200);
    border-color: var(--slate-400);
}

.btn-secondary:active {
    transform: scale(0.98);
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #contactFormWrap,
    .thankyou,
    .thankyou-progress-bar,
    .btn {
        transition: none !important;
    }
    
    .thankyou-progress-bar.counting {
        animation: none !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .thankyou-card {
        padding: 32px 24px;
    }
    
    .thankyou-header {
        gap: 16px;
    }
    
    .thankyou-header i {
        font-size: 40px;
    }
    
    .thankyou-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .thankyou-card {
        padding: 24px 20px;
    }
    
    .thankyou-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .thankyou-header h3 {
        font-size: 22px;
    }
}
