/* Donifa Group - White & Dark Blue Theme */

/* ===================================
   1. DESIGN SYSTEM VARIABLES
   =================================== */
:root {
    /* Color Palette - White & Dark Blue Theme */
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-light-secondary: #f0f2f5;
    --color-dark-blue: #1a2e4c;
    --color-dark-blue-light: #2a4060;
    --color-navy: #0d1b2a;
    --color-accent: #e85d3d;
    --color-accent-hover: #ff6b4a;

    /* Text colors for light backgrounds */
    --color-text-primary: #1a2e4c;
    --color-text-secondary: #4a5568;
    --color-text-muted: #718096;

    /* Border colors */
    --color-border: rgba(26, 46, 76, 0.1);
    --color-border-dark: rgba(26, 46, 76, 0.2);

    /* Background colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-dark: #1a2e4c;

    /* Dark theme colors (for dark sections) */
    --color-dark: #1a2e4c;
    --color-dark-secondary: #0d1b2a;

    /* Gradient colors */
    --gradient-purple: rgba(42, 64, 96, 0.4);
    --gradient-blue: rgba(26, 46, 76, 0.3);

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

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 80px;
    --header-height: 80px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 24px;
    --radius-pill: 50px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-secondary);
    line-height: 1.6;
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul,
ol {
    list-style: none;
}

/* ===================================
   3. TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    color: var(--color-text-primary);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

h4 {
    font-size: 1rem;
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

.text-italic {
    font-style: italic;
    color: var(--color-text-muted);
}

/* Section Label - Orange with arrow */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '↗';
    font-size: 1rem;
}

/* ===================================
   4. LAYOUT UTILITIES
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-dark);
}

.section-darker {
    background-color: var(--color-dark-secondary);
}

.section-light {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.section-light h1,
.section-light h2,
.section-light h3 {
    color: var(--color-text-primary);
}

.section-light p {
    color: var(--color-text-secondary);
}

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

/* Text colors for dark sections */
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-darker h1,
.section-darker h2,
.section-darker h3 {
    color: var(--color-white);
}

.section-dark p,
.section-darker p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-label,
.section-darker .section-label {
    color: var(--color-accent);
}

/* Industry items in dark sections */
.section-dark .industry-item h3,
.section-darker .industry-item h3 {
    color: var(--color-white);
}

.section-dark .industry-item p,
.section-darker .industry-item p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .industry-item,
.section-darker .industry-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .industry-item:hover,
.section-darker .industry-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Feature cards in dark sections */
.section-dark .feature-card,
.section-darker .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .feature-card h3,
.section-darker .feature-card h3 {
    color: var(--color-white);
}

.section-dark .feature-card p,
.section-darker .feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Button outlines in dark sections */
.section-dark .btn-outline,
.section-darker .btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.section-dark .btn-outline:hover,
.section-darker .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark-blue);
    border-color: var(--color-white);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

/* ===================================
   UTILITY CLASSES
   Replacing inline styles
   =================================== */

/* Centered section content - commonly used pattern */
.section-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-centered .section-label {
    justify-content: center;
}

.section-centered p {
    margin-left: auto;
    margin-right: auto;
}

/* Text alignment */
.text-center {
    text-align: center;
}

/* Margin utilities */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Max width utilities */
.max-w-600 {
    max-width: 600px;
}

.max-w-800 {
    max-width: 800px;
}

/* Honeypot field - hidden from users, catches bots */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

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

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

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

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

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

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

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   BENTO CARD STYLES
   =================================== */
.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-card .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 93, 61, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.bento-card .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.bento-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-white);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Light Theme Bento Card */
.bento-card-light {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bento-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--color-accent);
}

.bento-card-light .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 93, 61, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.bento-card-light .feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.bento-card-light h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.bento-card-light p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Flex utilities */
.flex {
    display: flex;
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
   5. BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

.btn-primary:hover {
    background-color: var(--color-dark-blue-light);
    color: var(--color-white);
    border-color: var(--color-dark-blue-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border-dark);
    color: var(--color-text-primary);
}

.btn-outline:hover {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
    border-color: var(--color-dark-blue);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    padding: 0.5rem 0;
}

.btn-ghost:hover {
    color: var(--color-accent);
}

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

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
}

/* Button arrow */
.btn .arrow {
    font-size: 1.1em;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow {
    transform: translateX(3px);
}

/* Pill badge button */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
}

.pill-badge .accent {
    color: var(--color-accent);
    font-weight: 600;
}

/* ===================================
   6. TOP BAR
   =================================== */
.top-bar {
    background-color: var(--color-dark-blue);
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform var(--transition-normal);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
}

.top-bar a:hover {
    color: var(--color-white);
}

/* ===================================
   7. HEADER - CUBICLE STYLE
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.has-top-bar {
    top: 38px;
}

/* Header Inner - Grid Layout with Borders */
.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    transition: all var(--transition-normal);
}

/* Header Sections with vertical borders */
.header-section {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.header-section:last-child {
    border-right: none;
}

/* Logo Section */
.header-logo {
    padding-left: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

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

.logo-text {
    font-weight: 700;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-group {
    font-weight: 400;
    letter-spacing: 0.15em;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation Section */
.header-nav {
    justify-content: center;
    padding: 1rem 3rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Header Actions Section */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 2rem;
}

.search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--color-white);
    color: var(--color-dark-blue);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.header-cta:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
}

.header-cta .cta-arrow {
    font-size: 1rem;
    transition: transform var(--transition-fast);
}

.header-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.hamburger div {
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-normal);
}

/* ===================================
   SCROLLED STATE - Color Change
   =================================== */
.header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .header-section {
    border-right-color: var(--color-border);
}

.header.scrolled .logo {
    color: var(--color-dark-blue);
}

.header.scrolled .logo-icon {
    color: var(--color-dark-blue);
}

.header.scrolled .logo-group {
    color: var(--color-text-secondary);
}

.header.scrolled .nav-link {
    color: var(--color-text-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-dark-blue);
}

.header.scrolled .search-btn {
    border-color: var(--color-border-dark);
    color: var(--color-text-secondary);
}

.header.scrolled .search-btn:hover {
    background: rgba(26, 46, 76, 0.05);
    color: var(--color-dark-blue);
    border-color: var(--color-dark-blue);
}

.header.scrolled .header-cta {
    background: var(--color-dark-blue);
    color: var(--color-white);
}

.header.scrolled .header-cta:hover {
    background: var(--color-accent);
}

.header.scrolled .hamburger div {
    background-color: var(--color-dark-blue);
}

/* ===================================
   8. HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 44px);
}

/* Aurora background effect */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, var(--gradient-purple), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, var(--gradient-blue), transparent 50%);
    animation: aurora 15s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes aurora {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(-5%, 5%) rotate(3deg);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-description .arrow-icon {
    color: var(--color-accent);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

.hero-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
}

.hero-badge .label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.hero-badge .value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
}

.hero-badge .value .accent {
    color: var(--color-accent);
}

/* Hero split layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ===================================
   8B. HERO CUBICLES STYLE (EXACT)
   =================================== */
.hero-cubicles {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/stock/hero-building.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.7) 0%,
            rgba(10, 10, 10, 0.5) 40%,
            rgba(10, 10, 10, 0.8) 100%);
}

.hero-wrapper {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Hero Centered Layout */
.hero-wrapper.hero-centered {
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: calc(var(--header-height) + 40px);
}

.hero-centered .hero-tagline {
    margin-bottom: 1rem;
}

.hero-centered h1 {
    margin-bottom: 2rem;
}

.hero-centered .hero-description-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Hero Top */
.hero-top {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero-cubicles .hero-tagline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.hero-cubicles h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-arrow-text {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
}

.arrow-icon-large {
    color: var(--color-accent);
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}

.hero-arrow-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hero Bottom Split */
.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: auto;
    align-items: end;
}

.hero-bottom-left {
    position: relative;
}

.hero-team-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-description-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 500px;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
}

.hero-stat-badge .stat-label {
    color: var(--color-text-secondary);
}

.hero-stat-badge .stat-value {
    color: var(--color-accent);
    font-weight: 600;
}

.spotlight-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-normal);
}

.spotlight-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
}

.spotlight-btn .play-icon {
    color: var(--color-accent);
    font-size: 0.75rem;
}

.hero-cta {
    width: fit-content;
}

/* Hero Cubicles Responsive */
@media (max-width: 992px) {
    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-team-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-cubicles {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .hero-wrapper {
        padding-top: 40px !important;
    }

    .hero-top {
        margin-top: 10px;
    }

    .hero-cubicles h1 {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   9. ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
}

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

.about-content {
    padding-right: 2rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.about-image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.about-value-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;
}

.about-value-label h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--color-white);
}

.about-value-label p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* ===================================
   10. VALUES MARQUEE
   =================================== */
.values-marquee {
    padding: 2rem 0;
    background: var(--color-dark-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee-item span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.marquee-item span {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-secondary);
}

.marquee-item .dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   11. INDUSTRIES SECTION
   =================================== */
.industries-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.industries-header h2 {
    max-width: 600px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--color-border);
}

.industry-item {
    padding: 2rem;
    border-bottom: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.industry-item:nth-child(2n) {
    border-right: none;
}

.industry-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.industry-item:hover {
    background: rgba(26, 46, 76, 0.03);
}

.industry-number {
    display: inline-block;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.industry-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.industry-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.industry-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===================================
   12. SERVICES SECTION
   =================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-primary);
}

.services-section.section-dark {
    background: var(--color-dark);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.services-header-content {
    max-width: 600px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--color-border);
}

.service-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.section-dark .service-item,
.section-darker .service-item {
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .service-item:hover,
.section-darker .service-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.section-dark .service-item p,
.section-darker .service-item p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .service-number,
.section-darker .service-number {
    color: var(--color-accent);
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: rgba(26, 46, 76, 0.03);
}

.service-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.service-item h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    min-height: 2.5em;
}

.service-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.service-link:hover {
    color: var(--color-dark-blue);
}

/* ===================================
   13. QUOTE BANNER
   =================================== */
.quote-banner {
    position: relative;
    padding: 6rem 0;
    background-image: url('../images/stock/quote-banner.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 46, 76, 0.95), rgba(26, 46, 76, 0.8));
}

.quote-banner .container {
    position: relative;
    z-index: 1;
}

.quote-text {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    color: var(--color-white);
    max-width: 700px;
    line-height: 1.4;
}

.quote-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 0;
    vertical-align: -0.4em;
    margin-right: 0.25rem;
}

.quote-banner.quote-banner-alt {
    background-image: url('../images/stock/quote-banner-2.jpg');
}

.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 0;
    vertical-align: -0.4em;
    margin-left: 0.25rem;
}

/* ===================================
   14. CASE STUDY / PORTFOLIO
   =================================== */
.case-study-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-secondary);
}

.case-study-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.case-study-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.case-study-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.case-study-overlay h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.case-study-overlay p {
    max-width: 500px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   15. CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark-secondary);
    position: relative;
    overflow: hidden;
}

.cta-section h2,
.cta-section h3 {
    color: var(--color-white);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
}

/* Remove aurora effect for cleaner look */
.cta-section::before {
    display: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
}

/* ===================================
   17. FOOTER
   =================================== */
.footer {
    background: var(--color-dark-blue);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-top: 1.5rem;
    max-width: 300px;
}

.footer-col h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

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

.footer-links li a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--color-text-muted);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* ===================================
   18. CARDS
   =================================== */
.card {
    background: var(--color-dark-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Feature card with icon */
.feature-card {
    text-align: center;
    padding: 3rem 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 93, 61, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* ===================================
   19. STATS
   =================================== */
.stats-section {
    padding: 5rem 0;
    background: var(--color-dark-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number .accent {
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ===================================
   20. PAGE HEADERS
   =================================== */
.page-header {
    padding: 180px 0 80px;
    background: var(--color-dark);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 40% at 30% 20%, var(--gradient-purple), transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    margin-bottom: 1rem;
    color: var(--color-white);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   21. CONTACT PAGE
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-dark);
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0;
}

.section-light .contact-item a,
.section-light .contact-item p {
    color: var(--color-text-primary);
}

.contact-form-container {
    background: var(--color-dark-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.contact-form-container h3,
.contact-form-container p {
    color: var(--color-white);
}

.contact-form-container p {
    color: rgba(255, 255, 255, 0.7);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 1rem;
    color: var(--color-white);
    font-family: var(--font-sans);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

/* ===================================
   22. GLASSMORPHISM COMPONENTS
   =================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* ===================================
   23. ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation delays */
.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

/* ===================================
   24. MEDIA QUERIES
   =================================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid,
    .cta-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .service-item:nth-child(2n) {
        border-right: none;
    }

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

    .industry-item {
        border-right: none !important;
    }

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

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

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

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

    .container {
        padding: 0 1.5rem;
    }

    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }

    .header.has-top-bar {
        top: 0;
    }

    /* Mobile Header Layout */
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .header-section {
        border-right: none;
        padding: 0;
    }

    .header-logo {
        padding-left: 0;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-dark-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-normal);
        z-index: 999;
        padding: 0;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* Mobile Navigation */
    .nav-menu {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu .nav-link {
        font-size: 1.5rem;
        color: var(--color-white);
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        padding-right: 0;
    }

    .header-actions .search-btn,
    .header-actions .header-cta {
        display: none;
    }

    /* When scrolled on mobile - keep white header but nav menu links stay white */
    .header.scrolled .header-nav .nav-link {
        color: var(--color-white);
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

    .service-item {
        border-right: none !important;
    }

    /* Insights */
    .insights-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* CTA */
    .cta-container {
        text-align: center;
    }

    .cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    /* About images */
    .about-images {
        grid-template-columns: 1fr;
    }

    .about-image-card img {
        height: 250px;
    }

    /* Page header */
    .page-header {
        padding: 140px 0 60px;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    .hero-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .hero-badge .value {
        font-size: 1.25rem;
    }
}

/* ===================================
   FORM MESSAGES
   =================================== */
.form-message {
    display: none;
    /* Hidden by default, shown via JS */
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.form-message.show {
    display: block;
}

.form-message p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===================================
   25. PRINT STYLES
   =================================== */
@media print {

    .header,
    .footer,
    .hamburger {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* FORCED OVERRIDE: Approach Page Intro */
#approach-intro {
    background-color: var(--color-bg-primary) !important;
    color: var(--color-text-primary) !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    padding-right: 2rem;
}

/* Cookie main content layout */
.cookie-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.cookie-text a {
    color: var(--color-accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-main {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Fix for Cookie Banner Buttons */
.cookie-banner .btn-outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.cookie-banner .btn-outline:hover {
    background: var(--color-white);
    color: var(--color-dark-blue);
    border-color: var(--color-white);
}

.cookie-banner .btn-white {
    background-color: var(--color-white);
    color: var(--color-dark-blue);
    border-color: var(--color-white);
}

.cookie-banner .btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* Cookie Banner Buttons Container */
.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Make Essential Only button visible on dark background */
.cookie-banner .btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    opacity: 1 !important;
    padding: 0.6rem 1.2rem;
}

.cookie-banner .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff !important;
}

/* Increase padding between text and buttons */
.cookie-text {
    margin-bottom: 0;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .cookie-text {
        padding-right: 0;
        margin-bottom: 1rem;
    }
}