/* APS Epoxy - Premium Design System */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --color-bg: #0a0e17;
    --color-surface: #111625;
    --color-primary: #d4af37;
    /* Metallic Gold */
    --color-primary-dim: #aa8c2c;
    --color-accent: #0077be;
    /* Ocean Blue */
    --color-text: #f0f4f8;
    --color-text-muted: #a0aec0;

    --font-heading: 'Playfair Display', serif;
    /* Elegant, premium */
    --font-body: 'Outfit', sans-serif;
    /* Modern, clean */

    --container-width: 1200px;
    --header-height: 80px;
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dim));
    color: var(--color-bg);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

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

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-bg);
}

/* Loading Screen */
/* Loading Screen - 3D Effect */
/* Loading Screen - Premium 3D Effect */
/* Loading Screen - Paint Brush Effect */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #05070a;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 300px;
    height: 300px;
    /* Increased height for vertical motion */
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo-container {
    position: absolute;
    width: 200px;
    height: auto;
    overflow: hidden;
    /* Vertical Masking */
    mask-image: linear-gradient(to bottom, black 50%, transparent 50%);
    mask-size: 100% 200%;
    mask-position: 0% 100%;
    /* Start Hidden (transparent at bottom) */
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 50%);
    -webkit-mask-size: 100% 200%;
    -webkit-mask-position: 0% 100%;
    animation: revealLogoVertical 3s ease-in-out infinite;
}

.loader-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* 3D Paint Roller - Horizontal Cylinder moving Vertically */
.loader-roller {
    position: absolute;
    left: 50%;
    top: 0;
    width: 240px;
    /* Wider than logo */
    height: 40px;
    transform: translateX(-50%) translateZ(20px);
    animation: moveRollerVertical 3s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 500px;
    z-index: 10;
}

.roller-body {
    width: 100%;
    height: 100%;
    /* Horizontal Cylinder Gradient (Top to Bottom highlight) */
    background: linear-gradient(to bottom, #b08d28, #d4af37, #f3e5ab, #aa8c2c);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    position: absolute;
    transform: rotateX(0deg);
}

/* Roller Side Cap */
.roller-body::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 5px;
    width: 10px;
    height: 30px;
    background: #8e701f;
    border-radius: 50%;
}

.roller-body::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 5px;
    width: 10px;
    height: 30px;
    background: #8e701f;
    border-radius: 50%;
}

.roller-handle {
    width: 10px;
    height: 80px;
    background: #333;
    position: absolute;
    right: -15px;
    /* Handle connects to side */
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Handle Grip extension */
.roller-handle::after {
    content: '';
    position: absolute;
    bottom: -60px;
    /* Length of handle */
    left: 0;
    width: 10px;
    height: 80px;
    background: #222;
    transform: rotate(-15deg);
    transform-origin: top;
}

/* Animations */
@keyframes moveRollerVertical {
    0% {
        top: 20%;
        /* Start above */
        transform: translateX(-50%) translateZ(20px) rotateX(0deg);
    }

    50% {
        top: 70%;
        /* End below */
        transform: translateX(-50%) translateZ(20px) rotateX(-180deg);
        /* Roll effect */
    }

    100% {
        top: 20%;
        /* Back to top */
        transform: translateX(-50%) translateZ(20px) rotateX(0deg);
    }
}

@keyframes revealLogoVertical {
    0% {
        -webkit-mask-position: 0% 100%;
        /* Hidden */
        mask-position: 0% 100%;
    }

    50% {
        -webkit-mask-position: 0% 0%;
        /* Revealed */
        mask-position: 0% 0%;
    }

    100% {
        -webkit-mask-position: 0% 100%;
        /* Hidden again */
        mask-position: 0% 100%;
    }
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--color-primary);
    letter-spacing: 8px;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 2rem;
    position: relative;
    background: linear-gradient(to right, #aa8c2c, #f3e5ab, #aa8c2c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

/* Header & Nav */
/* Header & Nav */
/* Header & Nav - Premium Mini Bar */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    margin-left: 1rem;
    z-index: 1002;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    height: 80px;
    /* Fixed height for consistent bar size */
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    padding: 0 2rem;
    /* Remove vertical padding, use flex centering */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    /* Vertically center content */
}

header.scrolled {
    width: 90%;
    top: 10px;
    height: 70px;
    /* Slightly smaller on scroll */
    background: rgba(5, 7, 10, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.2);
}

header .container {
    /* Override container usage inside header to fit the flex properly */
    width: 100%;
    padding: 0;
    height: 100%;
    /* Full height */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    height: 100%;
    /* No z-index here, handle on img */
}

.logo img {
    height: 140px;
    /* High pixel size as requested */
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) perspective(600px) rotateX(10deg);
    /* No negative margins needed with absolute positioning + transform centering */
    z-index: 1001;
    transition: all 0.3s ease;

    /* Effects */
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.5));
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    padding: 5px;
}

.logo:hover img {
    transform: translateY(-50%) perspective(600px) rotateX(0deg) scale(1.05) translateZ(30px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.9));
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
}

/* Adjust scroll state logo */
header.scrolled .logo img {
    height: 90px;
    transform: translateY(-50%) perspective(500px) rotateX(5deg);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    height: 100%;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
}

/* Header Quote Button specifics */
header .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #d4af37, #f3e5ab, #aa8c2c);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    border-radius: 30px;
}

header .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
}

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

/* Logo Bar / Partners - Infinite Marquee */
.logo-bar {
    background: linear-gradient(to right, #0a0e17, #111625, #0a0e17);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.logo-slider {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.logo-slider:hover {
    animation-play-state: paused;
}

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

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

    /* Assumes duplicated content for seamless loop */
}

.logo-item {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Modal / Contact Overlay */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 12px;
    border: var(--border-gold);
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

.close-modal:hover {
    color: var(--color-primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border-radius: 6px;
    font-family: inherit;
}

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

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.3), rgba(10, 14, 23, 0.9));
    z-index: 2;
}

/* Hero Section Alignment */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('assets/hero_bg_premium.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    /* Explicitly centered */
    max-width: 900px;
    /* Wider for better centering */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Flexbox centering */
    justify-content: center;
}

/* Trusted Clients */
.clients-section {
    background: var(--color-surface);
    padding: 4rem 0;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.client-logo-card {
    background: white;
    /* Ensure visibility */
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 200px;
    transition: transform 0.3s ease;
}

.client-logo-card img {
    max-height: 80%;
    max-width: 100%;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Project Gallery (Scrollable) */
.gallery-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 2rem 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg);
}

.gallery-item {
    min-width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1rem 1rem;
}

/* Logo Fixes for Marquee */
.logo-item {
    background: rgba(255, 255, 255, 0.9);
    /* White bg for logos */
    padding: 5px 15px;
    border-radius: 4px;
    height: 60px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: none;
    /* Removed grayscale to "visible properly" */
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, var(--color-primary), #fff, var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: var(--border-gold);
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* Services / Nutrients */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

/* Footer */
footer {
    background: #05070a;
    padding: 4rem 0 2rem;
    border-top: var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    height: 120px !important;
    /* Increased size as requested */
    width: auto;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    /* 3D Highlight Effect */
    transform: perspective(500px) rotateX(5deg) translateZ(0);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.footer-brand img:hover {
    transform: perspective(500px) rotateX(0deg) scale(1.1) translateZ(10px);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

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

.footer-nav h4 {
    color: var(--color-text);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
}

.copyright {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    header .container {
        padding: 0 1rem;
    }

    .logo img {
        height: 70px;
    }

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

@media (max-width: 768px) {
    header {
        width: 100%;
        left: 0;
        transform: none;
        top: 0;
        border-radius: 0;
        padding: 0.5rem 1rem;
        background: rgba(10, 14, 23, 0.98);
        /* Less transparent on mobile for readability */
        border: none;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    header.scrolled {
        width: 100%;
        top: 0;
        border-radius: 0;
    }

    /* Mobile Nav Layout */
    nav {
        justify-content: space-between;
    }

    .logo img {
        height: 90px;
        /* Properly sized for mobile header */
        transform: none;
        position: relative;
        top: auto;
        left: auto;
        /* Remove 3D effect on mobile for clarity */
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
        background: none;
        padding: 0;
        margin-right: auto;
        /* Push other elements to the right */
    }

    /* Force logo to stay same size/position on scroll in mobile */
    header.scrolled .logo img {
        height: 90px;
        transform: none;
    }

    /* Mobile Nav Layout */
    .mobile-toggle {
        display: block;
        order: 3;
        /* Ensure toggle is last */
    }

    header .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        order: 2;
        /* Ensure button is before toggle */
        margin-left: 0;
    }

    .nav-links {
        display: flex;
        /* Re-enable flex for the drawer content */
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden off-screen right */
        width: 70%;
        height: 100vh;
        background: rgba(5, 7, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1001;
        /* Behind toggle but above content */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    header .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

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

    .hero-content {
        padding: 6rem 1rem 2rem;
    }

    .about-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* Fix for 'Web low section' - Increasing logo size/visibility in general if needed */
/* Ensure the logo in the 'minivar' (scrolled state) is visible and not cut off */
header.scrolled .logo img {
    height: 75px;
}


/* New About Page Styles */
.about-hero {
    padding-bottom: 2rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--color-surface);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-card .icon-box {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
    background: rgba(17, 22, 37, 0.3);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 1rem;
    display: block;
}

.step h4 {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.95)), url('assets/hero_bg_premium.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
    padding: 8rem 2rem;
    border-top: var(--border-gold);
    position: relative;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto 3rem;
}