/* ============================================
   GHORA DESIGN - Main Stylesheet
   Dark luxury portfolio theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --ghora-bg-primary: #0A0A0A;
    --ghora-bg-secondary: #111111;
    --ghora-bg-card: #161616;
    --ghora-bg-elevated: #1a1a1a;
    --ghora-accent: #C8A96E;
    --ghora-accent-light: #E0C38A;
    --ghora-accent-dark: #A88B4A;
    --ghora-text-primary: #FFFFFF;
    --ghora-text-secondary: #999999;
    --ghora-text-muted: #555555;
    --ghora-border: rgba(255, 255, 255, 0.06);
    --ghora-border-hover: rgba(255, 255, 255, 0.12);
    --ghora-overlay: rgba(10, 10, 10, 0.7);
    --ghora-overlay-heavy: rgba(10, 10, 10, 0.85);
    --ghora-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --ghora-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --ghora-radius-sm: 4px;
    --ghora-radius-md: 8px;
    --ghora-radius-lg: 16px;
    --ghora-radius-xl: 24px;
    --ghora-font-heading: 'Syne', sans-serif;
    --ghora-font-body: 'Inter', sans-serif;
    --ghora-font-accent: 'Space Grotesk', sans-serif;
    --ghora-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ghora-transition-fast: 0.2s ease;
    --ghora-transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ghora-container: 1400px;
    --ghora-gap: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.ghora-dark-theme {
    background-color: var(--ghora-bg-primary);
    color: var(--ghora-text-primary);
    font-family: var(--ghora-font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--ghora-accent);
    color: var(--ghora-bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--ghora-accent-dark);
    border-radius: 3px;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ghora-font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--ghora-text-primary);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    color: var(--ghora-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--ghora-accent);
    text-decoration: none;
    transition: color var(--ghora-transition-fast);
}

a:hover {
    color: var(--ghora-accent-light);
}

/* ---- Layout ---- */
.ghora-container {
    max-width: var(--ghora-container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.ghora-section {
    padding: clamp(60px, 10vw, 140px) 0;
}

.ghora-section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 80px);
}

.ghora-section-header h2 {
    margin-bottom: 16px;
}

.ghora-section-header .ghora-subtitle {
    font-family: var(--ghora-font-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ghora-accent);
    display: block;
    margin-bottom: 12px;
}

.ghora-section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ---- Divider ---- */
.ghora-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--ghora-accent), transparent);
    margin: 20px auto;
}

/* ---- Buttons ---- */
.ghora-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--ghora-font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--ghora-radius-sm);
    cursor: pointer;
    transition: all var(--ghora-transition);
    position: relative;
    overflow: hidden;
}

.ghora-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.ghora-btn:hover::before {
    left: 100%;
}

.ghora-btn-primary {
    background: var(--ghora-accent);
    color: var(--ghora-bg-primary);
}

.ghora-btn-primary:hover {
    background: var(--ghora-accent-light);
    color: var(--ghora-bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

.ghora-btn-outline {
    background: transparent;
    color: var(--ghora-text-primary);
    border: 1px solid var(--ghora-border-hover);
}

.ghora-btn-outline:hover {
    border-color: var(--ghora-accent);
    color: var(--ghora-accent);
    transform: translateY(-2px);
}

/* ---- Hero Section ---- */
.ghora-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ghora-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6);
}

.ghora-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
}

.ghora-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.ghora-hero-label {
    font-family: var(--ghora-font-accent);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ghora-accent);
    margin-bottom: 24px;
    display: inline-block;
}

.ghora-hero-title {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, var(--ghora-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ghora-hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--ghora-text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ghora-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ghora-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    animation: ghora-bounce 2s infinite;
}

.ghora-scroll-indicator span {
    font-family: var(--ghora-font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ghora-text-secondary);
}

.ghora-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--ghora-accent), transparent);
}

@keyframes ghora-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Navigation ---- */
.ghora-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--ghora-transition);
}

.ghora-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--ghora-border);
}

.ghora-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--ghora-container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

.ghora-logo {
    font-family: var(--ghora-font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ghora-text-primary);
    letter-spacing: -0.02em;
}

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

.ghora-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.ghora-nav-links a {
    font-family: var(--ghora-font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ghora-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    transition: color var(--ghora-transition-fast);
}

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

.ghora-nav-links a:hover,
.ghora-nav-links a.active {
    color: var(--ghora-text-primary);
}

.ghora-nav-links a:hover::after,
.ghora-nav-links a.active::after {
    width: 100%;
}

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

.ghora-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--ghora-text-primary);
    transition: all var(--ghora-transition-fast);
    border-radius: 1px;
}

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

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

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

@media (max-width: 768px) {
    .ghora-menu-toggle {
        display: flex;
    }

    .ghora-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--ghora-bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        transition: right var(--ghora-transition);
    }

    .ghora-nav-links.open {
        right: 0;
    }

    .ghora-nav-links a {
        font-size: 1.5rem;
    }
}

/* ---- Stats Bar ---- */
.ghora-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: var(--ghora-border);
    border: 1px solid var(--ghora-border);
    border-radius: var(--ghora-radius-md);
    overflow: hidden;
}

.ghora-stat-item {
    background: var(--ghora-bg-secondary);
    padding: 40px 30px;
    text-align: center;
    transition: background var(--ghora-transition);
}

.ghora-stat-item:hover {
    background: var(--ghora-bg-card);
}

.ghora-stat-number {
    font-family: var(--ghora-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ghora-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.ghora-stat-label {
    font-family: var(--ghora-font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ghora-text-muted);
}

/* ---- Services Cards ---- */
.ghora-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.ghora-service-card {
    background: var(--ghora-bg-secondary);
    border: 1px solid var(--ghora-border);
    border-radius: var(--ghora-radius-md);
    padding: 40px 32px;
    transition: all var(--ghora-transition);
    position: relative;
    overflow: hidden;
}

.ghora-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ghora-accent), transparent);
    opacity: 0;
    transition: opacity var(--ghora-transition);
}

.ghora-service-card:hover {
    border-color: var(--ghora-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--ghora-shadow);
}

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

.ghora-service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.ghora-service-card h4 {
    margin-bottom: 12px;
}

.ghora-service-card p {
    font-size: 0.9rem;
}

/* ---- Footer ---- */
.ghora-footer {
    background: var(--ghora-bg-secondary);
    border-top: 1px solid var(--ghora-border);
    padding: 80px 0 40px;
}

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

.ghora-footer h4 {
    font-size: 0.85rem;
    font-family: var(--ghora-font-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--ghora-text-primary);
}

.ghora-footer p,
.ghora-footer a {
    font-size: 0.9rem;
    color: var(--ghora-text-muted);
}

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

.ghora-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ghora-footer-bottom {
    border-top: 1px solid var(--ghora-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ghora-footer-bottom p {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .ghora-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

/* ---- Lightbox ---- */
.ghora-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--ghora-transition);
}

.ghora-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.ghora-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--ghora-radius-sm);
    box-shadow: var(--ghora-shadow-lg);
}

.ghora-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--ghora-bg-card);
    border: 1px solid var(--ghora-border);
    border-radius: 50%;
    color: var(--ghora-text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ghora-transition-fast);
}

.ghora-lightbox-close:hover {
    background: var(--ghora-accent);
    color: var(--ghora-bg-primary);
}

.ghora-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--ghora-bg-card);
    border: 1px solid var(--ghora-border);
    border-radius: 50%;
    color: var(--ghora-text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ghora-transition-fast);
}

.ghora-lightbox-nav:hover {
    background: var(--ghora-accent);
    color: var(--ghora-bg-primary);
}

.ghora-lightbox-prev { left: 30px; }
.ghora-lightbox-next { right: 30px; }

.ghora-lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.ghora-lightbox-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.ghora-lightbox-info span {
    font-family: var(--ghora-font-accent);
    font-size: 0.75rem;
    color: var(--ghora-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- Cursor Custom (Desktop only) ---- */
@media (hover: hover) and (pointer: fine) {
    .ghora-cursor {
        position: fixed;
        width: 12px;
        height: 12px;
        background: var(--ghora-accent);
        border-radius: 50%;
        pointer-events: none;
        z-index: 99999;
        mix-blend-mode: difference;
        transition: transform 0.15s ease, opacity 0.15s ease;
        opacity: 0;
    }

    .ghora-cursor.visible {
        opacity: 1;
    }

    .ghora-cursor.hover {
        transform: scale(4);
        opacity: 0.5;
    }
}

/* ---- Loading Screen ---- */
.ghora-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--ghora-bg-primary);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.ghora-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.ghora-loader-logo {
    font-family: var(--ghora-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ghora-text-primary);
    opacity: 0;
    animation: ghora-logo-reveal 1.2s ease forwards;
}

.ghora-loader-logo span {
    color: var(--ghora-accent);
}

@keyframes ghora-logo-reveal {
    0% { opacity: 0; transform: translateY(20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; }
}

/* ---- Utilities ---- */
.ghora-text-accent { color: var(--ghora-accent); }
.ghora-text-muted { color: var(--ghora-text-muted); }
.ghora-text-center { text-align: center; }
.ghora-mt-0 { margin-top: 0; }
.ghora-mb-0 { margin-bottom: 0; }
.ghora-hidden { display: none; }
.ghora-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* ============================================
   DYNAMIC SERVICES (srv-card)
   ============================================ */
.ghora-srv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ghora-srv-card { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; background: rgba(255,255,255,0.02); transition: transform 0.5s cubic-bezier(0.23,1,0.32,1); }
.ghora-srv-card:hover { transform: translateY(-8px) scale(1.01); }
.ghora-srv-border { position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: linear-gradient(135deg, rgba(200,169,110,0), rgba(200,169,110,0)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; transition: background 0.6s ease; pointer-events: none; }
.ghora-srv-card:hover .ghora-srv-border { background: linear-gradient(135deg, rgba(200,169,110,0.6), rgba(200,169,110,0) 50%, rgba(200,169,110,0.3)); }
.ghora-srv-glow { position: absolute; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%); pointer-events: none; opacity: 0; transition: opacity 0.4s ease; transform: translate(-50%,-50%); z-index: 0; }
.ghora-srv-card:hover .ghora-srv-glow { opacity: 1; }
.ghora-srv-content { position: relative; z-index: 1; padding: 44px 40px; }
.ghora-srv-number { font-family: var(--ghora-font-heading); font-size: 4.5rem; font-weight: 800; position: absolute; top: 20px; right: 30px; line-height: 1; color: rgba(255,255,255,0.03); transition: color 0.5s ease; pointer-events: none; }
.ghora-srv-card:hover .ghora-srv-number { color: rgba(200,169,110,0.08); }
.ghora-srv-content h4 { font-family: var(--ghora-font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; transition: color 0.3s ease; }
.ghora-srv-card:hover h4 { color: var(--ghora-accent-light); }
.ghora-srv-content p { font-size: 0.9rem; color: var(--ghora-text-secondary); line-height: 1.7; margin-bottom: 20px; max-width: 340px; }
.ghora-srv-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ghora-srv-tags span { font-family: var(--ghora-font-accent); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; color: var(--ghora-text-muted); transition: all 0.3s ease; }
.ghora-srv-card:hover .ghora-srv-tags span { border-color: rgba(200,169,110,0.2); color: var(--ghora-text-secondary); }
@media (max-width: 768px) { .ghora-srv-grid { grid-template-columns: 1fr; } .ghora-srv-content { padding: 30px 24px; } }

/* ============================================
   HERO TICKER
   ============================================ */
.ghora-hero-ticker { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 3; overflow: hidden; border-top: 1px solid rgba(200,169,110,0.1); background: linear-gradient(180deg, transparent, rgba(10,10,10,0.8)); backdrop-filter: blur(10px); }
.ghora-hero-ticker-track { display: flex; animation: ghora-ticker-scroll 20s linear infinite; width: max-content; }
.ghora-hero-ticker-track:hover { animation-play-state: paused; }
.ghora-ticker-item { display: flex; align-items: center; gap: 12px; padding: 18px 40px; white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.04); transition: background 0.3s ease; }
.ghora-ticker-item:hover { background: rgba(200,169,110,0.06); }
.ghora-ticker-label { font-family: var(--ghora-font-accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ghora-text-secondary); }
.ghora-ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ghora-accent); opacity: 0.4; }
@keyframes ghora-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   HERO PARTICLES
   ============================================ */
.ghora-hero-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; }
.ghora-hero-particle { position: absolute; width: 3px; height: 3px; background: var(--ghora-accent); border-radius: 50%; opacity: 0; animation: ghora-particle-float linear infinite; }
@keyframes ghora-particle-float { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.2; } 100% { transform: translateY(-20vh) scale(1); opacity: 0; } }
.ghora-hero-particle:nth-child(1) { left:10%; animation-duration:8s; animation-delay:0s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(2) { left:25%; animation-duration:12s; animation-delay:1s; width:3px; height:3px; }
.ghora-hero-particle:nth-child(3) { left:40%; animation-duration:9s; animation-delay:2s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(4) { left:55%; animation-duration:11s; animation-delay:0.5s; width:4px; height:4px; }
.ghora-hero-particle:nth-child(5) { left:70%; animation-duration:10s; animation-delay:3s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(6) { left:85%; animation-duration:13s; animation-delay:1.5s; width:3px; height:3px; }
.ghora-hero-particle:nth-child(7) { left:15%; animation-duration:14s; animation-delay:4s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(8) { left:60%; animation-duration:9s; animation-delay:2.5s; width:3px; height:3px; }
.ghora-hero-particle:nth-child(9) { left:35%; animation-duration:11s; animation-delay:5s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(10) { left:80%; animation-duration:10s; animation-delay:0.8s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(11) { left:5%; animation-duration:15s; animation-delay:3.5s; width:4px; height:4px; }
.ghora-hero-particle:nth-child(12) { left:50%; animation-duration:8s; animation-delay:6s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(13) { left:92%; animation-duration:12s; animation-delay:1.2s; width:3px; height:3px; }
.ghora-hero-particle:nth-child(14) { left:45%; animation-duration:10s; animation-delay:4.5s; width:2px; height:2px; }
.ghora-hero-particle:nth-child(15) { left:72%; animation-duration:13s; animation-delay:2.8s; width:3px; height:3px; }

/* Hero extra layers */
.ghora-hero-pattern { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 20% 50%, rgba(200,169,110,0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(200,169,110,0.05) 0%, transparent 40%); }
.ghora-hero-grid-lines { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: 60px 60px; background-image: linear-gradient(to right, rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.015) 1px, transparent 1px); mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }

/* ============================================
   LOADER DRAW ANIMATION
   ============================================ */
.ghora-draw-diamond { stroke-dasharray: 360; stroke-dashoffset: 360; animation: ghora-draw 1.5s ease forwards 0.3s; }
.ghora-draw-g { stroke-dasharray: 150; stroke-dashoffset: 150; animation: ghora-draw 1s ease forwards 0.8s; }
.ghora-draw-leaf { opacity: 0; animation: ghora-fade-in 0.5s ease forwards 1.5s; }
.ghora-loader-text { font-family: var(--ghora-font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: 0.15em; opacity: 0; animation: ghora-fade-up 0.8s ease forwards 1.2s; }
.ghora-loader-subtext { font-family: var(--ghora-font-accent); font-size: 0.7rem; letter-spacing: 0.4em; color: var(--ghora-text-muted); opacity: 0; animation: ghora-fade-up 0.8s ease forwards 1.4s; }
@keyframes ghora-draw { to { stroke-dashoffset: 0; } }
@keyframes ghora-fade-in { to { opacity: 0.8; } }
@keyframes ghora-fade-up { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   LOGO NAVBAR
   ============================================ */
.ghora-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.ghora-logo-icon { width: 40px; height: 40px; transition: transform 0.4s ease, filter 0.4s ease; }
.ghora-logo:hover .ghora-logo-icon { transform: rotate(-5deg) scale(1.08); filter: drop-shadow(0 0 8px rgba(200,169,110,0.4)); }
.ghora-logo-text { font-family: var(--ghora-font-heading); font-size: 1.1rem; font-weight: 700; color: #fff; letter-spacing: 0.15em; text-transform: uppercase; line-height: 1; }
.ghora-logo-text small { display: block; font-size: 0.55rem; font-weight: 500; letter-spacing: 0.35em; color: var(--ghora-text-muted); margin-top: 2px; }
