/* ============================================
   ASENDIFY — PREMIUM AGENCY CSS
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0d0d0d;
    --bg-card: #111111;
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dim: rgba(212, 175, 55, 0.15);
    --gold-border: rgba(212, 175, 55, 0.25);
    --white: #f5f5f5;
    --gray: #9a9a9a;
    --gray-dark: #3a3a3a;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --nav-h: 80px;
    --container: 1200px;
    --radius: 12px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    background: var(--bg-primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    display: block;
}

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

input,
select,
textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

@media (max-width: 768px) {
    .reveal {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.35s;
}

.delay-4 {
    transition-delay: 0.5s;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #050505;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    padding: 14px 0;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), color var(--transition);
}

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

.btn-ghost .arrow {
    transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    padding: 13px 32px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.15);
}

/* ---- Section Shared ---- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.section-heading em {
    font-style: italic;
    color: var(--gold);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-sub {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(212, 175, 55, 0.08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    height: 50px;
    width: 50px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + 60px) 32px 100px;
    max-width: var(--container);
    margin: 0 auto;
}

.hero-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
}

@media (prefers-reduced-motion: no-preference) {
    .glow {
        animation: glowPulse 6s ease-in-out infinite alternate;
    }
}

.glow-1 {
    width: 500px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.578) 0%, transparent 70%);
    right: -200px;

}

@media (prefers-reduced-motion: no-preference) {
    .glow-1 {
        animation: glowPulse 6s ease-in-out infinite alternate, float 8s ease-in-out infinite;
    }
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.578) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
}

@media (prefers-reduced-motion: no-preference) {
    .glow-2 {
        animation: glowPulse 6s ease-in-out infinite alternate, floatReverse 10s ease-in-out infinite;
        animation-delay: -3s, 0s;
    }
}

.glow-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
}

@media (prefers-reduced-motion: no-preference) {
    .glow-3 {
        animation: glowPulseIntense 8s ease-in-out infinite, floatDiagonal 12s ease-in-out infinite;
        animation-delay: -2s, 0s;
    }
}

.glow-4 {
    width: 400px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, transparent 70%);
    bottom: 15%;
    right: 5%;
}

@media (prefers-reduced-motion: no-preference) {
    .glow-4 {
        animation: glowPulseIntense 7s ease-in-out infinite, swirl 15s linear infinite;
        animation-delay: -1s, 0s;
    }
}

@keyframes glowPulse {
    from {
        opacity: 0.35;
        transform: scale(1);
    }

    to {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes glowPulseIntense {
    0% {
        opacity: 0.25;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
    }

    100% {
        opacity: 0.25;
        transform: scale(0.95);
    }
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

@keyframes gridPulse {
    0% {
        opacity: 0.05;
    }

    50% {
        opacity: 0.15;
    }

    100% {
        opacity: 0.05;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Hero floating elements animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatReverse {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }
}

@keyframes floatDiagonal {
    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-15px) translateX(10px);
    }

    50% {
        transform: translateY(-25px) translateX(0px);
    }

    75% {
        transform: translateY(-15px) translateX(-10px);
    }
}

@keyframes swirl {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes shimmer {
    0% {
        filter: blur(120px) brightness(0.8);
    }

    50% {
        filter: blur(120px) brightness(1.2);
    }

    100% {
        filter: blur(120px) brightness(0.8);
    }
}

@keyframes particleFade {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@keyframes orbitSmall {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    animation: gridShift 8s linear infinite, gridPulse 6s ease-in-out infinite;
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

.animated-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.animated-particles::before,
.animated-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, transparent 70%);
    filter: blur(60px);
}

.animated-particles::before {
    width: 300px;
    height: 300px;
    top: 30%;
    right: 20%;
    animation: orbitSmall 20s linear infinite;
    opacity: 0.3;
}

.animated-particles::after {
    width: 250px;
    height: 250px;
    bottom: 25%;
    left: 15%;
    animation: orbitSmall 25s linear infinite reverse;
    opacity: 0.25;
}

.rotating-wheel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .rotating-wheel {
        animation: wheelRotate 30s linear infinite;
    }
}

/* Outer circle border */
.rotating-wheel::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.140);
    top: 0;
    left: 0;
}

/* Geometric radial pattern */
.rotating-wheel::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: 
        /* Radial lines - 12 segments */
        linear-gradient(0deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(45deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(90deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(225deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(270deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(315deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%),
        linear-gradient(360deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.2) 1px, transparent 1px, transparent 100%);

    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(50% 0%, 50% 100%, 0% 50%, 100% 50%);
}

/* Inner concentric circles */

.rotating-wheel .circle-2 {
    position: absolute;
    width: 60%;
    height: 60%;
    border: 1px solid rgba(212, 175, 55, 0.400);
    border-radius: 50%;
    top: 20%;
    left: 20%;
}

/* Radial spokes */
.rotating-wheel .spoke {
    position: absolute;
    width: 1px;
    height: 50%;
    background: rgba(212, 175, 55, 0.140);
    left: 50%;
    top: 0%;
    transform-origin: center 275px;
}

.rotating-wheel .spoke:nth-child(5) {
    transform: rotate(0deg);
}

.rotating-wheel .spoke:nth-child(6) {
    transform: rotate(45deg);
}

.rotating-wheel .spoke:nth-child(7) {
    transform: rotate(90deg);
}

.rotating-wheel .spoke:nth-child(8) {
    transform: rotate(135deg);
}

.rotating-wheel .spoke:nth-child(9) {
    transform: rotate(180deg);
}

.rotating-wheel .spoke:nth-child(10) {
    transform: rotate(225deg);
}

.rotating-wheel .spoke:nth-child(11) {
    transform: rotate(270deg);
}

.rotating-wheel .spoke:nth-child(12) {
    transform: rotate(315deg);
}

.rotating-wheel .spoke:nth-child(13) {
    transform: rotate(360deg);
}

@keyframes wheelRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    flex: 1;
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

@media (prefers-reduced-motion: no-preference) {
    .dot {
        animation: pulse 2s ease-in-out infinite;
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
    }
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

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

.hero-sub {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 80px;
    color: var(--gray);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    animation: scrollLine 2s ease-in-out infinite;
}

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

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

.hero-reel {
    flex-shrink: 0;
    margin-left: auto;
}

.reel-frame {
    width: 380px;
    height: 280px;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(13, 13, 13, 0.8) 100%);
    backdrop-filter: blur(10px);
    display: block;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

.reel-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.reel-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
}

.reel-frame:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.reel-frame:hover::before {
    opacity: 1;
}

.reel-play {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: background var(--transition);
}

.reel-play svg {
    width: 18px;
    height: 18px;
    margin-left: 3px;
}

.reel-frame:hover .reel-play {
    background: var(--gold-dim);
}

.reel-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
}

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

.about-body {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gray-dark);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-card);
    padding: 32px 28px;
    text-align: center;
    transition: background var(--transition);
}

.stat-card:hover {
    background: #161616;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
}

.about-visual {
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.av-inner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--bg-card) 100%);
    padding: 40px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.film-strip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

.film-strip span {
    display: block;
    width: 28px;
    height: 16px;
    border: 1px solid var(--gold-border);
    border-radius: 2px;
    background: rgba(212, 175, 55, 0.05);
}

.av-quote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--bg-card);
    padding: 44px 36px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
}

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

.service-card:hover {
    background: #141414;
}

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

.service-card:hover::after {
    width: 100%;
}

.sc-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    transition: transform var(--transition);
}

.sc-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .sc-icon {
    transform: scale(1.1);
}

.sc-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.sc-desc {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.sc-arrow {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity var(--transition), transform var(--transition);
    display: block;
}

.service-card:hover .sc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.work {
    padding: 120px 0;
    background: var(--bg-primary);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 56px;
}

.work-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.work-featured {
    grid-column: span 2;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.work-card .video-container {
    flex: 1 1 calc(50% - 8px);
    min-width: 280px;
}

.work-featured .video-container {
    padding-bottom: 50%;
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius);
}

.instagram-container {
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.instagram-container blockquote.instagram-media {
    margin: 0 auto !important;
    width: calc(100% - 2px) !important;
    max-width: 540px !important;
    min-width: 300px !important;
}


.wc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    transition: background var(--transition);
    z-index: 2;
}

.work-card:hover .wc-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.work-card:hover .wc-play {
    opacity: 1;
    transform: scale(1);
}

.wc-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    z-index: 1;
}

.wc-label {
    position: absolute;
    bottom: 20px;
    left: 24px;
    right: 24px;
    z-index: 3;
}

.wc-cat {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.wc-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

.work-featured .wc-title {
    font-size: 1.4rem;
}

.work-cta {
    text-align: center;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg-primary);
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 56px 64px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, var(--bg-card) 60%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    text-align: center;
}

.tc-stars {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.tc-quote {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 40px;
}

.tc-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.tc-name {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    text-align: left;
}

.tc-role {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: left;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold-border);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition), border-color var(--transition);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
}

.slider-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray-dark);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-heading em {
    font-style: italic;
    color: var(--gold);
}

.cta-sub {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 48px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.contact-body {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ci-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--gray);
}

.ci-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 48px;
}

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

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

.form-group:last-of-type {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 300;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-border);
    background: rgba(212, 175, 55, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(154, 154, 154, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 280px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

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

.social-link:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: var(--gold-dim);
}

.footer-title {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 500;
}

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

.footer-links a {
    color: var(--gray);
    font-size: 0.88rem;
    transition: color var(--transition);
}

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

.footer-contact li {
    color: var(--gray);
    font-size: 0.88rem;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(154, 154, 154, 0.5);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.globe-wrapper {
    position: relative;
    width: 50%;
    height: 500px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.08);
    background: #050505;
}

#globe-container {
    width: 100%;
    height: 100%;
}

.globe-location {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.globe-location .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 15px #d4af37;
}

@media(max-width:980px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .globe-wrapper {
        height: 420px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

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

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

    .work-featured {
        grid-column: span 2;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .hero-form {
        width: 100%;
    }

    .hero-reel {
        margin-left: 0;
        margin-top: 40px;
    }

    .reel-frame {
        width: 340px;
        height: 250px;
    }

    .instagram-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {

    :root {
        --nav-h: 68px;
        --transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --transition-slow: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(5, 5, 5, 0.97);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.08);
        transform: translateY(-110%);
        transition: transform var(--transition-slow);
        z-index: 999;
        align-items: flex-start;
        display: none;
    }

    .nav-links.open {
        transform: translateY(0);
        display: flex;
    }

    .nav-link {
        font-size: 1rem;
    }

    .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        gap: 16px;
    }

    /* Reduce animations and effects on mobile for better performance */
    .glow {
        filter: blur(80px);
    }

    .glow-1 {
        width: 400px;
        height: 400px;
    }

    .glow-2 {
        width: 350px;
        height: 350px;
    }

    .navbar.scrolled {
        box-shadow: none;
    }

    .hero {
        padding: calc(var(--nav-h) + 48px) 20px 80px;
    }

    .hero-heading {
        font-size: clamp(3rem, 12vw, 5rem);
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .hero-form {
        width: 100%;
    }

    .hero-actions {
        gap: 20px;
    }

    .about {
        padding: 80px 0;
    }

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

    .services {
        padding: 80px 0;
    }

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

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

    .work {
        padding: 80px 0;
    }

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

    .work-featured {
        grid-column: span 1;
    }

    .work-card {
        flex-direction: column;
    }

    .work-card .video-container {
        min-width: 100%;
    }

    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 28px;
    }

    .tc-quote {
        font-size: 1.1rem;
    }

    .cta-banner {
        padding: 72px 0;
    }

    .contact {
        padding: 80px 0;
    }

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

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

    .footer {
        padding: 60px 0 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-heading {
        font-size: clamp(2rem, 7vw, 2.8rem);
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: clamp(2.8rem, 14vw, 4rem);
    }

    .reel-frame {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 16/9;
    }

    .instagram-container {
        min-height: 280px;
    }

    .instagram-container blockquote.instagram-media {
        min-width: 260px !important;
        max-width: calc(100% - 2px) !important;
    }

    .btn-primary,
    .btn-ghost,
    .btn-outline {
        font-size: 0.85rem;
    }

    .stat-num {
        font-size: 2.4rem;
    }

    .tc-author {
        flex-direction: column;
        text-align: center;
    }

    .tc-name,
    .tc-role {
        text-align: center;
    }

    .cta-banner {
        zoom: 75%;
    }

    .formspree {
        width: 100%;
        max-width: 70%;
    }
}

/* ---- Channels Carousel Styles ---- */
.channels-carousel {
    margin-top: 64px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    padding-right: 24px;
}

.channel-card {
    display: block;
    flex: 0 0 calc(25% - 18px);
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.channel-card:hover {
    transform: translateY(-8px);
    background: #141414;
    border-color: var(--gold);
}

.channel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 600;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.channel-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.channel-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.channel-subscribers {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.channel-link {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform var(--transition);
}

.channel-link:hover {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .channel-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .reel-frame {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 16/9;
    }

    .instagram-container {
        min-height: 300px;
    }

    .instagram-container blockquote.instagram-media {
        max-width: calc(100% - 2px) !important;
        min-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .channel-card {
        flex: 0 0 calc(50% - 12px);
        padding: 24px 16px;
    }

    .channel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
    }

    .channel-name {
        font-size: 1.1rem;
    }
}

/* ---- Noise Texture Overlay ---- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* ---- Selection ---- */
::selection {
    background: rgba(212, 175, 55, 0.25);
    color: var(--white);
}

/* ============================================
   HERO FORM STYLES
   ============================================ */
.hero-form {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

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

#contactForm input,
#contactForm select,
#contactForm textarea {
    transition: all var(--transition);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: rgba(154, 154, 154, 0.6);
}

#contactForm select option {
    background: #050505;
    color: #f5f5f5;
}

#formMessage {
    padding: 12px 16px !important;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    animation: slideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* ---- Globe Container ---- */
.globe-container {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

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

.globe-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2));
}

/* Responsive adjustments for globe and form layout */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1.2fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .globe-container {
        max-height: 300px;
        margin-bottom: 20px;
    }

    .globe-svg {
        max-width: 300px;
    }

    .hero-form {
        width: 100%;
    }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   PREMIUM CONTACT FORM & HERO ADDITIONS
   ============================================ */

.premium-form-container {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
    box-sizing: border-box;
}

.form-title {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 500;
}

/* Custom Select Wrapper for Dropdown Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "▼";
    font-size: 0.8rem;
    color: var(--gold);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Base input styles using the existing .form-group pattern but refined */
#contactForm .form-group {
    margin-bottom: 20px;
}

#contactForm label {
    color: #ccc;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
    text-transform: none;
    letter-spacing: normal;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
}

#contactForm textarea {
    resize: vertical;
    min-height: 120px;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Submit Button Adjustments */
#contactForm .btn-primary {
    margin-top: 10px;
    padding: 18px;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Animated Globe SVG */
@keyframes spinGlobe {
    from {
        transform: rotate(0deg) scale(1);
    }

    to {
        transform: rotate(360deg) scale(1);
    }
}

.globe-svg {
    width: 100%;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
    animation: spinGlobe 45s linear infinite;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .premium-form-container {
        padding: 32px 24px;
    }

    .globe-container {
        max-height: 250px;
        margin-bottom: 30px;
    }

    .globe-svg {
        max-width: 200px;
    }
}