/* ================================================================================
   GLOBAL DESIGN HUB - REFINED DARK THEME
   ================================================================================ */

:root {
    --gold: #dbc078;
    --black: #000000;
    --teal: #013C44;
    --teal-light: #20B2AA;
    --white: #FFFFFF;
    --gray-light: #1a1a1a;
    --gray-mid: #cccccc;
    --gray-dark: #0a0a0a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

/* ================================================================================
   HEADER & NAVIGATION
   ================================================================================ */

header {
    background: var(--black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
    border-bottom: 1px solid rgba(219,192,120,0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.logo-accent {
    color: var(--gold);
}

.logo-underline {
    height: 2px;
    background: var(--gold);
    width: 0;
    transition: width 0.4s ease;
    transform-origin: left;
}

.logo:hover .logo-underline {
    width: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--gold);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

.showcase-link {
    color: var(--teal-light) !important;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(32,178,170,0.5);
    animation: showcaseGlow 2s ease-in-out infinite;
}

.showcase-link:hover {
    color: var(--teal-light) !important;
    text-shadow: 0 0 25px rgba(32,178,170,1), 0 0 40px rgba(32,178,170,0.6);
}

@keyframes showcaseGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(32,178,170,0.5); }
    60% { text-shadow: 0 0 20px rgba(32,178,170,0.8), 0 0 30px rgba(32,178,170,0.4); }
}

.bio-link {
    color: var(--gold) !important;
    font-weight: 600;
}

.cta-nav {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-nav:hover {
    background: var(--teal-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32,178,170,0.5);
}

.cta-nav::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ================================================================================
   HERO SECTION (INDEX PAGE)
   ================================================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 2rem 100px;
}

.hero-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-parallax.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: translateZ(0);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.80) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-tagline {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-highlight {
    background: linear-gradient(90deg, var(--gold) 0%, var(--teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: var(--gray-mid);
    line-height: 1.7;
    animation: fadeInUp 1.2s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease 0.6s both;
}

.globe-container {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0.85;
    pointer-events: none;
}

#globe-canvas {
    width: 100%;
    height: 100%;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================================
   BUTTONS
   ================================================================================ */

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: #E5C98F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219,192,120,0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ================================================================================
   PROMO BANNER
   ================================================================================ */

.promo-banner {
    background: var(--gold);
    color: var(--black);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -8px 16px rgba(0,0,0,0.3), 0 8px 16px rgba(0,0,0,0.3);
    z-index: 10;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.promo-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.promo-item {
    padding: 0 3rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.promo-banner:hover .promo-content {
    animation-play-state: paused;
}

/* ================================================================================
   TRUST BAR
   ================================================================================ */

.trust-bar {
    background: var(--teal);
    color: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.trust-item {
    padding: 1rem;
}

.trust-item-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.trust-item-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

.trust-statement {
    text-align: center;
    font-size: 1.05rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* ================================================================================
   INTRO STRIP
   ================================================================================ */

.intro-strip {
    background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.intro-strip-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-strip h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-strip p {
    font-size: 1.2rem;
    color: var(--gray-mid);
    line-height: 1.8;
}

.intro-strip strong {
    color: var(--teal-light);
    font-weight: 700;
}

/* ================================================================================
   EXPERIENCE SECTION
   ================================================================================ */

.experience {
    background: var(--black);
    padding: 5rem 2rem;
    position: relative;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-statement {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.4;
    margin-bottom: 2rem;
    font-style: italic;
}

.experience-detail {
    font-size: 1.2rem;
    color: var(--gray-mid);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ================================================================================
   SECTION BASE
   ================================================================================ */

.section {
    padding: 6rem 2rem;
    position: relative;
    background: var(--black);
}

.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--black));
    pointer-events: none;
}

.section:first-of-type::before {
    display: none;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray-mid);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-subline {
    font-size: 1.1rem;
    color: var(--gray-mid);
    text-align: center;
    margin-top: 3rem;
}

/* ================================================================================
   LEADERSHIP SECTION
   ================================================================================ */

.leadership {
    background: var(--gray-light);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.leadership-card {
    background: rgba(0,0,0,0.5);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border-left: 4px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.leadership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(219,192,120,0.3);
    background: rgba(0,0,0,0.7);
}

.leadership-card h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 700;
}

.leadership-card p {
    color: var(--gray-mid);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ================================================================================
   PARTNERSHIP SECTION
   ================================================================================ */

.partnership-premium {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

.partnership-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 40%, var(--teal) 100%);
    opacity: 0.95;
    z-index: 0;
}

.partnership-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.partnership-content-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.partnership-intro {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--gray-mid);
}

.integration-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.integration-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(219,192,120,0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.integration-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.integration-card p {
    line-height: 1.7;
    color: var(--gray-mid);
}

.partnership-note {
    margin-top: 3rem;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-mid);
}

/* ================================================================================
   PLATFORMS SECTION
   ================================================================================ */

.platforms {
    background: var(--gray-dark);
    color: var(--white);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-item {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(219,192,120,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-item:hover {
    background: rgba(219,192,120,0.1);
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(219,192,120,0.2);
}

.platform-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.platform-item p {
    color: var(--gray-mid);
    font-size: 0.95rem;
}

/* ================================================================================
   CLIENT LOGOS SECTION
   ================================================================================ */

.clients-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
    background: var(--gray-dark);
}

.clients-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/clients-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.1;
}

.clients-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(1,60,68,0.8) 100%);
    z-index: 1;
}

.clients-white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1.5;
    pointer-events: none;
}

.clients-section .section-container {
    position: relative;
    z-index: 2;
}

.clients-scroll-wrapper {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}
.clients-scroll-wrapper {
    position: relative;
    max-width: 1400px;   /* SAME width as your content */
    margin: 3rem auto 0;
    padding: 2.5rem 0;
    overflow: hidden;
    margin-top: 3rem;
    position: relative;

    /* NEW */
    padding: 0.5rem 0;
    border-radius: 5px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.65),
        inset 0 0 0 1px rgba(255,255,255,0.04);
}

.clients-scroll-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    pointer-events: none;
}

.clients-scroll {
    display: flex;
    gap: 4rem;
    animation: clientScroll 30s linear infinite;
    width: max-content;
}

.clients-scroll:hover {
    animation-play-state: paused;
}

@keyframes clientScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 200px;
    height: 100px;
    position: relative;

    /* NEW: force white background for transparent logos */
    /*background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    padding: 0.75rem;

    /* Preserve animation + hover smoothness */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-item:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.client-logo {
    max-width: 180px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;

    /* Preserve smooth hover transition */
    transition: all 0.3s ease;

    /* Preserve original depth shadow */
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.6))
            drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.clients-section.visible .client-logo-item {
    animation: logoBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes logoBounce {
    0% { opacity: 0; transform: translateY(50px) scale(0.8); }
    50% { transform: translateY(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ================================================================================
   SERVICES PAGE - HERO
   ================================================================================ */

.services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 0 2rem;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-parallax.jpg') center center / cover no-repeat;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.services-hero .hero-underline {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

.services-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--gray-mid);
}

/* ================================================================================
   SERVICES CHOOSER
   ================================================================================ */

.services-chooser {
    background: url('../images/services-chooser-bg.jpg') center center / cover no-repeat;
    color: var(--white); /* white text by default */
    position: relative;
    padding: 6rem 2rem;
}

.services-chooser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* optional dark overlay for readability */
    z-index: 0;
}

.services-chooser .section-container {
    position: relative;  /* ensures stacking above overlay */
    z-index: 1;          /* text sits above overlay */
}

.chooser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1; /* ensures cards sit above overlay */
}

/* Cards remain exactly as they are */
.chooser-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    transition: all 0.35s ease;
}

.chooser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--teal);
}

.chooser-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--teal);
}

.chooser-card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}
/* ================================================================================
   FAQ SECTION
   ================================================================================ */
.faq {
    background: var(--black);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(1,60,68,0.15);
    padding: 2rem;
    border-radius: 6px;
    border-left: 3px solid rgba(32,178,170,0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(1,60,68,0.25);
    border-left-color: var(--teal-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: var(--gray-mid);
    line-height: 1.7;
    font-size: 0.95rem;
}


/* ================================================================================
   CTA SECTION
   ================================================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================================================
   FOOTER
   ================================================================================ */

footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(219,192,120,0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--gray-mid);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--gray-mid);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(219,192,120,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
}
/* =========================
   MOBILE NAVIGATION
========================= */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav-menu {
    display: flex;
    gap: 2rem;
}

/* Mobile styles */
@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(5, 15, 20, 0.98);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    #nav-menu.open {
        right: 0;
    }

    #nav-menu li a {
        font-size: 1.2rem;
    }
}
/* =========================
   SERVICES HERO – MOBILE FIX
========================= */
@media (max-width: 768px) {
    .services-page .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .services-page .hero p {
        font-size: 1.1rem;
        color: #ffffff;
    }

    .services-page .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .services-page .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}
/* =========================
   GLOBAL MOBILE FIXES
========================= */

@media (max-width: 900px) {
    body {
        overflow-x: hidden;
    }

    .section-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    h1 {
        font-size: clamp(2rem, 5vw, 2.6rem);
    }

    h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    }
}
