/* 
====================================
CSS VARIABLES & DESIGN TOKENS
Color Psychology:
  - Navy (#0d1b2a): Trust, authority, stability, professionalism
  - Gold (#c9a84c): Success, luxury, premium, achievement
  - White (#f1f5f9): Clarity, purity, sophistication
  - Warm tones: Subtle warmth builds emotional connection
==================================== 
*/
:root {
    /* Primary Palette - Navy Authority */
    --bg-dark: #0d1b2a;
    --bg-darker: #070e18;
    --bg-section: #0a1422;
    --card-bg: #112240;
    --card-hover: #1a3358;

    /* Text Hierarchy - Legibility & Contrast */
    --text-main: #e6edf6;
    --text-bright: #ffffff;
    --text-muted: #7e9abb;
    --text-subtle: #4d6a8a;

    /* Accent - Gold Premium (evokes success & luxury) */
    --accent-gold: #c9a84c;
    --accent-cream: #e8d48b;
    --accent-warm: #d4b65a;
    --accent-glow: rgba(201, 168, 76, 0.35);
    --accent-glow-strong: rgba(201, 168, 76, 0.6);

    /* Trust Signal - Cool Blue (reinforces reliability) */
    --trust-blue: #3b82f6;
    --trust-glow: rgba(59, 130, 246, 0.2);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s var(--ease-out-expo);
    --transition-slow: 0.6s var(--ease-out-expo);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
}

/* 
====================================
KEYFRAME ANIMATIONS
==================================== 
*/
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-1deg); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes border-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

@keyframes scale-in {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 10px rgba(201, 168, 76, 0), 0 0 20px rgba(201, 168, 76, 0); }
    50% { text-shadow: 0 0 15px rgba(201, 168, 76, 0.3), 0 0 30px rgba(201, 168, 76, 0.15); }
}

@keyframes card-shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes rotate-gradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes breathe {
    0%, 100% { box-shadow: 0 0 8px rgba(201, 168, 76, 0.1); }
    50% { box-shadow: 0 0 18px rgba(201, 168, 76, 0.25); }
}

@keyframes slide-up-bounce {
    0% { transform: translateY(40px); opacity: 0; }
    60% { transform: translateY(-5px); opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-40px) translateX(20px) scale(1.2); opacity: 1; }
    100% { transform: translateY(-80px) translateX(-10px) scale(0.8); opacity: 0; }
}

@keyframes slide-up {
    from { transform: translateY(60px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-in-left {
    from { transform: translateX(-60px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-in-right {
    from { transform: translateX(60px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

@keyframes dash-draw {
    to { stroke-dashoffset: 0; }
}

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

@keyframes particle-float {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(var(--tx, 100px), var(--ty, -200px)) scale(0); opacity: 0; }
}

@keyframes magnetic-hover {
    0% { transform: translate(0, 0); }
    25% { transform: translate(2px, -2px); }
    50% { transform: translate(-1px, 1px); }
    75% { transform: translate(1px, 2px); }
    100% { transform: translate(0, 0); }
}

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

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

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

/* Subtle background texture for depth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 168, 76, 0.04), transparent),
                radial-gradient(ellipse 60% 40% at 80% 100%, rgba(59, 130, 246, 0.03), transparent);
    pointer-events: none;
    z-index: 0;
}

::selection {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-bright);
    line-height: 1.15;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* 
====================================
UTILITY CLASSES & COMPONENTS
==================================== 
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

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

.bg-darker {
    background-color: var(--bg-darker);
}

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

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-cream) 50%, var(--accent-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* Typography Tools */
.section-tag {
    display: inline-block;
    padding: 0.35rem 1.25rem;
    background: rgba(201, 168, 76, 0.08);
    color: var(--accent-gold);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 2.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(4px);
    animation: breathe 3s ease-in-out infinite;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
    animation: text-glow 4s ease-in-out infinite;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.center {
    text-align: center;
}
.center .section-desc {
    margin: 0 auto 3rem auto;
}

/* === ENHANCED BUTTONS WITH MICRO-INTERACTIONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

/* Button ripple effect */
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm), var(--accent-cream));
    background-size: 200% 200%;
    color: var(--bg-dark);
    box-shadow: 0 4px 20px var(--accent-glow),
                inset 0 1px 0 rgba(255,255,255,0.2);
    animation: gradient-shift 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px var(--accent-glow-strong),
                inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 0 25px rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* === SCROLL REVEAL ANIMATIONS (Multiple Directions) === */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s var(--ease-out-expo);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.9s var(--ease-out-expo);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.9s var(--ease-out-expo);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s var(--ease-spring);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* 
====================================
HEADER & NAVIGATION
==================================== 
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
    padding: 1.25rem 0;
}

.header.scrolled {
    padding: 0.6rem 0;
    background: rgba(7, 14, 24, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.3s var(--ease-spring);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.03);
}

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

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 6px;
    transition: all 0.4s var(--ease-spring);
    box-shadow: none;
    mix-blend-mode: lighten;
}

.logo:hover .logo-img {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 20px var(--accent-glow);
}

/* Pill-style navigation */
.nav-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 0.45rem 0.5rem;
    backdrop-filter: blur(12px);
}

.nav-cta {
    flex-shrink: 0;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 100px !important;
}

.about-logo-img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    transition: transform 0.6s var(--ease-out-expo);
}

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

.footer-logo-img {
    height: 65px;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

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

.nav-list {
    display: flex;
    gap: 0.25rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0.85rem;
    border-radius: 100px;
    transition: all 0.3s ease;
}

/* Hover effect for pill-nav links */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 168, 76, 0.08);
    border-radius: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

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

.nav-link:hover::after {
    opacity: 1;
}

.nav-link.nav-active {
    color: var(--accent-gold);
}

.nav-link.nav-active::after {
    opacity: 1;
    background: rgba(201, 168, 76, 0.12);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: rotate(90deg);
}

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

/* Layered atmospheric background */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.glow-orb.top-left {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--accent-gold), rgba(201, 168, 76, 0.2));
    top: -150px;
    left: -200px;
    animation: float 8s ease-in-out infinite;
}

.glow-orb.bottom-right {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--trust-blue), rgba(59, 130, 246, 0.1));
    bottom: -250px;
    right: -200px;
    animation: float-reverse 10s ease-in-out infinite;
}

/* Noise texture overlay for depth */
.hero::before {
    content: '';
    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='3'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Decorative grid lines */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3) 30%, rgba(0,0,0,0.3) 70%, transparent);
    pointer-events: none;
    z-index: -1;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 100px;
    background: rgba(201, 168, 76, 0.05);
    backdrop-filter: blur(10px);
    font-size: 0.8125rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    animation: pulse-subtle 3s ease-in-out infinite, float-gentle 4s ease-in-out infinite;
}

.badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse-gold 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

/* 
====================================
ABOUT SECTION
==================================== 
*/
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.8), rgba(13, 27, 42, 0.6));
    border: 1px solid rgba(201, 168, 76, 0.08);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

/* Corner decoration */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
    border-radius: var(--radius-xl) 0 0 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--accent-gold);
    border-right: 2px solid var(--accent-gold);
    border-radius: 0 0 var(--radius-xl) 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.image-wrapper:hover::before,
.image-wrapper:hover::after {
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

.image-wrapper:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 40px rgba(201, 168, 76, 0.05);
}

.placeholder-img {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.08);
}

.stats-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--card-bg), rgba(17, 34, 64, 0.95));
    padding: 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 168, 76, 0.15);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(20px);
    animation: float 6s ease-in-out infinite;
}

.stats-number {
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-text {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list i {
    color: var(--accent-gold);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

/* 
====================================
SERVICES SECTION
==================================== 
*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

/* Gradient border on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(201, 168, 76, 0.3), transparent 70%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    background: var(--card-hover);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3),
                0 0 30px rgba(201, 168, 76, 0.05);
}

/* Shine sweep on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.07), transparent);
    transform: skewX(-15deg);
    transition: none;
}
.service-card:hover::after {
    animation: card-shine 0.8s ease forwards;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    transition: all 0.5s var(--ease-spring);
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-warm));
    color: var(--bg-dark);
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--accent-cream);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* 
====================================
WHY US SECTION
==================================== 
*/
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: all 0.4s var(--ease-out-expo);
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.1);
    transform: translateX(8px);
}

.benefit-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.4s var(--ease-spring);
}

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    color: var(--bg-dark);
    transform: rotate(-5deg) scale(1.08);
}

.benefit-title {
    font-size: 1.125rem;
    margin-bottom: 0.3rem;
}

.benefit-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.glow-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--accent-gold), var(--accent-cream), var(--accent-gold)) border-box;
    background-size: 100% 100%, 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

/* 
====================================
PORTFOLIO SECTION
==================================== 
*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
    position: relative;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 27, 42, 0.8), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.portfolio-card:hover::after {
    opacity: 1;
}

.portfolio-img-wrapper {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.5), rgba(7, 14, 24, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.placeholder-img.sm {
    font-size: 4rem;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .placeholder-img.sm {
    transform: scale(1.15);
}

.portfolio-content {
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 2;
}

.portfolio-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.portfolio-title {
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: var(--accent-cream);
}

.center-action {
    text-align: center;
}

/* 
====================================
VIDEO SHOWCASE
==================================== 
*/
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.video-thumbnail {
    background: linear-gradient(135deg, var(--card-bg), var(--bg-section));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.video-thumbnail:hover {
    border-color: rgba(201, 168, 76, 0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

.video-thumbnail::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.video-thumbnail.reel-format::before {
    padding-bottom: 177.77%;
}

.play-btn {
    position: absolute;
    width: 65px;
    height: 65px;
    background: rgba(201, 168, 76, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: all 0.4s var(--ease-spring);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.video-thumbnail:hover .play-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    color: var(--bg-dark);
    transform: scale(1.15);
    box-shadow: 0 0 30px var(--accent-glow);
    animation: pulse-gold 1.5s ease-in-out infinite;
}

.video-title {
    text-align: center;
    font-size: 1.1rem;
}

/* 
====================================
TESTIMONIALS SECTION
==================================== 
*/
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg, var(--card-hover), var(--card-bg));
    padding: 2.75rem 2rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 168, 76, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.quote-icon {
    position: absolute;
    top: -22px;
    left: 2rem;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-dark);
    box-shadow: 0 8px 25px var(--accent-glow);
    transition: transform 0.4s var(--ease-spring);
}

.testimonial-card:hover .quote-icon {
    transform: rotate(-10deg) scale(1.1);
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    margin-top: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

/* 
====================================
CTA SECTION (High-Conversion)
==================================== 
*/
.cta-box {
    background: linear-gradient(135deg, rgba(17, 34, 64, 0.9), rgba(13, 27, 42, 0.95));
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: var(--radius-xl);
    padding: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

/* Animated gradient top bar */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-cream), var(--accent-gold), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Glow behind CTA */
.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08), transparent 70%);
    right: -50px;
    top: -100px;
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

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

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* 
====================================
CONTACT SECTION
==================================== 
*/
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.contact-methods {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(17, 34, 64, 0.5);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s var(--ease-out-expo);
}

.contact-item:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateX(8px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.08);
    color: var(--accent-gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s var(--ease-spring);
    flex-shrink: 0;
}

.contact-item:hover .icon-box {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    color: var(--bg-dark);
    transform: rotate(-5deg);
}

.contact-item h5 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--text-bright);
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--card-bg), rgba(17, 34, 64, 0.6));
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

/* Subtle animated border */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), transparent 50%, rgba(201, 168, 76, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.95rem 1.1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0,0,0,0.4);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1),
                0 0 20px rgba(201, 168, 76, 0.05);
}

.form-group:focus-within label {
    color: var(--accent-gold);
}

/* 
====================================
FOOTER
==================================== 
*/
.footer {
    background: var(--bg-darker);
    padding-top: 5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
}

/* Decorative top glow */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.4;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    color: var(--text-muted);
    margin: 1rem 0 2rem 0;
    max-width: 400px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.4s var(--ease-spring);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-cream));
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-4px) rotate(-5deg);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px;
}

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

.footer-links ul a {
    color: var(--text-muted);
    position: relative;
    display: inline-block;
}

.footer-links ul a::before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.footer-links ul a:hover {
    color: var(--accent-gold);
    padding-left: 18px;
}

.footer-links ul a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-subtle);
    font-size: 0.85rem;
}

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

.footer-legal a {
    color: var(--text-subtle);
}

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

/* 
====================================
SCROLL PROGRESS BAR
==================================== 
*/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-cream));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* 
====================================
CUSTOM CURSOR TRAIL (Optional decoration)
==================================== 
*/
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

/* 
====================================
RESPONSIVE DESIGN (Media Queries)
==================================== 
*/
@media (max-width: 1024px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 3.5rem; }
    .about-grid, .why-us-grid, .contact-grid { gap: 2.5rem; }
    .video-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .header-container { position: relative; }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 14, 24, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        border-bottom: 1px solid rgba(201, 168, 76, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.5s var(--ease-out-expo);
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .menu-toggle { display: block; }

    .about-grid, .why-us-grid, .contact-grid { grid-template-columns: 1fr; }
    .why-us-image { grid-row: 1; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .footer-desc { margin: 1rem auto; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

    .hero-actions { flex-direction: column; }
    .cta-box { padding: 2.5rem 1.5rem; }

    .footer-links h4::after { margin: 0 auto; left: 50%; transform: translateX(-50%); }

    .cursor-glow { display: none; }
    
    .benefit-item:hover { transform: none; }
    .contact-item:hover { transform: none; }
    .leadership-grid { grid-template-columns: 1fr !important; }
}

/* Leadership card hover */
.leadership-card:hover {
    border-color: rgba(201, 168, 76, 0.3) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 168, 76, 0.08);
    transform: translateY(-8px);
}
