:root {
    --gold: #FFD700;
    --gold-dark: #d4af37;
    --bg: #090909;
    --surface: #141414;
    --surface-2: #101010;
    --border: #232323;
    --text: #FFFFFF;
    --text-secondary: #aaaaaa;
    --ring: rgba(212, 175, 55, 0.35);
    --shadow: 0 18px 60px rgba(0,0,0,0.55);
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.35);
    --radius: 10px;
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}


/* ============== UTILITIES ============== */
:focus-visible {
    outline: 2px solid rgba(212,175,55,0.65);
    outline-offset: 3px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}


.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============== NAVBAR ============== */
.navbar {
    /* glassmorphism refinement */
    box-shadow: 0 12px 38px rgba(0,0,0,0.35);

    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 9, 9, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.25s ease, backdrop-filter 0.25s ease, background 0.25s ease;
}

.navbar.is-scrolled {
    backdrop-filter: blur(22px);
    background: rgba(9, 9, 9, 0.78);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Logo Image Styles */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 52px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.logo-link:hover .logo-img {
    opacity: 0.9;
}

/* Page Loader Logo Image */
.gd-loader-img {
    height: 72px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    box-shadow: 0 0 50px rgba(212,175,55,0.28);
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.3);
}

.gd-text {
    transform: rotate(-45deg);
    color: #080808;
    font-weight: 900;
    font-size: 30px;
    line-height: 1;
}

.logo {
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 48px;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s ease;
    position: relative;
    padding-bottom: 6px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(255,215,0,0.2));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255,215,0,0.25);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,215,0,0.35);
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    background: var(--gold);
    display: block;
}

@media (min-width: 768px) {
    .nav-menu { display: flex; }
}

/* ============== BUTTONS ============== */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #080808;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #080808;
}

/* ============== HERO ============== */
.hero, .projects-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(5,5,5,0.75), rgba(5,5,5,0.9)), 
                url('https://picsum.photos/id/1015/2000/1200') center/cover;
    position: relative;
    text-align: center;
}

.projects-hero {
    min-height: 70vh;
}

.section-label {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 24px;
}

.gold-glow {
    text-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
    max-width: 680px;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    color: #d0d0d0;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.hero-scroll-indicator {
    margin-top: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 11px;
    text-transform: uppercase;
    opacity: 0.85;
}

.hero-scroll-line {
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,215,0,0.85), rgba(255,215,0,0.05));
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 16px;
    background: rgba(255,255,255,0.8);
    animation: gdScrollLine 1.7s ease-in-out infinite;
}

@keyframes gdScrollLine {
    0% { transform: translateY(-18px); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(52px); opacity: 0; }
}

/* ============== SECTIONS ============== */
.section {
    padding: 120px 0;
}

.bg-dark {
    background-color: var(--bg);
}

.section-title {
    font-size: clamp(2.1rem, 4.2vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 48px;
    letter-spacing: -0.6px;
}

/* ============== SERVICE CARDS ============== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)), var(--surface);
    padding: 52px 44px;
    border: 1px solid var(--border);
    transition: transform 0.45s var(--ease-smooth), border-color 0.35s ease, box-shadow 0.45s var(--ease-smooth);
    height: 100%;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.service-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.06;
    color: var(--gold);
    line-height: 1;
}

.service-icon {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 28px;
}

.card h3 {
    font-size: 1.55rem;
    margin-bottom: 12px;
    line-height: 1.25;
}

.card-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* ============== TIMELINE / PROCESS ============== */
/* Kept old .steps/.step rules out of the critical path by migrating Index.html markup to .timeline/.process. */

.timeline {
    position: relative;
    padding: 18px 0;
    max-width: 820px;
    margin: 0 auto;
}

.timeline-rail {
    position: absolute;
    left: 31px;
    top: 38px;
    bottom: 38px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.05), rgba(212,175,55,0.65), rgba(212,175,55,0.05));
    border-radius: 999px;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 8px 0 8px 0;
}

.timeline-node {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 2px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.45);
    color: var(--gold);
    font-weight: 900;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 rgba(212,175,55,0);
    transition: all 0.35s ease;
}

.timeline-card {
    flex: 1;
    background: rgba(10,10,10,0.55);
    border: 1px solid rgba(26,26,26,0.95);
    padding: 24px 22px;
    border-radius: 6px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.25);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(500px circle at 20% 0%, rgba(212,175,55,0.20), transparent 50%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.timeline-item:hover .timeline-card {
    border-color: rgba(212,175,55,0.55);
    transform: translateY(-4px);
}

.timeline-item:hover .timeline-card::before {
    opacity: 1;
}

.timeline-item:hover .timeline-node {
    background: rgba(212,175,55,0.18);
    box-shadow: 0 0 0 6px rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.7);
}

.timeline-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.timeline-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.meta-chip {
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid rgba(212,175,55,0.25);
    background: rgba(0,0,0,0.15);
    padding: 8px 12px;
    border-radius: 999px;
}

/* Process cards */
.process {
    max-width: 980px;
    margin: 0 auto;
    padding: 6px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    background: rgba(10,10,10,0.55);
    border: 1px solid rgba(26,26,26,0.95);
    border-radius: 8px;
    padding: 26px 22px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.18);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: radial-gradient(550px circle at 0% 0%, rgba(212,175,55,0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212,175,55,0.55);
}

.process-card:hover::after {
    opacity: 1;
}

.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.process-num {
    width: 44px;
    height: 44px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.45);
    color: var(--gold);
    font-weight: 900;
    flex-shrink: 0;
}

.process-label {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    text-align: right;
}

.process-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
}

.process-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.deliverable {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.22);
    background: rgba(0,0,0,0.18);
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .timeline-rail {
        left: 26px;
    }
    .timeline-item {
        gap: 16px;
    }
    .timeline-node {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
    }
    .timeline-card {
        padding: 20px 16px;
    }
}

/* ============== PROJECTS GRID (Used on both pages) ============== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
}


.project-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)), var(--surface);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.45s var(--ease-smooth), border-color 0.35s ease, box-shadow 0.45s var(--ease-smooth);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.project-image {
    min-height: 200px;
    height: auto;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.project-image img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    transition: transform 0.8s ease;
    display: block;
}

/* Carousel for multiple images */
.project-image-carousel {
    position: relative;
}

.project-image-carousel .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    opacity: 0;
}

.project-image-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.9);
    color: #080808;
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
}

.carousel-dot.active {
    background: var(--gold);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Modal Carousel */
.modal-carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.modal-carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
}

.modal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    opacity: 0.7;
    z-index: 10;
}

.modal-carousel-btn:hover {
    background: rgba(255, 215, 0, 0.95);
    color: #080808;
    opacity: 1;
}

.modal-carousel-prev {
    left: 12px;
}

.modal-carousel-next {
    right: 12px;
}

.modal-carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.modal-carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
}

.modal-carousel-dot.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.modal-image-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    z-index: 10;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-category {
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 64px);
    width: fit-content;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin: 18px 32px 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255,215,0,0.32);
    border-radius: 999px;
    background: rgba(9,9,9,0.72);
    backdrop-filter: blur(6px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-title {
    font-size: 1.35rem;
    padding: 0 32px 28px;
    line-height: 1.3;
}

/* Project Info (for Past Projects page) */
.project-info {
    padding: 0 32px 32px;
}

.project-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.view-project {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.view-project:hover {
    background: var(--gold);
    color: #080808;
}

/* Filters (Past Projects) */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 40px 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    color: #080808;
    border-color: var(--gold);
}

/* ============== MODAL (Past Projects) ============== */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 900px;
    width: 90%;
    background: var(--surface);
    border: 1px solid var(--gold);
    max-height: 90vh;
    overflow: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.modal-image {
    min-height: 300px;
    max-height: 70vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 70vh;
}

.modal-body {
    padding: 48px;
}

.modal-category {
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    padding: 24px;
    background: rgba(0,0,0,0.3);
}

/* ============== CTA ============== */
.cta-section {
    padding: 140px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

/* ============== FOOTER ============== */
footer {
    padding: 100px 0 60px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 60px;
}

.footer-heading {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============== ANIMATIONS (Fast) ============== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.38s ease, transform 0.38s ease;
    filter: none;
}

.card, .project-card, .step {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-image img {
    transition: transform 0.8s ease;
}

.btn {
    transition: all 0.3s ease;
}

/* Extra micro-animations */
.scroll-glow{
    position: relative;
}

.scroll-glow::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius: inherit;
    background: radial-gradient(400px circle at 50% 20%, rgba(212,175,55,0.18), transparent 55%);
    opacity:0;
    transition: opacity .35s ease;
    pointer-events:none;
}

.scroll-glow.is-visible::before{
    opacity:1;
}



/* Hover Effects */
.card{
    overflow:hidden;
}

/* Shine/gloss removed (disable the gdSheen / hover gloss pseudo-elements) */
.card::before,
.card::after {
    content: none;
    display: none;
}


.card:hover { transform: translateY(-8px); }

/* Disable any remaining shine-hover class hooks */
.shine-hover::before,
.shine-hover::after {
    content: none;
    display: none;
}


.project-card:hover { transform: translateY(-12px); border-color: var(--gold); box-shadow: 0 18px 50px rgba(212,175,55,0.15), 0 26px 68px rgba(0,0,0,0.45); }

/* Navbar */
.navbar { transition: transform 0.25s ease; }


/* Responsive */
@media (max-width: 768px) {
    .hero, .projects-hero { padding: 120px 0 80px; }
    .section { padding: 80px 0; }
    .step { flex-direction: column; gap: 20px; }
    .btn { width: 100%; text-align: center; }
    .btn-group { flex-direction: column; gap: 14px; }
    .card, .project-card, .process-card, .timeline-card { border-radius: 8px; }
    .section-title { margin-bottom: 40px; }

    .project-image {
        height: 240px;
    }

    .project-category {
        max-width: calc(100% - 32px);
        margin: 14px 16px 8px;
        font-size: 11px;
        letter-spacing: 1.1px;
        padding: 7px 10px;
    }

    .project-title {
        padding: 0 16px 20px;
    }

    .project-info {
        padding: 0 16px 20px;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .navbar .btn {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(9,9,9,0.96);
        border: 1px solid rgba(255,215,0,0.25);
        border-radius: 10px;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu .nav-link {
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .navbar.mobile-open .nav-menu {
        max-height: 300px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}

/* All Projects Link (Homepage) */
.all-projects-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.all-projects-link:hover {
    border-bottom: 1px solid var(--gold);
    color: white;
    transform: translateX(4px);
}

.all-projects-link:hover::after {
    content: "→";
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Make sure the flex container works well */
.flex.justify-between.items-end {
    align-items: flex-end;
}
/* ============== OUR SKILLS PAGE ============== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.skill-card {
    background: var(--surface);
    padding: 48px 40px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.skill-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
}

.skill-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.skill-card h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.skill-list {
    list-style: none;
    margin-top: 20px;
}

.skill-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.skill-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    text-align: center;
}

.tool-item {
    background: var(--surface-2);
    padding: 20px 16px;
    border: 1px solid var(--border);
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s;
}

.tool-item:hover {
    background: var(--gold);
    color: #080808;
    border-color: var(--gold);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 12px;
}
/* ============== SCHEDULE PAGE ============== */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}

.calendar-week {
    padding: 20px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.calendar-week.available {
    border-color: var(--gold);
}

.calendar-week.booked {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendar-week.selected {
    background: var(--gold);
    color: #080808;
    border-color: var(--gold);
}

.legend {
    display: flex;
    gap: 32px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.legend-item span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.available { background: var(--gold); }
.booked { background: #333; }

.selected-weeks {
    min-height: 60px;
    padding: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.selected-pill {
    background: var(--gold);
    color: #080808;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* Form Styles */
.form-panel input,
.form-panel textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: white;
    border-radius: 4px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.w-full {
    width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
/* Date Picker Enhancements */
.selected-dates {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.date-pill {
    background: var(--gold);
    color: #080808;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.remove-date {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.8;
}

.remove-date:hover {
    opacity: 1;
    color: #000;
}

/* Flatpickr overrides for dark theme */
.flatpickr-calendar {
    background: var(--surface);
    border-color: var(--border);
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: var(--gold) !important;
    color: #080808 !important;
}

/* ============== GLOBAL EFFECTS (All pages) ============== */

/* Custom scrollbar */
*::-webkit-scrollbar { width: 12px; }
*::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); }
*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(212,175,55,0.65), rgba(212,175,55,0.25));
    border-radius: 999px;
    border: 2px solid rgba(0,0,0,0.35);
}

* { scrollbar-color: rgba(212,175,55,0.75) rgba(255,255,255,0.03); scrollbar-width: thin; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.25));
    z-index: 2000;
    box-shadow: 0 0 24px rgba(212,175,55,0.25);
    transition: width 0.08s linear;
}

/* Animated grid background (site-wide) */
body::after{
    content:"";
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:-1;
    background:
      radial-gradient(ellipse at 50% 10%, rgba(255,215,0,0.09), transparent 58%),
      radial-gradient(circle at 10% 80%, rgba(255,215,0,0.08), transparent 35%),
      radial-gradient(circle at 85% 25%, rgba(255,255,255,0.04), transparent 30%);
    opacity:0.55;
    mix-blend-mode: normal;
}

/* Golden noise texture overlay */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
    background-size: 220px 220px;
    opacity: 0.08;
    mix-blend-mode: overlay;
}


body::before {
    /* grid background */

    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(212,175,55,0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(212,175,55,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 20%, rgba(0,0,0,1), rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 75%);
    opacity: 0.55;
    z-index: -2;
    pointer-events: none;
    animation: gdGridShift 14s linear infinite;
}

@keyframes gdGridShift {
    0% { transform: translateY(0px); }
    100% { transform: translateY(64px); }
}

/* Mouse spotlight */
.spotlight {
    mix-blend-mode: screen;
    filter: saturate(1.2);

    position: fixed;
    top: 0;
    left: 0;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.22), rgba(212,175,55,0.06) 35%, rgba(212,175,55,0) 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    /* JS moves this element so its center follows the cursor */
    transform: translate3d(-9999px, -9999px, 0);
    transition: opacity 0.25s ease;
}

/* Custom cursor */
.gd-cursor, .gd-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3000;
    transform: translate3d(-9999px,-9999px,0);
    will-change: transform;
}

.gd-cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212,175,55,0.95);
    box-shadow: 0 0 18px rgba(212,175,55,0.35);
    opacity: 0.9;
}

.gd-cursor-ring {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.55);
    background: rgba(212,175,55,0.06);
    mix-blend-mode: screen;
    opacity: 0.9;
}

/* Magnetic targets */
.magnetic {
    position: relative;
    transition: transform 0.15s ease;
    will-change: transform;
}

/* Cursor states */
.gd-cursor.is-link {
    transform: translate3d(-9999px,-9999px,0) scale(0.9);
}

.gd-cursor-ring.is-link {
    transform: translate3d(-9999px,-9999px,0) scale(1.8);
    border-color: rgba(255,215,0,0.9);
}

@media (hover: none) {
    .gd-cursor, .gd-cursor-ring { display: none; }
    .spotlight { display: none; }
}

/* Motion toggle + dynamic modes */
.motion-toggle {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 4000;
    border: 1px solid rgba(255,215,0,0.45);
    background: rgba(9,9,9,0.78);
    color: var(--gold);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

body.reduced-motion-manual *,
body.reduced-motion-manual *::before,
body.reduced-motion-manual *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
}

body.konami-mode::after {
    background:
      radial-gradient(ellipse at 50% 10%, rgba(95,255,235,0.16), transparent 58%),
      radial-gradient(circle at 10% 80%, rgba(178,95,255,0.15), transparent 35%),
      radial-gradient(circle at 85% 25%, rgba(255,95,194,0.12), transparent 30%);
    opacity: 0.8;
    transition: background 0.5s ease, opacity 0.5s ease;
}

:root[data-theme-time="morning"] {
    --gold: #ffcf5c;
}

:root[data-theme-time="day"] {
    --gold: #FFD700;
}

:root[data-theme-time="evening"] {
    --gold: #f4b63f;
}

:root[data-theme-time="night"] {
    --gold: #d8b04b;
}

/* Page loader */
.gd-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 50% 20%, rgba(212,175,55,0.10), transparent 60%),
                rgba(5,5,5,0.96);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
}

.gd-loader.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.gd-loader-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.gd-loader-img {
    height: 62px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 0 50px rgba(212,175,55,0.28);
}

.gd-loader-mark {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(212,175,55,1), rgba(212,175,55,0.35));
    transform: rotate(45deg) scale(0.9);
    box-shadow: 0 0 50px rgba(212,175,55,0.28);
    animation: gdLogoReveal 1.1s cubic-bezier(.2,.9,.2,1) infinite alternate;
}

@keyframes gdLogoReveal {
    from { filter: brightness(0.9); transform: rotate(45deg) scale(0.9); }
    to { filter: brightness(1.15); transform: rotate(45deg) scale(1.03); }
}

.gd-loader-title {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gd-loader-line {
    width: min(520px, 78vw);
    height: 4px;
    border-radius: 999px;
    background: rgba(212,175,55,0.15);
    overflow: hidden;
    position: relative;
}

.gd-loader-line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-60%);
    background: linear-gradient(90deg, transparent, rgba(212,175,55,1), rgba(212,175,55,0.2), transparent);
    animation: gdLoaderSweep 1.15s ease-in-out infinite;
}

@keyframes gdLoaderSweep {
    0% { transform: translateX(-60%); opacity: 0.6; }
    55% { opacity: 1; }
    100% { transform: translateX(60%); opacity: 0.6; }
}



/* Floating particles host */
.particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(212,175,55,0.25));
    background: rgba(212,175,55,0.7);
    animation-name: gdParticleFloat;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes gdParticleFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(var(--rot));
        opacity: 0;
    }
    10% { opacity: 1; }
    60% {
        transform: translate3d(var(--drift), -120px, 0) rotate(calc(var(--rot) * 0.6));
        opacity: 0.45;
    }
    100% {
        transform: translate3d(calc(var(--drift) * 0.8), -220px, 0) rotate(calc(var(--rot) * 1.2));
        opacity: 0;
    }
}

/* FAQ */
[data-faq] [data-faq-button] {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border: 1px solid var(--border);
    padding: 18px 20px;
    border-radius: 8px;
    text-align: left;
    color: var(--text);
    font-weight: 600;
    letter-spacing: 0.2px;
}

[data-faq] [data-faq-panel] {
    overflow: hidden;
    max-height: 0px;
    transition: max-height 0.35s ease;
}

[data-faq].open [data-faq-panel] {
    border-top: 1px solid rgba(212,175,55,0.25);
}

[data-faq-panel] {
    padding: 0 20px;
}

/* Industries marquee */
.industries-section {
    position: relative;
    overflow: hidden;
}

.industry-marquee-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 12px;
    background: rgba(255,255,255,0.01);
}

.industry-marquee-wrap::before,
.industry-marquee-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.industry-marquee-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.industry-marquee-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.industry-marquee {
    display: flex;
    width: max-content;
    animation: gdMarquee 24s linear infinite;
}

.industry-marquee:hover {
    animation-play-state: paused;
}

.industry-track {
    display: flex;
    gap: 20px;
    padding: 18px 8px;
}

.industry-track span {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,215,0,0.35);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    white-space: nowrap;
    text-shadow: 0 0 16px rgba(255,215,0,0.22);
}

@keyframes gdMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Why Us / Video / Gallery */
.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-section .video-card {
    border: 1px solid rgba(255,215,0,0.28);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.video-section video {
    display: block;
    width: 100%;
    height: min(62vh, 640px);
    object-fit: cover;
    filter: contrast(1.05) saturate(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.1), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px;
}

.gallery-item {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,215,0,0.2);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: none;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,215,0,0.5);
    box-shadow: 0 24px 50px rgba(0,0,0,0.4);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Interactive Journey Hologram */
.journey-section {
    position: relative;
}

.journey-hologram {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.28);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
        rgba(10,10,10,0.72);
    box-shadow:
        0 24px 80px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(255,255,255,0.04),
        0 0 50px rgba(255,215,0,0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    padding: 54px 42px;
    isolation: isolate;
}

.journey-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,215,0,0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,215,0,0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
    animation: journeyGridShift 12s linear infinite;
    pointer-events: none;
}

@keyframes journeyGridShift {
    from { transform: translateY(0); }
    to { transform: translateY(42px); }
}

.journey-mouse-light {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.22), rgba(255,215,0,0.08) 40%, rgba(255,215,0,0) 72%);
    transform: translate3d(-9999px, -9999px, 0);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.journey-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,215,0,0.85);
    box-shadow: 0 0 12px rgba(255,215,0,0.45);
    animation: journeyParticleFloat 8s ease-in-out infinite;
    z-index: 0;
}

.journey-particles span:nth-child(1) { top: 14%; left: 12%; animation-delay: 0s; }
.journey-particles span:nth-child(2) { top: 22%; right: 16%; animation-delay: 1.1s; }
.journey-particles span:nth-child(3) { top: 72%; left: 20%; animation-delay: 2.1s; }
.journey-particles span:nth-child(4) { top: 80%; right: 24%; animation-delay: 0.7s; }
.journey-particles span:nth-child(5) { top: 48%; left: 46%; animation-delay: 1.7s; }
.journey-particles span:nth-child(6) { top: 34%; right: 44%; animation-delay: 2.6s; }

@keyframes journeyParticleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.35; }
    50% { transform: translateY(-16px) scale(1.2); opacity: 1; }
}

.journey-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.journey-orbit {
    position: absolute;
    border: 1px solid rgba(255,215,0,0.22);
    border-radius: 999px;
    filter: drop-shadow(0 0 10px rgba(255,215,0,0.2));
}

.journey-orbit-a {
    width: 62%;
    height: 52%;
    left: 19%;
    top: 22%;
    animation: journeyOrbitSpin 14s linear infinite;
}

.journey-orbit-b {
    width: 48%;
    height: 38%;
    left: 26%;
    top: 30%;
    animation: journeyOrbitSpinReverse 10s linear infinite;
}

@keyframes journeyOrbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes journeyOrbitSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.journey-node {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.45);
    background: rgba(9,9,9,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-shadow: 0 0 14px rgba(255,215,0,0.45);
    box-shadow: 0 0 24px rgba(255,215,0,0.18);
    transition: transform 0.25s ease;
}

.journey-node i {
    font-size: 1.25rem;
}

.journey-node-instagram { left: 14%; top: 42%; }
.journey-node-facebook { right: 14%; top: 42%; }

.journey-node-connect {
    width: 106px;
    height: 106px;
    left: calc(50% - 53px);
    top: calc(50% - 53px);
    border-radius: 16px;
    border-color: rgba(255,215,0,0.7);
    background: linear-gradient(155deg, rgba(255,215,0,0.2), rgba(255,215,0,0.07));
    box-shadow: 0 0 30px rgba(255,215,0,0.3), inset 0 0 16px rgba(255,215,0,0.15);
}

.journey-node-connect span {
    font-size: 12px;
    letter-spacing: 1.6px;
    font-weight: 700;
}

.journey-links {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.journey-links path {
    fill: none;
    stroke: rgba(255,215,0,0.45);
    stroke-width: 1.3;
    stroke-dasharray: 6 8;
    animation: journeyLinkDash 8s linear infinite;
}

@keyframes journeyLinkDash {
    to { stroke-dashoffset: -56; }
}

.journey-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.journey-card {
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(255,215,0,0.26);
    border-radius: 14px;
    padding: 28px 24px;
    background: linear-gradient(140deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 14px 34px rgba(0,0,0,0.35);
    transition: transform 0.35s var(--ease-smooth), border-color 0.3s ease, box-shadow 0.35s ease;
}

.journey-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255,215,0,0.58);
    box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 34px rgba(255,215,0,0.16);
}

.journey-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 14px;
    background: rgba(255,215,0,0.08);
}

.journey-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.journey-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.98rem;
}

@media (max-width: 992px) {
    .journey-cards {
        grid-template-columns: 1fr;
    }

    .journey-network {
        opacity: 0.78;
    }

    .journey-node-instagram { left: 10%; }
    .journey-node-facebook { right: 10%; }
}

@media (max-width: 768px) {
    .journey-hologram {
        padding: 34px 20px;
    }

    .journey-node {
        width: 54px;
        height: 54px;
    }

    .journey-node-connect {
        width: 90px;
        height: 90px;
        left: calc(50% - 45px);
        top: calc(50% - 45px);
    }

    .journey-node-connect span {
        font-size: 10px;
    }

    .journey-orbit-a,
    .journey-orbit-b {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journey-grid-bg,
    .journey-orbit-a,
    .journey-orbit-b,
    .journey-links path,
    .journey-particles span {
        animation: none !important;
    }
}

/* Testimonials (simple slider) */
[data-testimonial-slider] [data-testimonial-slide] {
    display: none;
    animation: fadeSlideIn 0.45s var(--ease-smooth);
}

[data-testimonial-slider] [data-testimonial-slide].active {
    display: block;
    transform: scale(1);
}

[data-testimonial-slider] [data-testimonial-slide] {
    transform: scale(0.985);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-testimonial-slider] .slider-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

[data-testimonial-slider] button[data-testimonial-prev],
[data-testimonial-slider] button[data-testimonial-next] {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

[data-testimonial-slider] button:hover {
    background: var(--gold);
    color: #080808;
}

[data-testimonial-slider] .slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

[data-testimonial-slider] .slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid rgba(255,215,0,0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}

[data-testimonial-slider] .slider-dot.active {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255,215,0,0.45);
}

