/* ============================================
   DAGRO DIGITAL - Premium Design System
   Out-of-the-box, bold, memorable
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors */
    --primary: #16552F;
    --primary-light: #1E6B3D;
    --primary-dark: #0D1F15;
    --primary-deep: #091510;
    --gold: #C5A572;
    --gold-bright: #D4AF37;
    --gold-muted: #A08050;
    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --cream: #FAF9F7;
    --black: #0a0a0a;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --text-light: #8a8a8a;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 48px;
    --space-xl: 80px;
    --space-2xl: 120px;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Cursor - Premium Touch */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--ease-smooth), opacity 0.15s;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(197, 165, 114, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1, clamp(48px, 8vw, 120px)); }
h2 { font-size: var(--fs-h2, clamp(36px, 5vw, 72px)); }
h3 { font-size: var(--fs-h3, clamp(28px, 3vw, 42px)); }
h4 { font-size: var(--fs-h4, clamp(20px, 2vw, 28px)); }

p {
    font-size: var(--fs-body, clamp(16px, 1.2vw, 18px));
    line-height: 1.8;
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--primary-dark);
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.container-wide {
    max-width: 1600px;
}

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

/* ============================================
   NAVIGATION - Floating & Bold
   ============================================ */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 40px;
    transition: all 0.5s var(--ease-smooth);
}

.nav-wrapper.scrolled {
    padding: 16px 40px;
}

.nav-wrapper.scrolled .nav-container {
    background: rgba(13, 31, 21, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 31, 21, 0.8);
    backdrop-filter: blur(20px);
    transition: all 0.5s var(--ease-smooth);
}

/* ============================================
   CUSTOM LOGO - Connected + Growth
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    position: relative;
}

.logo-svg {
    height: 32px;
    width: auto;
}

.logo-svg .logo-text-path {
    fill: var(--white);
}

.logo-svg .logo-connector {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawLine 1.5s ease forwards 0.5s;
}

.logo-svg .logo-growth {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: drawLine 0.8s ease forwards 1.2s;
}

.logo-svg .logo-growth-dot {
    fill: var(--gold);
    opacity: 0;
    animation: fadeIn 0.4s ease forwards 1.8s;
}

@keyframes drawLine {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.logo:hover .logo-connector,
.logo:hover .logo-growth {
    filter: drop-shadow(0 0 8px rgba(197, 165, 114, 0.6));
}

.logo:hover .logo-growth-dot {
    filter: drop-shadow(0 0 10px rgba(197, 165, 114, 0.8));
}

/* Enhanced Text Logo - Connected with Growth */
.logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.logo-text span:first-child {
    color: var(--white);
}

.logo-text span span {
    color: var(--white);
    position: relative;
}

/* Connector Line with Growth Arrow */
.logo-connector {
    display: inline-flex;
    align-items: center;
    margin: 0 6px 0 4px;
    position: relative;
    height: 24px;
}

.logo-connector-line {
    width: 24px;
    height: 2px;
    background: var(--gold);
    position: relative;
    animation: growLine 1.5s ease forwards;
    transform-origin: left;
}

@keyframes growLine {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.logo-connector-arrow {
    position: absolute;
    right: -3px;
    top: 50%;
    width: 0;
    height: 0;
    transform: translateY(-50%);
    border-left: 6px solid var(--gold);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    opacity: 0;
    animation: fadeArrow 0.4s ease forwards 1s;
}

@keyframes fadeArrow {
    0% { opacity: 0; transform: translateY(-50%) translateX(-4px); }
    100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}

/* Growth indicator */
.logo-growth {
    position: absolute;
    right: -8px;
    top: -12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: growthAppear 0.5s ease forwards 1.2s;
}

@keyframes growthAppear {
    0% { opacity: 0; transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo-growth-line {
    width: 2px;
    height: 12px;
    background: linear-gradient(to top, transparent, var(--gold));
}

.logo-growth-tip {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--gold);
    margin-bottom: 2px;
}

.logo-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-left: 8px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px rgba(197, 165, 114, 0.5); }
    50% { transform: scale(1.3); opacity: 0.8; box-shadow: 0 0 20px rgba(197, 165, 114, 0.8); }
}

/* Logo hover effects */
.logo:hover .logo-connector-line {
    box-shadow: 0 0 8px rgba(197, 165, 114, 0.6);
}

.logo:hover .logo-dot {
    animation: none;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(197, 165, 114, 0.8);
}

.logo:hover .logo-growth-line,
.logo:hover .logo-growth-tip {
    filter: drop-shadow(0 0 4px rgba(197, 165, 114, 0.6));
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transform: scale(0);
    transition: transform 0.4s var(--ease-smooth);
}

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

.nav-link:hover::before {
    transform: scale(1);
}

.nav-link.active {
    color: var(--primary-dark);
    background: var(--gold);
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    margin-left: 16px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

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

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

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

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-smooth);
}

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

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

/* ============================================
   HERO SECTIONS - Dramatic & Bold
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-home {
    background: var(--primary-dark);
}

/* Animated Background Grid */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(197, 165, 114, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 165, 114, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
    animation-delay: -10s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    opacity: 0.3;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.05); }
    50% { transform: translate(0, 50px) scale(0.95); }
    75% { transform: translate(-50px, -25px) scale(1.02); }
}

/* Grain Overlay */
.grain {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    padding: 160px 0 120px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-eyebrow-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
    max-width: 900px;
}

.hero-title .highlight {
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    opacity: 0.3;
    z-index: -1;
    transform: skewX(-12deg);
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(22px, 2.5vw, 32px);
    font-style: italic;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.9;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 48px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Magnetic Button */
.btn-magnetic {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s var(--ease-smooth);
}

.btn-magnetic:hover {
    transform: scale(1.02);
}

.btn-primary {
    color: var(--primary-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 30px rgba(197, 165, 114, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s var(--ease-smooth);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-outline {
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(197, 165, 114, 0.4);
    border-radius: var(--radius-sm);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(197, 165, 114, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.btn-outline:hover {
    border-color: var(--gold);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* Hero Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    opacity: 0.6;
}

.scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(400%); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    position: relative;
}

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

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

.section-cream {
    background: var(--off-white);
}

/* Section Headers */
.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.section-header.center .section-label::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

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

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

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
}

.section-header.center .section-description {
    margin: 0 auto;
}

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

/* ============================================
   SERVICES SECTION - Homepage Preview
   ============================================ */
.services-section {
    padding: var(--space-2xl) 0;
}

/* Bento Grid Layout - 2 rows, 5 services */
.services-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    transition: all 0.5s var(--ease-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 165, 114, 0.1);
    border-radius: var(--radius-lg);
    transition: border-color 0.5s var(--ease-smooth);
}

.service-card:hover::before {
    border-color: rgba(197, 165, 114, 0.4);
}

/* Card Variants */
.service-card.card-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.service-card.card-light {
    background: var(--white);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.service-card.card-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
}

/* Card Sizes - 2 row layout */
.service-card.large {
    grid-column: span 2;
    padding: 48px;
}

.service-card.medium {
    grid-column: span 2;
}

.service-card.small {
    grid-column: span 2;
}

/* First row: 3 cards */
.services-bento .service-card:nth-child(1),
.services-bento .service-card:nth-child(2),
.services-bento .service-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row: 2 cards centered */
.services-bento .service-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.services-bento .service-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Card Content */
.service-card-number {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

.card-dark .service-card-number {
    color: var(--gold);
}

.card-light .service-card-number {
    color: var(--primary);
}

.card-gold .service-card-number {
    color: var(--primary-dark);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
    color: var(--gold);
}

.card-light .service-card-icon {
    color: var(--primary);
}

.card-gold .service-card-icon {
    color: var(--primary-dark);
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1;
}

.service-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.card-dark h3 {
    color: var(--white);
}

.card-light h3 {
    color: var(--primary-dark);
}

.card-gold h3 {
    color: var(--primary-dark);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.card-light p {
    color: var(--text-gray);
}

.card-gold p {
    color: rgba(13, 31, 21, 0.7);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s var(--ease-smooth);
}

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

.card-light .service-card-link {
    color: var(--primary);
}

.card-gold .service-card-link {
    color: var(--primary-dark);
}

.service-card:hover .service-card-link {
    gap: 16px;
}

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

/* Card Hover Effects */
.service-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(197, 165, 114, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card.card-light:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-section {
    padding: var(--space-2xl) 0;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.value-content {
    max-width: 540px;
}

.value-quote {
    position: relative;
    padding-left: 32px;
    margin: 40px 0;
}

.value-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold), var(--gold-muted));
    border-radius: 2px;
}

.value-quote blockquote {
    font-family: var(--font-accent);
    font-size: 28px;
    font-style: italic;
    color: var(--primary-dark);
    line-height: 1.5;
}

.value-visual {
    position: relative;
}

.value-image-stack {
    position: relative;
    height: 600px;
}

.value-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.value-image-1 {
    width: 80%;
    height: 70%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 1;
}

.value-image-2 {
    width: 60%;
    height: 50%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.stat-large {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--primary-dark);
    opacity: 0.7;
    margin-top: 8px;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 16px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.floating-badge-1 {
    top: 20%;
    right: -20px;
}

.floating-badge-2 {
    bottom: 30%;
    left: -20px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

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

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: var(--space-2xl) 0;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    animation: scroll 30s linear infinite;
}

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

.testimonial-card {
    flex-shrink: 0;
    width: 500px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 165, 114, 0.3);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
}

.author-info span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(197, 165, 114, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 48px;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--black);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

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

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
    margin-top: 24px;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

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

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

.footer-column a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

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

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 165, 114, 0.1);
}

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

/* ============================================
   PAGE HERO VARIANTS
   ============================================ */
.hero-page {
    min-height: 50vh;
    padding-top: 180px;
    padding-bottom: 120px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
}

.hero-page .hero-content {
    padding: 60px 0 40px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-page .hero-title {
    font-size: clamp(44px, 7vw, 88px);
    color: var(--white);
    margin-bottom: 28px;
}

.hero-page .hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-page .hero-description {
    font-size: 19px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.hero-page .hero-eyebrow {
    justify-content: center;
    margin-bottom: 24px;
}

.hero-page .hero-eyebrow-text {
    color: var(--gold);
}

/* Service detail pages hero */
.service-hero {
    min-height: 55vh;
    padding-bottom: 100px;
}

.service-hero .hero-content {
    padding: 60px 0 40px;
    text-align: left;
    max-width: none;
    margin: 0;
}

.service-hero .hero-eyebrow {
    justify-content: flex-start;
}

.service-hero .hero-description {
    margin: 0;
    max-width: 750px;
}

.service-hero .hero-buttons {
    margin-top: 40px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-section {
    padding: var(--space-2xl) 0;
}

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

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

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

.contact-item-text span {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
    text-decoration: none;
    margin: 0;
}

.contact-item-text a:hover {
    color: var(--gold-muted);
}

/* Form Styling */
.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: var(--white);
    border-color: var(--gold);
}

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

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

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

.form-submit {
    margin-top: 32px;
}

.form-submit .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro {
    padding: var(--space-2xl) 0;
}

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

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.about-content h2 {
    color: var(--primary-dark);
    margin-bottom: 32px;
}

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

/* Values Section */
.values-section {
    padding: var(--space-2xl) 0;
}

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

.value-card {
    padding: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(197, 165, 114, 0.3);
    transform: translateY(-8px);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

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

.value-card h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 16px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.service-hero {
    background: var(--primary-dark);
}

.service-content {
    padding: var(--space-2xl) 0;
}

.service-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.service-intro-text h2 {
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.service-intro-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-sidebar {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: fit-content;
}

.service-sidebar h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.service-sidebar ul {
    list-style: none;
}

.service-sidebar li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 15px;
    color: var(--text-gray);
}

.service-sidebar li:last-child {
    border: none;
}

.service-sidebar li svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

/* Process Section */
.process-section {
    padding: var(--space-xl) 0;
}

/* Service Page Process - Horizontal Cards */
.service-content .process-section .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-content .process-section .process-step {
    text-align: left;
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.4s var(--ease-smooth);
}

.service-content .process-section .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 165, 114, 0.3);
}

.service-content .process-section .process-step::after {
    display: none;
}

.service-content .process-section .process-number {
    width: 48px;
    height: 48px;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.service-content .process-section .process-step h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-content .process-section .process-step p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Homepage Process - Original Style with better connection */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -16px;
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-dark);
}

.process-step h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--text-gray);
}

/* Service Process Responsive */
@media (max-width: 1024px) {
    .service-content .process-section .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .service-content .process-section .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-content .process-section .process-step {
        padding: 24px 20px;
    }

    .service-content .process-section .process-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 16px;
        border-radius: 10px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-smooth);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE - TABLET (1200px and below)
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --space-xl: 60px;
        --space-2xl: 80px;
    }

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

    .service-card.large,
    .service-card.medium,
    .service-card.small {
        grid-column: span 2;
    }

    .services-bento .service-card:nth-child(1),
    .services-bento .service-card:nth-child(2),
    .services-bento .service-card:nth-child(3),
    .services-bento .service-card:nth-child(4),
    .services-bento .service-card:nth-child(5) {
        grid-column: span 2;
    }

    .services-bento .service-card:nth-child(5) {
        grid-column: 2 / span 2;
    }

    .value-grid {
        gap: 60px;
    }
}

/* ============================================
   RESPONSIVE - TABLET SMALL (1024px and below)
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --space-lg: 32px;
        --space-xl: 48px;
        --space-2xl: 64px;
    }

    .nav-links {
        display: none;
    }

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

    .nav-wrapper {
        padding: 16px 24px;
    }

    .nav-container {
        padding: 14px 20px;
    }

    h1 { font-size: clamp(36px, 7vw, 64px); }
    h2 { font-size: clamp(28px, 5vw, 48px); }
    h3 { font-size: clamp(22px, 3vw, 32px); }

    .hero-content {
        padding: 120px 0 80px;
    }

    .hero-page {
        min-height: 45vh;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-page .hero-content {
        padding: 50px 0 30px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .value-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .process-step::after {
        display: none;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .service-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-sidebar {
        padding: 32px;
    }

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

    .btn-magnetic {
        padding: 16px 32px;
        font-size: 14px;
    }

    .contact-form {
        padding: 40px 32px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (768px and below)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --space-sm: 12px;
        --space-md: 16px;
        --space-lg: 24px;
        --space-xl: 40px;
        --space-2xl: 56px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation Mobile */
    .nav-wrapper {
        padding: 12px 16px;
    }

    .nav-container {
        padding: 12px 16px;
        border-radius: 12px;
    }

    .logo-text {
        font-size: 14px;
        letter-spacing: 0.05em;
    }

    .logo-connector {
        margin: 0 4px;
    }

    .logo-connector-line {
        width: 16px;
    }

    .logo-dot {
        width: 5px;
        height: 5px;
        margin-left: 6px;
    }

    .mobile-menu-btn {
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 24px;
    }

    /* Mobile Menu Panel */
    .mobile-menu a {
        font-size: 32px;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
    }

    .hero-home {
        min-height: 100svh;
    }

    .hero-content {
        padding: 100px 0 60px;
    }

    .hero-page {
        min-height: 40vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-page .hero-content {
        padding: 40px 0 24px;
    }

    .hero-page .hero-title {
        font-size: clamp(32px, 9vw, 48px);
    }

    h1 { font-size: clamp(32px, 9vw, 48px); }
    h2 { font-size: clamp(24px, 6vw, 36px); }
    h3 { font-size: clamp(20px, 4vw, 28px); }
    h4 { font-size: clamp(18px, 3vw, 22px); }

    .hero-eyebrow {
        margin-bottom: 20px;
    }

    .hero-eyebrow-line {
        width: 40px;
    }

    .hero-eyebrow-text {
        font-size: 11px;
        letter-spacing: 0.2em;
    }

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

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-magnetic {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 14px;
    }

    .btn-magnetic svg {
        width: 16px;
        height: 16px;
    }

    /* Hero Background Elements Mobile */
    .hero-orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .hero-orb-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }

    .hero-orb-3 {
        width: 150px;
        height: 150px;
    }

    .hero-blob {
        width: 350px;
        height: 350px;
        opacity: 0.1;
    }

    .scroll-indicator {
        display: none;
    }

    /* Services Section Mobile */
    .services-section {
        padding: var(--space-lg) 0 var(--space-xl);
    }

    .services-bento {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-card.large,
    .service-card.medium,
    .service-card.small,
    .services-bento .service-card:nth-child(1),
    .services-bento .service-card:nth-child(2),
    .services-bento .service-card:nth-child(3),
    .services-bento .service-card:nth-child(4),
    .services-bento .service-card:nth-child(5) {
        grid-column: span 1;
    }

    .service-card {
        padding: 28px 24px;
    }

    .service-card-number {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .service-card-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }

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

    .service-card p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .service-card-link {
        font-size: 13px;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 32px;
    }

    .section-label {
        font-size: 11px;
        letter-spacing: 0.2em;
        margin-bottom: 12px;
    }

    .section-label::before,
    .section-header.center .section-label::after {
        width: 24px;
    }

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

    .section-description {
        font-size: 15px;
    }

    /* Value Section Mobile */
    .value-section {
        padding: var(--space-lg) 0;
    }

    .value-grid {
        gap: 28px;
    }

    .value-content {
        max-width: 100%;
    }

    .value-quote {
        padding-left: 20px;
        margin: 24px 0;
    }

    .value-quote blockquote {
        font-size: 20px;
    }

    .value-image-stack {
        height: 350px;
    }

    .value-image-2 {
        padding: 24px;
    }

    .stat-large {
        font-size: 48px;
    }

    .stat-label {
        font-size: 14px;
    }

    .floating-badge {
        padding: 12px 20px;
        font-size: 13px;
    }

    .floating-badge-1 {
        top: 10%;
        right: -10px;
    }

    .floating-badge-2 {
        bottom: 20%;
        left: -10px;
    }

    .badge-icon {
        width: 32px;
        height: 32px;
    }

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

    .badge-text {
        font-size: 12px;
    }

    /* Process Section Mobile */
    .process-section {
        padding: var(--space-xl) 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .process-number {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 20px;
        margin: 0;
    }

    .process-step h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Service Page Content Mobile */
    .service-content {
        padding: var(--space-xl) 0;
    }

    .service-intro {
        gap: 32px;
        margin-bottom: 48px;
    }

    .service-intro-text h2 {
        margin-bottom: 16px;
    }

    .service-intro-text h3 {
        font-size: 20px;
        margin-top: 32px !important;
    }

    .service-intro-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .service-sidebar {
        padding: 24px;
    }

    .service-sidebar h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .service-sidebar li {
        padding: 10px 0;
        font-size: 14px;
    }

    .service-sidebar li svg {
        width: 18px;
        height: 18px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .cta-title {
        margin-bottom: 20px;
    }

    .cta-description {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cta-glow {
        width: 400px;
        height: 200px;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: var(--space-xl) 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .contact-info p {
        font-size: 15px;
        margin-bottom: 28px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item-icon {
        width: 48px;
        height: 48px;
    }

    .contact-item-icon svg {
        width: 20px;
        height: 20px;
    }

    .contact-item-text span {
        font-size: 12px;
    }

    .contact-item-text a,
    .contact-item-text p {
        font-size: 15px;
    }

    .contact-form {
        padding: 24px 20px;
    }

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

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px 16px;
        font-size: 15px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-submit {
        margin-top: 24px;
    }

    /* About Section Mobile */
    .about-intro {
        padding: var(--space-xl) 0;
    }

    .about-grid {
        gap: 40px;
    }

    .about-image-main {
        aspect-ratio: 4/3;
    }

    .about-image-accent {
        width: 140px;
        height: 140px;
        bottom: -20px;
        right: -10px;
    }

    .about-content h2 {
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 15px;
        margin-bottom: 16px;
    }

    /* Values Section Mobile */
    .values-section {
        padding: var(--space-xl) 0;
    }

    .values-grid {
        gap: 16px;
    }

    .value-card {
        padding: 32px 24px;
    }

    .value-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

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

    .value-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .value-card p {
        font-size: 14px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: var(--space-xl) 0;
    }

    .testimonials-track {
        animation: none;
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-card {
        width: 100%;
        padding: 28px 24px;
    }

    .testimonial-quote-mark {
        font-size: 80px;
        top: 10px;
        left: 20px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .author-avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .author-info h4 {
        font-size: 14px;
    }

    .author-info span {
        font-size: 12px;
    }

    /* Footer Mobile */
    footer {
        padding: 48px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-top: 16px;
    }

    .footer-column h4 {
        font-size: 11px;
        margin-bottom: 16px;
    }

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

    .footer-column a {
        font-size: 14px;
    }

    .footer-contact a {
        gap: 10px;
    }

    .footer-contact svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

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

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-page .hero-title {
        font-size: clamp(26px, 9vw, 36px);
    }

    h1 { font-size: clamp(28px, 10vw, 40px); }

    .hero-description {
        font-size: 14px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .btn-magnetic {
        padding: 14px 20px;
        font-size: 13px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .process-step {
        gap: 16px;
    }

    .process-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .value-image-stack {
        height: 320px;
    }

    .about-image-accent {
        width: 120px;
        height: 120px;
    }

    .stat-large {
        font-size: 40px;
    }
}

/* ============================================
   OUT-OF-THE-BOX EFFECTS
   ============================================ */

/* Cursor Trail Effect */
.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-trail.active {
    opacity: 0.6;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(197, 165, 114, 0.5);
}

/* Marquee Ticker */
.marquee-section {
    background: var(--primary);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

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

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 48px;
    white-space: nowrap;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.05em;
}

.marquee-text em {
    font-style: italic;
    color: var(--gold);
}

.marquee-separator {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}

/* Morphing Blob */
.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    z-index: 1;
    filter: blur(60px);
}

.hero-blob svg {
    width: 100%;
    height: 100%;
}

.blob-path {
    fill: url(#blob-gradient);
    animation: morph 15s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        d: path("M440,320Q400,390,330,420Q260,450,180,410Q100,370,90,280Q80,190,150,130Q220,70,310,80Q400,90,450,170Q500,250,440,320Z");
    }
    25% {
        d: path("M420,340Q380,430,290,440Q200,450,130,380Q60,310,100,220Q140,130,230,100Q320,70,400,130Q480,190,420,340Z");
    }
    50% {
        d: path("M450,300Q430,400,340,430Q250,460,160,400Q70,340,90,240Q110,140,200,90Q290,40,380,100Q470,160,450,300Z");
    }
    75% {
        d: path("M430,330Q390,410,300,440Q210,470,140,390Q70,310,100,210Q130,110,220,80Q310,50,400,110Q490,170,430,330Z");
    }
}

/* 3D Tilt Cards */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card .service-card-icon {
    transition: transform 0.3s ease-out;
}

.service-card:hover .service-card-icon {
    transform: translateZ(30px) scale(1.05);
}

/* Animated Counters */
.stat-counter {
    display: inline-block;
}

.stat-counter .counter-value {
    font-family: var(--font-display);
    transition: all 0.3s ease;
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: charReveal 0.5s ease forwards;
}

@keyframes charReveal {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Enhanced Magnetic Buttons */
.btn-magnetic {
    position: relative;
    overflow: visible;
    will-change: transform;
}

.btn-magnetic span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-magnetic:hover span {
    transform: scale(1.02);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating Elements Animation Enhancement */
.floating-badge {
    animation: floatBadge 6s ease-in-out infinite;
}

.floating-badge-1 {
    animation-delay: 0s;
}

.floating-badge-2 {
    animation-delay: -3s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-5px) rotate(-1deg); }
    75% { transform: translateY(-15px) rotate(1deg); }
}

/* Glow Effects */
.glow-gold {
    box-shadow: 0 0 30px rgba(197, 165, 114, 0.3);
}

/* Shimmer Loading Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        rgba(197, 165, 114, 0) 0%,
        rgba(197, 165, 114, 0.3) 50%,
        rgba(197, 165, 114, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================
   PROCESS TIMELINE - Creative Redesign
   ============================================ */
.process-timeline-section {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.process-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.3), transparent);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold-muted), var(--gold));
    transform: translateX(-50%);
    opacity: 0.4;
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.5);
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.5);
}

.process-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-timeline-item:last-child {
    margin-bottom: 0;
}

.process-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    border: 3px solid var(--gold);
    box-shadow: 0 8px 30px rgba(22, 85, 47, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-pulse {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: timelinePulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes timelinePulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.process-timeline-item:hover .timeline-pulse {
    animation-duration: 1s;
}

.timeline-content {
    flex: 1;
    max-width: calc(50% - 68px);
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 1px solid rgba(197, 165, 114, 0.1);
    transform: rotate(45deg);
    border-right: none;
    border-top: none;
}

.process-timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
    border-left: none;
    border-bottom: none;
    border-right: 1px solid rgba(197, 165, 114, 0.1);
    border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.process-timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
}

.timeline-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 165, 114, 0.3);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.process-timeline-item:nth-child(even) .timeline-icon {
    margin-left: auto;
}

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

.timeline-content h4 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* Timeline Responsive */
@media (max-width: 900px) {
    .process-timeline-section {
        padding: 80px 0;
    }

    .process-timeline {
        padding: 40px 0;
    }

    .timeline-line {
        left: 28px;
    }

    .timeline-marker {
        left: 28px;
    }

    .timeline-number {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .timeline-pulse {
        width: 48px;
        height: 48px;
    }

    .process-timeline-item,
    .process-timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 80px;
        gap: 0;
    }

    .timeline-content,
    .process-timeline-item:nth-child(even) .timeline-content {
        max-width: 100%;
        text-align: left;
    }

    .timeline-content::before,
    .process-timeline-item:nth-child(odd) .timeline-content::before,
    .process-timeline-item:nth-child(even) .timeline-content::before {
        display: none;
    }

    .process-timeline-item:nth-child(even) .timeline-icon {
        margin-left: 0;
    }

    .timeline-content {
        padding: 24px;
        margin-top: 16px;
    }

    .timeline-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .process-timeline-section {
        padding: 60px 0;
    }

    .timeline-line {
        left: 24px;
    }

    .timeline-marker {
        left: 24px;
    }

    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
        border-width: 2px;
    }

    .timeline-pulse {
        width: 40px;
        height: 40px;
    }

    .process-timeline-item,
    .process-timeline-item:nth-child(even) {
        padding-left: 64px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

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

    .timeline-content h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 14px;
    }
}
