/* ========================================
   QUANTUM BUSINESS - Professional Styles
   Inspired by McKinsey Design System
   ======================================== */

/* CSS Variables - McKinsey Color Palette */
:root {
    /* Primary Colors - Deep Blue Theme */
    --color-deep-blue: #051c2c;
    --color-navy: #0a2540;
    --color-electric-blue: #1a73e8;
    --color-accent-blue: #4dabf7;
    
    /* Gradient Colors */
    --color-gradient-start: #051c2c;
    --color-gradient-mid: #0d3b66;
    --color-gradient-end: #1a5276;
    
    /* Gold Accent */
    --color-gold: #c9a961;
    --color-gold-light: #e8d5a3;
    
    /* Neutrals */
    --color-white: #ffffff;
    --color-off-white: #f8f9fa;
    --color-light-gray: #e9ecef;
    --color-medium-gray: #6c757d;
    --color-dark-gray: #343a40;
    --color-charcoal: #212529;
    
    /* Typography */
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1400px;
    --container-padding: 2rem;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Section Labels & Titles */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-electric-blue);
    margin-bottom: var(--space-md);
}

.section-label--light {
    color: var(--color-gold);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--color-medium-gray);
    max-width: 700px;
}

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

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

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

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn__arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--color-electric-blue);
    color: var(--color-white);
    border: 2px solid var(--color-electric-blue);
}

.btn--primary:hover {
    background: #1557b0;
    border-color: #1557b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn--ghost {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

.btn--header {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 28, 44, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

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

.header__logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-quantum {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.logo-business {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.header__nav {
    display: none;
}

@media (min-width: 992px) {
    .header__nav {
        display: block;
    }
}

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

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-white);
}

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

.header__actions {
    display: none;
}

@media (min-width: 768px) {
    .header__actions {
        display: flex;
    }
}

.header__menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

@media (min-width: 992px) {
    .header__menu-toggle {
        display: none;
    }
}

.header__menu-toggle .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition-base);
}

/* ========================================
   MOBILE MENU - Full Screen Overlay
   ======================================== */
@media (max-width: 991px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        background: var(--color-deep-blue);
        z-index: 9998;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease, 
                    visibility 0.3s ease;
    }
    
    .header__nav.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
    
    .header__nav .nav__list {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
        padding: 0;
        margin: 0;
    }
    
    .header__nav .nav__link {
        font-size: 1.75rem;
        font-weight: 500;
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--color-white);
    }
    
    .header__nav .nav__link:hover {
        color: var(--color-gold);
    }
    
    /* Menu toggle button - always visible and on top */
    .header__menu-toggle {
        position: relative;
        z-index: 9999;
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    
    /* Transform hamburger to X when active */
    .header__menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .header__menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .header__menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Ensure header stays on top */
    .header {
        z-index: 9999;
    }
}

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

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-deep-blue) 0%, 
        var(--color-navy) 50%, 
        var(--color-gradient-mid) 100%
    );
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--color-white) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--color-white) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .hero__container {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

.hero__content {
    max-width: 700px;
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease forwards;
}

.hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.hero__title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero__title-line:nth-child(1) { animation-delay: 0.2s; }
.hero__title-line:nth-child(2) { animation-delay: 0.4s; }
.hero__title-line:nth-child(3) { animation-delay: 0.6s; }

.hero__title-line--accent {
    color: var(--color-gold);
}

.hero__description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.hero__description strong {
    color: var(--color-white);
    font-weight: 600;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
    opacity: 0;
}

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

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero__stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */
.value-prop {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

.value-prop__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.value-prop__header .section-description {
    margin: 0 auto;
}

.value-prop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.value-card {
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--color-light-gray);
}

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

.value-card__icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--space-md);
    color: var(--color-electric-blue);
}

.value-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
}

.value-card__text {
    font-size: 0.9375rem;
    color: var(--color-medium-gray);
    line-height: 1.6;
}

/* ========================================
   PACKAGES SECTION
   ======================================== */
.packages {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.packages__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.packages__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        var(--color-deep-blue) 0%, 
        var(--color-navy) 100%
    );
}

.packages__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.packages__header .section-description {
    margin: 0 auto;
}

.packages__row {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.packages__row--four {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.packages__row--two {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

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

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.package-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.package-card--featured {
    background: linear-gradient(135deg, 
        rgba(26, 115, 232, 0.2) 0%, 
        rgba(77, 171, 247, 0.1) 100%
    );
    border-color: rgba(26, 115, 232, 0.4);
}

.package-card--featured:hover {
    border-color: var(--color-electric-blue);
}

.package-card__badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.375rem 1rem;
    background: var(--color-gold);
    color: var(--color-deep-blue);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
}

.package-card__header {
    margin-bottom: var(--space-md);
}

.package-card__label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.package-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.3;
}

.package-card__description {
    flex-grow: 1;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-lg);
}

.package-card__price {
    margin-bottom: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.package-card__price-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.package-card__price-value {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
}

.package-card__price-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.package-card--large .package-card__title {
    font-size: 1.375rem;
}

.package-card--large .package-card__description {
    font-size: 1rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.about__grid {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 992px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about__content {
    max-width: 560px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.about__features {
    margin-top: var(--space-xl);
    display: grid;
    gap: var(--space-md);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-electric-blue);
    flex-shrink: 0;
}

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
}

.about__image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-deep-blue) 0%, 
        var(--color-gradient-mid) 100%
    );
    border-radius: var(--radius-lg);
}

.about__stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    display: flex;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .about__stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: var(--space-lg);
        justify-content: center;
    }
}

.about__stats-item {
    text-align: center;
}

.about__stats-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-electric-blue);
    line-height: 1;
}

.about__stats-label {
    font-size: 0.8125rem;
    color: var(--color-medium-gray);
    margin-top: 0.25rem;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

.blog__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.blog__header .section-description {
    margin: 0 auto;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

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

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

.blog-card__image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-gradient-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__image-placeholder {
    width: 64px;
    height: 64px;
    color: var(--color-gold);
    opacity: 0.8;
}

.blog-card__image-placeholder svg {
    width: 100%;
    height: 100%;
}

.blog-card__content {
    padding: var(--space-lg);
}

.blog-card__category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-electric-blue);
    margin-bottom: var(--space-sm);
}

.blog-card__title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.blog-card__title a {
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.blog-card__title a:hover {
    color: var(--color-electric-blue);
}

.blog-card__excerpt {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-md);
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-medium-gray);
}

.blog__cta {
    text-align: center;
    margin-top: var(--space-xl);
}

/* Blog Hero & Listing Page */
.blog-hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 40vh;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
}

.blog-hero__content {
    max-width: 700px;
}

.blog-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.blog-hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.blog-hero__description strong {
    color: var(--color-gold);
}

.blog-listing {
    padding: var(--space-3xl) 0;
}

.blog-featured {
    margin-bottom: var(--space-3xl);
}

.blog-featured__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-light-gray);
}

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

.blog-featured__image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-gradient-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured__image-placeholder {
    width: 100px;
    height: 100px;
    color: var(--color-gold);
    opacity: 0.6;
}

.blog-featured__image-placeholder svg {
    width: 100%;
    height: 100%;
}

.blog-featured__content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured__title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin: var(--space-sm) 0 var(--space-md);
}

.blog-featured__title a {
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.blog-featured__title a:hover {
    color: var(--color-electric-blue);
}

.blog-featured__excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-md);
}

.blog-newsletter {
    margin-top: var(--space-3xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.blog-newsletter h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.blog-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.blog-newsletter__form .form-input {
    flex: 1;
    min-width: 250px;
}

/* ========================================
   SERVICE PAGES
   ======================================== */
.service-hero {
    position: relative;
    padding: 140px 0 80px;
    min-height: 60vh;
}

.service-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
}

.service-hero .container {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 992px) {
    .service-hero .container {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
    }
}

.service-hero__content {
    max-width: 700px;
}

.service-hero__label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.service-hero__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.service-hero__lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.service-hero__lead strong {
    color: var(--color-gold);
}

.service-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.service-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

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

.service-hero__stat {
    text-align: center;
}

.service-hero__stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.service-hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--color-gold);
}

/* Service Details */
.service-details {
    padding: var(--space-3xl) 0;
}

.service-details__grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .service-details__grid {
        grid-template-columns: 1fr 380px;
        align-items: start;
    }
}

.service-details__content h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.service-details__content h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    margin: var(--space-xl) 0 var(--space-md);
}

.service-details__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
}

.service-list {
    margin: var(--space-md) 0;
    padding-left: 0;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.7;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-electric-blue);
    font-weight: bold;
}

/* Service Programs */
.service-programs {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.service-program {
    padding: var(--space-lg);
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-electric-blue);
}

.service-program h4 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.service-program p {
    margin-bottom: var(--space-sm);
}

.service-program ul {
    margin: 0;
    padding-left: 1.25rem;
    list-style: disc;
}

.service-program li {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}

/* Service Steps */
.service-steps {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-lg) 0;
}

.service-step {
    display: flex;
    gap: var(--space-md);
}

.service-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-electric-blue);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 50%;
}

.service-step__content h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.service-step__content p {
    font-size: 0.9375rem;
    margin: 0;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-price-card {
    padding: var(--space-xl);
    background: var(--color-deep-blue);
    border-radius: var(--radius-lg);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.service-price-card__label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.service-price-card__price {
    margin-bottom: var(--space-lg);
}

.service-price-card__from {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-price-card__amount {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
}

.service-price-card__period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-price-card__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
}

.service-price-card__includes li {
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-price-card .btn {
    margin-bottom: var(--space-sm);
}

.service-testimonial {
    padding: var(--space-lg);
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-gold);
}

.service-testimonial blockquote {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 var(--space-sm);
}

.service-testimonial cite {
    font-size: 0.875rem;
    color: var(--color-medium-gray);
    font-style: normal;
}

/* Service Results */
.service-results {
    padding: var(--space-3xl) 0;
    background: var(--color-deep-blue);
}

.service-results__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.service-results__header h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.service-results__header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.service-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.result-card {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card__number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.result-card__label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Service FAQ */
.service-faq {
    padding: var(--space-3xl) 0;
    background: var(--color-off-white);
}

.service-faq h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.faq-list {
    display: grid;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
}

.faq-item summary {
    padding: var(--space-md);
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    padding: 0 var(--space-md) var(--space-md);
    margin: 0;
    color: var(--color-dark-gray);
}

/* Service CTA */
.service-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-navy) 100%);
}

.service-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.service-cta__content h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.service-cta__content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

.service-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* Related Services */
.related-services {
    padding: var(--space-3xl) 0;
    background: var(--color-off-white);
}

.related-services h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

.related-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 800px;
    margin: 0 auto;
}

.related-service-card {
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition-base);
}

.related-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-electric-blue);
}

.related-service-card__label {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-electric-blue);
    margin-bottom: 0.5rem;
}

.related-service-card h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-charcoal);
}

.related-service-card p {
    font-size: 0.9375rem;
    color: var(--color-medium-gray);
    margin: 0;
}

/* Package Card as Link */
.package-card--link {
    cursor: pointer;
    text-decoration: none;
    display: flex;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-section__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-section__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-electric-blue) 0%, 
        var(--color-navy) 100%
    );
}

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

.cta-section__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.cta-section__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-off-white);
}

.contact__grid {
    display: grid;
    gap: var(--space-3xl);
}

@media (min-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: start;
    }
}

.contact__info {
    max-width: 480px;
}

.contact__text {
    font-size: 1.0625rem;
    color: var(--color-medium-gray);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal);
    transition: color var(--transition-base);
}

.contact__detail:hover {
    color: var(--color-electric-blue);
}

.contact__detail-icon {
    width: 24px;
    height: 24px;
    color: var(--color-electric-blue);
    flex-shrink: 0;
}

.contact__form-wrapper {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

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

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

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

.form-input {
    padding: 0.875rem 1rem;
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-charcoal);
    background: var(--color-off-white);
    border: 2px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-electric-blue);
    background: var(--color-white);
}

.form-input::placeholder {
    color: var(--color-medium-gray);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

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

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.form-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-message--success svg {
    stroke: #16a34a;
}

.form-message--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.form-message--error svg {
    stroke: #dc2626;
}

/* Button Loading State */
.btn__loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn__spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn--loading .btn__text,
.btn--loading .btn__arrow {
    display: none;
}

.btn--loading .btn__loading {
    display: flex;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-page {
    padding-top: 120px;
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
    background: var(--color-off-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--color-deep-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.legal-updated {
    color: var(--color-medium-gray);
    font-size: 0.9375rem;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-light-gray);
}

.legal-intro {
    background: rgba(0, 85, 140, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-electric-blue);
    margin-bottom: var(--space-xl);
}

.legal-intro p {
    margin: 0;
    color: var(--color-charcoal);
    line-height: 1.7;
}

.legal-section {
    margin-bottom: var(--space-xl);
}

.legal-section h2 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-deep-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-electric-blue);
}

.legal-section h3 {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--color-charcoal);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--color-electric-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-section a:hover {
    color: var(--color-deep-blue);
}

/* GDPR Specific Styles */
.gdpr-rights {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.gdpr-right {
    background: var(--color-off-white);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--color-light-gray);
}

.gdpr-right h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.gdpr-right p {
    margin: 0;
    font-size: 0.9375rem;
}

.gdpr-contact-box,
.gdpr-authority-box {
    background: rgba(0, 85, 140, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.gdpr-contact-box h3,
.gdpr-authority-box h3 {
    margin-top: 0;
    color: var(--color-deep-blue);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.9375rem;
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--color-light-gray);
}

.gdpr-table th {
    background: var(--color-deep-blue);
    color: var(--color-white);
    font-weight: 600;
}

.gdpr-table td {
    background: var(--color-white);
}

.gdpr-table tr:nth-child(even) td {
    background: var(--color-off-white);
}

.gdpr-cta {
    text-align: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-deep-blue), var(--color-electric-blue));
    border-radius: 12px;
    margin-top: var(--space-xl);
}

.gdpr-cta h2 {
    color: var(--color-white);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.gdpr-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.gdpr-cta .btn {
    display: inline-flex;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: var(--space-lg) var(--space-md);
        margin: 0 var(--space-sm);
    }
    
    .legal-section h2 {
        font-size: 1.25rem;
    }
    
    .gdpr-table {
        font-size: 0.875rem;
    }
    
    .gdpr-table th,
    .gdpr-table td {
        padding: 0.75rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-3xl) 0 var(--space-lg);
    background: var(--color-deep-blue);
    color: var(--color-white);
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 992px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__list a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer__list a:hover {
    color: var(--color-gold);
}

.footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-base);
}

.footer__social-link:hover {
    background: var(--color-gold);
    color: var(--color-deep-blue);
}

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

/* ========================================
   ARTICLE PAGES
   ======================================== */
.article__hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.article__hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
}

.article__hero-content {
    max-width: 800px;
}

.article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-lg);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.article__category {
    background: rgba(201, 169, 97, 0.2);
    color: var(--color-gold);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.article__title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.article__lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.article__lead strong {
    color: var(--color-gold);
}

.article__content {
    padding: var(--space-3xl) 0;
}

.container--narrow {
    max-width: 800px;
}

.article__content h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin: var(--space-xl) 0 var(--space-md);
}

.article__content h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin: var(--space-lg) 0 var(--space-sm);
}

.article__content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-md);
}

.article__content strong {
    color: var(--color-charcoal);
    font-weight: 600;
}

.article__quote {
    margin: var(--space-xl) 0;
    padding: var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-gold);
}

.article__quote p {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.article__quote cite {
    font-size: 0.9375rem;
    color: var(--color-gold);
    font-style: normal;
}

.article__list {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.article__list li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-sm);
}

.article__list--numbered {
    list-style: decimal;
}

.article__list:not(.article__list--numbered) {
    list-style: disc;
}

.article__highlight {
    padding: var(--space-md);
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border-left: 3px solid var(--color-electric-blue);
}

.article__highlight h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.article__highlight p {
    margin-bottom: 0;
    font-size: 1rem;
}

.article__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-deep-blue) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    text-align: center;
}

.article__stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.article__stat-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.article__testimonial {
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article__testimonial-rating {
    color: var(--color-gold);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.1em;
}

.article__testimonial blockquote {
    margin: 0;
    padding: 0;
}

.article__testimonial blockquote p {
    font-size: 1rem;
    color: var(--color-dark-gray);
    margin-bottom: var(--space-sm);
}

.article__testimonial-author {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-light-gray);
}

.article__testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--color-charcoal);
}

.article__testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-medium-gray);
}

.article__faq {
    margin: var(--space-xl) 0;
}

.article__faq-item {
    margin-bottom: var(--space-sm);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article__faq-item summary {
    padding: var(--space-md);
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    background: var(--color-off-white);
    transition: background var(--transition-base);
}

.article__faq-item summary:hover {
    background: var(--color-light-gray);
}

.article__faq-item p {
    padding: var(--space-md);
    margin: 0;
    font-size: 1rem;
}

.article__cta {
    margin-top: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-navy) 100%);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article__cta .btn {
    margin-bottom: var(--space-md);
}

.article__cta-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.article__cta-note a {
    color: var(--color-white);
    font-weight: 600;
    text-decoration: underline;
}

.article__related {
    padding: var(--space-3xl) 0;
    background: var(--color-off-white);
}

.article__related h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: var(--space-xl);
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.25rem;
    }
    
    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
    
    /* Hero CTA buttons - stacked vertically and symmetric on mobile */
    .hero__cta {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-md);
    }
    
    .hero__cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero__cta .btn--ghost {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .hero__cta .btn--ghost:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .packages__row--four,
    .packages__row--two {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.25rem;
    }
    
    .hero__stat-number {
        font-size: 2rem;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .package-card {
        border-width: 2px;
    }
    
    .btn {
        border-width: 3px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   FLOATING CONTACT WIDGETS
   ======================================== */
.floating-widgets {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9997;
}

.floating-widget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all var(--transition-base);
    cursor: pointer;
}

.floating-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.floating-widget svg {
    width: 28px;
    height: 28px;
}

/* WhatsApp */
.floating-widget--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-widget--whatsapp:hover {
    background: linear-gradient(135deg, #2EE370 0%, #15A085 100%);
}

/* Phone */
.floating-widget--phone {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
}

.floating-widget--phone:hover {
    background: linear-gradient(135deg, #5CBF60 0%, #43A047 100%);
}

/* Pulse animation for attention */
.floating-widget--whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-widgets {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .floating-widget {
        width: 52px;
        height: 52px;
    }
    
    .floating-widget svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-widget--whatsapp::before {
        width: 52px;
        height: 52px;
    }
}

