/* =============================================
   Simple Corporate Solutions - Main Stylesheet
   Bold & Modern Design with Navy & Gold Theme
   ============================================= */

/* CSS Variables */
:root {
    /* Primary Colors - Navy & Gold */
    --navy-900: #0a1628;
    --navy-800: #0f2137;
    --navy-700: #162d4d;
    --navy-600: #1e3a5f;
    --navy-500: #2a4a73;
    --navy-400: #3d5a80;
    --navy-300: #5c7a99;
    --navy-200: #8fa3b8;
    --navy-100: #c2d0dd;
    --navy-50: #e8eef3;

    --gold-500: #d4a853;
    --gold-400: #e5bc6a;
    --gold-300: #f0cd85;
    --gold-200: #f7dda6;
    --gold-100: #fbedc8;
    --gold-600: #b8923f;
    --gold-700: #9a7a35;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(10, 22, 40, 0.1), 0 2px 4px -1px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(10, 22, 40, 0.1), 0 4px 6px -2px rgba(10, 22, 40, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(10, 22, 40, 0.1), 0 10px 10px -5px rgba(10, 22, 40, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(10, 22, 40, 0.25);
    --shadow-gold: 0 10px 40px rgba(212, 168, 83, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

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

/* Language Switcher */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.lang-btn {
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-400);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: var(--navy-700);
}

.lang-btn.active {
    background: var(--navy-800);
    color: var(--gold-400);
}

.lang-divider {
    color: var(--gray-300);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--navy-900);
    border-color: var(--gold-500);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--navy-800);
}

.btn-outline:hover {
    background: var(--navy-800);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy-800);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10, 22, 40, 0.05);
    transition: var(--transition-base);
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--navy-900);
}

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

.nav-links a {
    padding: 10px 18px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--navy-600);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy-800);
    border-radius: 2px;
    transition: var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-base);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-links a {
    display: block;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--navy-700);
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.mobile-nav-links a:hover {
    background: var(--navy-50);
    color: var(--navy-900);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-600) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 168, 83, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 40%);
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

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

.hero-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.overline-dash {
    width: 40px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.5;
}

.overline-text {
    color: var(--gold-400);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.hero-title span {
    display: block;
}

.hero-title .highlight {
    color: var(--gold-400);
    position: relative;
}

.hero-title .emphasis {
    font-size: 1.4em;
    font-style: italic;
    letter-spacing: -0.02em;
    color: var(--gold-400);
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: titleReveal 0.8s ease forwards;
}

.hero-title .title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.25s;
}

.hero-title .title-line:nth-child(3) {
    animation-delay: 0.4s;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--navy-200);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-buttons .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--navy-800);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: inline;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
    margin-left: 2px;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--navy-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--navy-400);
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold-500), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--navy-50);
    color: var(--navy-600);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.125rem;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: #faf9f7;
}

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #ebe8e4;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-500), var(--gold-400));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.service-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border: none;
}

.service-card.featured::before {
    display: none;
}

.service-card.featured h3,
.service-card.featured p {
    color: var(--white);
}

.service-card.featured .service-icon {
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold-400);
}

.service-card.featured .service-features li {
    color: var(--navy-200);
}

.service-card.featured .service-features li::before {
    color: var(--gold-400);
}

.service-card.featured .service-link {
    color: var(--gold-400);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f3f0;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    color: var(--navy-700);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gold-100);
    color: var(--gold-700);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-500);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: 700;
}

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

.service-link:hover {
    color: var(--gold-600);
    gap: 8px;
}

/* Why Choose Us Section */
.why-us {
    padding: var(--section-padding);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-us-text .section-title {
    text-align: left;
}

.why-us-text > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-item:hover {
    background: var(--gray-100);
    transform: translateX(8px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-500);
    border-radius: var(--radius-md);
    color: var(--navy-900);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content h4 {
    font-size: 1.0625rem;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.why-us-visual {
    position: relative;
}

.visual-card {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 168, 83, 0.12);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.visual-stat {
    text-align: center;
}

.big-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 8px;
}

.visual-stat span:last-child {
    font-size: 1rem;
    color: var(--navy-200);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.about-image-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
    font-size: 5rem;
    font-weight: 800;
}

.about-logo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-xl);
}

.about-text .section-title {
    text-align: left;
}

.about-text > p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-cta {
    margin-top: 32px;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: #faf9f7;
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid #ebe8e4;
    transition: var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-4px);
}

.testimonial-rating {
    color: var(--gold-500);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
    color: var(--gold-400);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-style: italic;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-info strong {
    color: var(--navy-800);
    font-size: 0.9375rem;
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.8125rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold-500), transparent);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-family: var(--font-display);
}

.cta-content p {
    color: var(--navy-200);
    font-size: 1.125rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

.cta-buttons .btn-secondary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
}

.cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.cta-buttons .btn-outline-light:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy-900);
}

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

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

.contact-info .section-title {
    text-align: left;
}

.contact-info > p {
    color: var(--gray-500);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.contact-method:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    color: var(--navy-600);
}

.method-icon svg {
    width: 24px;
    height: 24px;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details strong {
    color: var(--navy-800);
    font-size: 0.9375rem;
}

.method-details span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--gold-500);
    color: var(--navy-900);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

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

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--navy-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

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

button.full-width {
    grid-column: span 2;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--navy-900);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand > p {
    color: var(--navy-300);
    font-size: 0.9375rem;
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

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

.footer-column a {
    color: var(--navy-300);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--gold-400);
}

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

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-700);
    border-radius: var(--radius-full);
    color: var(--navy-300);
    transition: var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--navy-400);
    font-size: 0.875rem;
}

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

    .service-card.featured {
        grid-row: span 1;
    }

    .why-us-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .lang-switcher {
        top: 90px;
        right: 16px;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-overline {
        gap: 12px;
        margin-bottom: 24px;
    }

    .overline-dash {
        width: 24px;
    }

    .overline-text {
        font-size: 0.6875rem;
        letter-spacing: 1.5px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.25rem;
    }

    .hero-scroll {
        display: none;
    }

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

    .feature-item:hover {
        transform: none;
    }

    .cta-section::before {
        height: 40px;
    }

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

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

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

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-image {
        order: -1;
    }

    .about-image-placeholder {
        aspect-ratio: 16/9;
        font-size: 3rem;
    }

    .visual-card {
        flex-direction: row;
        justify-content: center;
        padding: 40px;
    }

    .big-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .hero-overline {
        gap: 10px;
    }

    .overline-dash {
        width: 16px;
    }

    .overline-text {
        font-size: 0.625rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .feature-item {
        padding: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* =============================================
   PAGE-SPECIFIC STYLES
   ============================================= */

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
}

.page-header .container {
    position: relative;
}

.page-title {
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.page-subtitle {
    color: var(--navy-200);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation active state */
.nav-links a.active {
    color: var(--gold-500);
    background: var(--navy-50);
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */

.service-detail {
    padding: var(--section-padding);
}

.service-detail.alt-bg {
    background: var(--gray-50);
}

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

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

.service-detail-content.reverse .service-detail-visual {
    order: -1;
}

.service-number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--gold-400);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

.service-detail-text h2 {
    margin-bottom: 20px;
}

.service-lead {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.service-feature {
    display: flex;
    gap: 12px;
}

.feature-icon-sm {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    border-radius: var(--radius-sm);
    color: var(--navy-900);
}

.feature-icon-sm svg {
    width: 16px;
    height: 16px;
}

.service-feature strong {
    display: block;
    color: var(--navy-800);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.service-feature p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.service-icon-large {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-xl);
    color: var(--gold-400);
}

.service-icon-large svg {
    width: 100px;
    height: 100px;
}

@media (max-width: 1024px) {
    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-content.reverse .service-detail-visual {
        order: 0;
    }

    .service-icon-large {
        width: 150px;
        height: 150px;
    }

    .service-icon-large svg {
        width: 70px;
        height: 70px;
    }
}

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

/* =============================================
   GET STARTED PAGE STYLES
   ============================================= */

.get-started-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.get-started-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.get-started-info h2 {
    margin-bottom: 32px;
}

.get-started-section .process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.get-started-section .process-step {
    max-width: none;
    text-align: left;
    padding: 0;
    flex: none;
    display: flex;
    gap: 20px;
}

.get-started-section .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    color: var(--navy-900);
    font-weight: 800;
    font-size: 1.25rem;
    border-radius: var(--radius-md);
}

.get-started-section .step-content h4 {
    margin-bottom: 4px;
    font-size: 1.0625rem;
}

.get-started-section .step-content p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.contact-quick {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.contact-quick h3 {
    margin-bottom: 8px;
}

.contact-quick > p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    color: var(--navy-700);
    font-weight: 600;
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.contact-quick-link:hover {
    background: var(--navy-100);
}

.contact-quick-link svg {
    width: 24px;
    height: 24px;
    color: var(--navy-600);
}

.contact-quick-link.whatsapp {
    background: #25D366;
    color: var(--white);
}

.contact-quick-link.whatsapp:hover {
    background: #20bd5a;
}

.contact-quick-link.whatsapp svg {
    color: var(--white);
}

.get-started-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.get-started-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.get-started-form .form-group {
    width: 100%;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.checkbox-label:hover {
    background: var(--navy-50);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkmark {
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: var(--navy-900);
    font-size: 12px;
    font-weight: 700;
}

.form-disclaimer {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-align: center;
}

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

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

    .get-started-form-wrapper {
        padding: 32px 24px;
    }
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.about-mission {
    padding: var(--section-padding);
}

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

.mission-text h2 {
    margin-bottom: 24px;
}

.mission-text .lead {
    font-size: 1.25rem;
    color: var(--navy-600);
    margin-bottom: 20px;
    font-weight: 500;
}

.mission-text p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.mission-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 1px solid var(--gray-100);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    border-radius: var(--radius-lg);
    color: var(--navy-900);
}

.mission-icon svg {
    width: 40px;
    height: 40px;
}

.mission-card h3 {
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.about-services {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.about-services .section-header {
    margin-bottom: 48px;
}

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

.about-service-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.about-service-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.about-service-item .service-icon-sm {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    color: var(--navy-600);
}

.about-service-item .service-icon-sm svg {
    width: 28px;
    height: 28px;
}

.about-service-item h4 {
    margin-bottom: 8px;
}

.about-service-item p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.about-services-cta {
    text-align: center;
}

.about-why-us {
    padding: var(--section-padding);
}

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

.why-us-item {
    text-align: center;
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-lg);
    color: var(--gold-400);
}

.why-icon svg {
    width: 36px;
    height: 36px;
}

.why-us-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.why-us-item p {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

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

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

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-wide {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gray-50);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-card-wide:hover {
    background: var(--navy-50);
}

.contact-card-wide .contact-card-icon {
    margin-bottom: 0;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy-600);
}

.contact-card-content .contact-card-value {
    display: block;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.contact-card-content .contact-card-link {
    font-size: 0.875rem;
    color: var(--gold-600);
    font-weight: 500;
}

.contact-card-content .contact-card-hours {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.contact-card {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.contact-card:hover {
    background: var(--navy-50);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-800);
    border-radius: var(--radius-md);
    color: var(--gold-400);
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--navy-600);
}

.contact-card-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 4px;
}

a.contact-card-value:hover {
    color: var(--gold-600);
}

.contact-card-link {
    font-size: 0.875rem;
    color: var(--gold-600);
    font-weight: 500;
}

.contact-card-link:hover {
    color: var(--gold-700);
}

.contact-card-hours {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.contact-card-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.contact-form-card {
    background: var(--gray-50);
    padding: 48px;
    border-radius: var(--radius-xl);
}

.contact-form-card h2 {
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.social-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.social-content {
    text-align: center;
}

.social-content h2 {
    margin-bottom: 8px;
}

.social-content > p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--navy-700);
    font-weight: 600;
    transition: var(--transition-base);
}

.social-link-lg:hover {
    border-color: var(--gold-500);
    background: var(--gold-50);
}

.social-link-lg svg {
    width: 24px;
    height: 24px;
}

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

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

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

    .contact-form-card {
        padding: 32px 24px;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-link-lg {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* =============================================
   BLOG PAGE STYLES
   ============================================= */

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

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

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition-base);
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    transform: translateY(-4px);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card-link:hover {
    text-decoration: none;
}

.blog-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-400);
}

.blog-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.5;
}

.blog-lang-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.blog-card-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.blog-card h3 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-weight: 600;
    color: var(--gold-600);
    font-size: 0.9375rem;
}

.blog-read-more:hover {
    color: var(--gold-700);
}

.blog-more {
    margin-top: 48px;
    text-align: center;
}

.blog-count {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
}

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

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-content > p {
    color: var(--navy-200);
    margin-bottom: 24px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--navy-300);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.15);
}

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

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

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   BLOG POST PAGE STYLES
   ========================================================================== */

.blog-post-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.back-to-blog {
    display: inline-block;
    color: var(--gold-500);
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.back-to-blog:hover {
    color: var(--gold-400);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.blog-post-meta .blog-lang-tag {
    position: static;
    padding: 6px 12px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.blog-post-meta .blog-date,
.blog-post-meta .blog-author {
    color: var(--navy-300);
    font-size: 0.875rem;
}

.blog-post-title {
    font-family: var(--font-secondary);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.blog-post-subtitle {
    color: var(--gold-400);
    font-size: 1.125rem;
    font-weight: 500;
}

.blog-post-content {
    padding: 80px 0;
}

.blog-featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-body h2 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--navy-900);
    margin: 40px 0 16px;
}

.blog-body h2:first-child {
    margin-top: 0;
}

.blog-body h3 {
    font-size: 1.25rem;
    color: var(--navy-800);
    margin: 32px 0 12px;
}

.blog-body p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.blog-body ul,
.blog-body ol {
    margin: 20px 0 24px 24px;
}

.blog-body li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.blog-body strong {
    color: var(--navy-900);
}

.blog-cta-box {
    margin: 48px 0;
    padding: 40px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-xl);
    text-align: center;
}

.blog-cta-box h3 {
    font-family: var(--font-secondary);
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 0 12px;
}

.blog-cta-box p {
    color: var(--navy-200);
    margin-bottom: 24px;
}

.blog-cta-box .contact-options {
    margin-bottom: 24px;
}

.blog-cta-box .contact-options p {
    margin-bottom: 8px;
    color: var(--navy-200);
}

.blog-cta-box .contact-options a {
    color: var(--gold-400);
}

.blog-cta-box .btn {
    display: inline-block;
}

/* Step List Styling */
.step-list {
    margin: 32px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    margin: 0 0 8px;
    color: var(--navy-900);
    font-size: 1.125rem;
}

.step-content p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-500);
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.comparison-card {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.comparison-card h3 {
    color: var(--navy-900);
    font-size: 1.25rem;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-500);
}

.comparison-card ul {
    margin: 0;
    padding-left: 20px;
}

.comparison-card li {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}

/* Penalty Grid */
.penalty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.penalty-card {
    padding: 24px;
    background: #fef2f2;
    border-radius: var(--radius-lg);
    border-left: 4px solid #ef4444;
}

.penalty-card h3 {
    color: var(--navy-900);
    font-size: 1rem;
    margin: 0 0 8px;
}

.penalty-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.penalty-card p:last-child {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* FAQ List */
.faq-list {
    margin: 32px 0;
}

.faq-item {
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.faq-item h3 {
    color: var(--navy-900);
    font-size: 1.0625rem;
    margin: 0 0 8px;
}

.faq-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Related Posts Section */
.related-posts {
    padding: 60px 0;
    background: var(--gray-100);
}

.related-posts h2 {
    font-family: var(--font-secondary);
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy-900);
}

.blog-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-grid-small .blog-card {
    background: var(--white);
}

.blog-grid-small .blog-card-content {
    padding: 24px;
}

.blog-grid-small .blog-meta {
    gap: 12px;
}

.blog-grid-small .blog-lang-tag {
    position: static;
    padding: 4px 10px;
    font-size: 0.6875rem;
}

@media (max-width: 768px) {
    .blog-post-header {
        padding: 120px 0 40px;
    }

    .blog-post-content {
        padding: 48px 0;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

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

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

    .blog-cta-box {
        padding: 28px 20px;
    }
}

/* External Links Section */
.blog-external-links {
    margin: 48px 0 0;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-500);
}

.blog-external-links h3 {
    font-family: var(--font-secondary);
    color: var(--navy-800);
    font-size: 1.25rem;
    margin: 0 0 12px;
}

.blog-external-links > p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.blog-external-links ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.blog-external-links li {
    padding: 2px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-200);
}

.blog-external-links li:last-child {
    border-bottom: none;
}

.blog-external-links a {
    display: inline;
    color: var(--navy-700);
    font-weight: 500;
    text-decoration: none;
}

.blog-external-links a:hover {
    color: var(--gold-600);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-external-links {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */

/* FAQ Category Navigation */
.faq-nav {
    padding: 24px 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.faq-nav-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-nav-link {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--navy-600);
    transition: var(--transition-base);
}

.faq-nav-link:hover,
.faq-nav-link.active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-100);
}

.faq-section:last-of-type {
    border-bottom: none;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.faq-category-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
    border-radius: var(--radius-md);
    color: var(--navy-900);
}

.faq-category-icon svg {
    width: 28px;
    height: 28px;
}

.faq-category-header h2 {
    margin: 0;
}

/* Accordion Styles */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-accordion-item:hover {
    border-color: var(--gold-400);
}

.faq-accordion-item.active {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-md);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--navy-800);
    text-align: left;
    transition: var(--transition-base);
}

.faq-accordion-header:hover {
    color: var(--gold-600);
}

.faq-accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
    transition: transform var(--transition-base);
}

.faq-accordion-icon svg {
    width: 20px;
    height: 20px;
}

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

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

.faq-accordion-item.active .faq-accordion-content {
    max-height: 800px;
}

.faq-accordion-content-inner {
    padding: 0 24px 24px;
}

.faq-accordion-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-accordion-content p:last-child {
    margin-bottom: 0;
}

.faq-accordion-content ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.faq-accordion-content li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-accordion-content li:last-child {
    margin-bottom: 0;
}

/* Inline CTA in FAQ answers */
.faq-inline-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.faq-inline-cta span {
    font-weight: 500;
    color: var(--navy-700);
}

.faq-inline-cta .btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-nav {
        position: relative;
        top: 0;
    }

    .faq-nav-links {
        gap: 8px;
    }

    .faq-nav-link {
        padding: 8px 16px;
        font-size: 0.875rem;
    }

    .faq-accordion-header {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-inline-cta {
        flex-direction: column;
        text-align: center;
    }

    .faq-category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   NEWSLETTER INLINE COMPONENT
   ========================================================================== */

.newsletter-inline {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-xl);
}

.newsletter-inline-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.newsletter-inline-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.2);
    border-radius: var(--radius-md);
    color: var(--gold-400);
}

.newsletter-inline-icon svg {
    width: 28px;
    height: 28px;
}

.newsletter-inline-text h4,
.newsletter-inline-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.newsletter-inline-text p,
.newsletter-inline-content > p {
    color: var(--navy-200);
    font-size: 0.9375rem;
    margin: 0;
}

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

.newsletter-inline-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-inline-form input::placeholder {
    color: var(--navy-300);
}

.newsletter-inline-form input:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .newsletter-inline-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-inline-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */

.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: 1000;
    max-width: 280px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cta-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

.floating-cta p {
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 16px;
    padding-right: 20px;
}

.floating-cta .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .floating-cta {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ================================
   CHATBOT WIDGET STYLES
   ================================ */

/* Floating trigger button */
.chatbot-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    border: none;
}

.chatbot-trigger.visible {
    opacity: 1;
    transform: scale(1);
}

.chatbot-trigger:hover {
    background: var(--gold-600);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.chatbot-trigger svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.chatbot-trigger.active svg.chat-icon {
    display: none;
}

.chatbot-trigger svg.close-icon {
    display: none;
}

.chatbot-trigger.active svg.close-icon {
    display: block;
}

/* Chat container */
.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-height: 520px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    z-index: 999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.chatbot-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat header */
.chatbot-header {
    background: var(--navy-900);
    color: var(--white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-avatar {
    width: 40px;
    height: 40px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-header-avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.chatbot-header-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-header-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chatbot-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 0;
    line-height: 1;
}

.chatbot-close:hover {
    opacity: 1;
}

/* Messages area */
.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 300px;
    max-height: 350px;
    background: var(--gray-50);
}

/* Message bubbles */
.chatbot-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    line-height: 1.5;
    animation: messageSlide 0.3s ease;
}

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

.chatbot-message.bot {
    background: var(--white);
    color: var(--gray-800);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chatbot-message.user {
    background: var(--navy-900);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Typing indicator */
.chatbot-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.chatbot-typing span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out;
}

.chatbot-typing span:nth-child(1) { animation-delay: 0s; }
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Input area */
.chatbot-input-area {
    padding: 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: var(--gold-500);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background: var(--gold-500);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.chatbot-send:hover {
    background: var(--gold-600);
}

.chatbot-send:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
}

.chatbot-send svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

/* Mobile responsive */
@media (max-width: 480px) {
    .chatbot-trigger {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .chatbot-trigger svg {
        width: 24px;
        height: 24px;
    }

    .chatbot-container {
        bottom: 5%;
        right: 5%;
        left: 5%;
        width: 90%;
        max-height: 85dvh;
        height: auto;
        border-radius: var(--radius-lg);
    }

    .chatbot-container.active {
        transform: translateY(0);
    }

    .chatbot-messages {
        max-height: calc(85dvh - 180px);
        flex: 1;
    }

    .chatbot-header {
        padding: 12px 16px;
    }

    .chatbot-input-area {
        padding: 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    /* Hide trigger button when chat is open */
    .chatbot-trigger.active {
        opacity: 0;
        pointer-events: none;
    }
}

/* ==========================================================================
   DOUBLE DOOR TRANSITION EFFECT
   ========================================================================== */

.door-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.door {
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-50) 0%, var(--white) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.door::before {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-400);
}

.door-left::before {
    right: 0;
}

.door-right::before {
    left: 0;
}

.door-content {
    width: 100%;
    display: flex;
    align-items: center;
}

.door-left .door-content {
    justify-content: flex-end;
    padding-right: 20px;
}

.door-right .door-content {
    justify-content: flex-start;
    padding-left: 20px;
}

.door-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--navy-700);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Door opening animation */
.door-entry .door-left {
    animation: doorOpenLeft 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.3s;
}

.door-entry .door-right {
    animation: doorOpenRight 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes doorOpenLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes doorOpenRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Content reveal animation */
.door-entry .page-header,
.door-entry .automation-benefits,
.door-entry .automation-services,
.door-entry .automation-process {
    opacity: 0;
    animation: contentReveal 0.8s ease forwards;
    animation-delay: 1s;
}

.door-entry .automation-benefits {
    animation-delay: 1.1s;
}

.door-entry .automation-services {
    animation-delay: 1.2s;
}

.door-entry .automation-process {
    animation-delay: 1.3s;
}

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

/* Remove overlay after animation */
.door-entry .door-overlay {
    animation: hideOverlay 0.1s forwards;
    animation-delay: 1.5s;
}

@keyframes hideOverlay {
    to {
        visibility: hidden;
    }
}

/* Door closing animation (when navigating TO automation page) */
.door-closing .door-left {
    transform: translateX(-100%);
}

.door-closing .door-right {
    transform: translateX(100%);
}

.door-closing.active .door-left {
    animation: doorCloseLeft 0.7s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.door-closing.active .door-right {
    animation: doorCloseRight 0.7s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes doorCloseLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes doorCloseRight {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ==========================================================================
   AUTOMATION PAGE STYLES
   ========================================================================== */

.automation-header {
    background: linear-gradient(180deg, var(--navy-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.automation-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 30%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.automation-header .page-title,
.automation-header .page-subtitle {
    color: var(--navy-800);
}

/* Automation Hero Grid Layout */
.automation-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.automation-hero-content {
    text-align: left;
}

.automation-hero-content .section-badge {
    margin-bottom: 20px;
    background: var(--gold-100);
    color: var(--gold-600);
}

.automation-hero-content .page-title {
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.3;
}

.automation-hero-content .page-subtitle {
    text-align: left;
    max-width: 560px;
    line-height: 1.7;
}

/* Activity Panel */
.automation-hero-visual {
    display: flex;
    justify-content: center;
}

.activity-panel {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 24px 64px rgba(10, 22, 40, 0.14);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    max-width: 550px;
    width: 100%;
}

.activity-panel-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.activity-panel-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-panel-icon svg {
    width: 26px;
    height: 26px;
    color: var(--gold-300);
}

.activity-panel-title {
    font-weight: 600;
    color: var(--navy-800);
    font-size: 1.125rem;
    text-align: left;
}

.activity-panel-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.activity-panel-body {
    padding: 12px 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}

.activity-item:hover {
    background: var(--gray-50);
}

.activity-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

/* Colorful gradient icons */
.activity-icon-email {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
}

.activity-icon-calendar {
    background: var(--gold-100);
}

.activity-icon-calendar svg {
    color: var(--gold-600);
}

.activity-icon-document {
    background: linear-gradient(135deg, var(--navy-600) 0%, var(--navy-500) 100%);
}

.activity-icon-lead {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

.activity-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.activity-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-800);
    margin-bottom: 3px;
    text-align: left;
}

.activity-desc {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-align: left;
}

.activity-badge {
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.activity-badge-complete {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.activity-badge-processing {
    background: rgba(212, 168, 83, 0.15);
    color: var(--gold-600);
}

.activity-badge-pending {
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-600);
}

@media (max-width: 900px) {
    .automation-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .automation-hero-content {
        text-align: center;
    }

    .automation-hero-content .page-title,
    .automation-hero-content .page-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .automation-hero-visual {
        order: 1;
    }

    .activity-panel {
        max-width: 360px;
    }
}

/* Automation Benefits Section */
.automation-benefits {
    padding: var(--section-padding);
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

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

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-100);
    border-radius: var(--radius-lg);
    color: var(--gold-600);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
}

.benefit-card h3 {
    font-size: 1.25rem;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Automation Services Section */
.automation-services {
    padding: var(--section-padding);
    background: var(--navy-50);
}

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

.automation-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.automation-card:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-lg);
}

.automation-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-100);
    position: absolute;
    top: 20px;
    right: 30px;
}

.automation-card h3 {
    font-size: 1.5rem;
    color: var(--navy-800);
    margin-bottom: 16px;
}

.automation-card > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.automation-features li {
    position: relative;
    padding-left: 28px;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.6;
}

.automation-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 16px;
    height: 16px;
    background: var(--gold-500);
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.automation-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 0;
    font-size: 0.75rem;
    color: var(--gold-600);
    font-weight: 700;
}

/* Automation Process Section */
.automation-process {
    padding: var(--section-padding);
    background: var(--white);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.process-step {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--gold-500);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.process-step h3 {
    font-size: 1.125rem;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.process-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    margin-top: 32px;
    flex-shrink: 0;
}

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

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

    .benefit-card {
        padding: 32px 20px;
    }

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

    .automation-card {
        padding: 32px;
    }

    .automation-number {
        font-size: 2rem;
        top: 16px;
        right: 20px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--gold-500), var(--gold-300));
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .door-text {
        font-size: clamp(1.5rem, 6vw, 3rem);
    }
}

/* ==========================================================================
   AUTOMATION PAGE V2 - ROI-FOCUSED STYLES
   ========================================================================== */

/* 3-column benefits grid for ROI section */
.benefits-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

/* 7-item services grid */
.services-grid-7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.services-grid-7 > *:nth-child(n+5) {
    /* Last 3 items center in the row */
}

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

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

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

/* Simple service item */
.service-item-simple {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.service-item-simple:hover {
    border-color: var(--gold-400);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon-simple {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-50);
    border-radius: var(--radius-md);
    color: var(--gold-600);
}

.service-icon-simple svg {
    width: 28px;
    height: 28px;
}

.service-item-simple h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.service-item-simple p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Before/After Comparison Section */
.automation-comparison {
    padding: var(--section-padding);
    background: var(--gray-50);
}

/* New Comparison Columns with Arrow */
.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 0;
    align-items: stretch;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-col {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-col-before {
    border: 1px solid var(--gray-200);
}

.comparison-col-after {
    border: 1px solid var(--gold-300);
}

.comparison-col-header {
    padding: 22px 28px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-col-header svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.comparison-col-before .comparison-col-header {
    background: var(--gray-100);
    color: var(--gray-500);
}

.comparison-col-before .comparison-col-header svg {
    color: var(--gray-400);
}

.comparison-col-after .comparison-col-header {
    background: var(--gold-100);
    color: var(--gold-600);
}

.comparison-col-after .comparison-col-header svg {
    color: var(--gold-500);
}

.comparison-list {
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.comparison-col-before .comparison-list li {
    color: var(--gray-500);
}

.comparison-col-before .comparison-list li svg {
    color: var(--gray-400);
}

.comparison-col-after .comparison-list li {
    color: var(--gray-700);
}

.comparison-col-after .comparison-list li svg {
    color: var(--gold-500);
}

.comparison-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow svg {
    width: 36px;
    height: 36px;
    color: var(--gold-500);
}

@media (max-width: 900px) {
    .comparison-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .comparison-arrow svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {
    .comparison-col-header {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .comparison-list li {
        padding: 14px 20px;
        font-size: 0.875rem;
    }
}

/* Trust Section */
.automation-trust {
    padding: 60px 0;
    background: var(--navy-50);
}

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

.trust-content h3 {
    font-size: 1.375rem;
    color: var(--navy-800);
    margin-bottom: 32px;
    font-weight: 600;
}

.trust-intro {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.trust-points {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.trust-point svg {
    width: 20px;
    height: 20px;
    color: var(--gold-600);
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .trust-points {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .trust-content h3 {
        font-size: 1.125rem;
    }
}

/* Automation Page CTA - Light Version */
.door-entry .cta-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--navy-50) 100%);
}

.door-entry .cta-section::before {
    background: linear-gradient(180deg, var(--gold-400), transparent);
}

.door-entry .cta-section::after {
    background: radial-gradient(ellipse at center, rgba(212, 168, 83, 0.12) 0%, transparent 60%);
}

.door-entry .cta-content h2 {
    color: var(--navy-800);
}

.door-entry .cta-content p {
    color: var(--gray-600);
}

.door-entry .cta-buttons .btn-outline-light {
    border-color: var(--navy-600);
    color: var(--navy-700);
}

.door-entry .cta-buttons .btn-outline-light:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    color: var(--white);
}

/* Section AI Icon */
.section-ai-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--gold-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-ai-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-600);
}

.section-ai-icon-sm {
    width: 52px;
    height: 52px;
}

.section-ai-icon-sm svg {
    width: 26px;
    height: 26px;
}
