/* =============================================
   CUSTOM PROPERTIES
   ============================================= */
:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --black-card: #1a1a1a;
    --black-border: #2a2a2a;
    --gold: #c9a84c;
    --gold-light: #dfc06a;
    --gold-dim: rgba(201, 168, 76, 0.12);
    --cream: #f5f0e6;
    --text-light: #f5f0e6;
    --text-muted: rgba(245, 240, 230, 0.6);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--black);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 9px 24px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.top-bar a {
    color: var(--black);
    font-weight: 700;
    border-bottom: 1.5px solid rgba(10, 10, 10, 0.3);
    transition: border-color 0.3s;
}

.top-bar a:hover { border-bottom-color: var(--black); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    transition: box-shadow 0.4s var(--ease);
}

.nav.scrolled { box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--cream);
    letter-spacing: 0.08em;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

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

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Buttons */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 11px 26px;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 11px 26px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    transition: all 0.3s;
}

.phone-link svg { width: 16px; height: 16px; fill: var(--gold); }

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

/* Mobile Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding-top: 80px;
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-overlay a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.mobile-nav-overlay a:hover { color: var(--gold); }

/* =============================================
   SECTION HEADERS (shared)
   ============================================= */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle { margin: 0 auto; }

/* =============================================
   PAGE HERO BANNER (for inner pages)
   ============================================= */
.page-hero {
    padding: 80px 0 60px;
    background: var(--black-light);
    border-bottom: 1px solid var(--black-border);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   SERVICE CARDS
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 36px 28px;
    overflow: hidden;
    transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(201, 168, 76, 0.3);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.service-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    margin-bottom: 20px;
}

.service-icon svg { width: 22px; height: 22px; fill: var(--gold); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap 0.3s;
}

.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: var(--gold); }

/* =============================================
   FEATURES GRID (Why Us)
   ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 48px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: rgba(201, 168, 76, 0.25);
    line-height: 1;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    background: var(--black);
    text-align: center;
    border-top: 1px solid var(--black-border);
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

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

/* =============================================
   CONTACT DETAILS
   ============================================= */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    flex-shrink: 0;
}

.contact-detail-icon svg { width: 18px; height: 18px; fill: var(--gold); }

.contact-detail-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-detail-text strong {
    display: block;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-detail-text a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.contact-detail-text a:hover { color: var(--gold); }

/* Social */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid var(--black-border);
    transition: all 0.3s;
}

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

.social-link svg { width: 18px; height: 18px; fill: var(--gold); transition: fill 0.3s; }
.social-link:hover svg { fill: var(--black); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 60px 0 0;
    background: var(--black-light);
    border-top: 1px solid var(--black-border);
}

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

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--black-border);
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom a { color: var(--gold); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* =============================================
   FLOATING CTA BUTTON
   ============================================= */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--black);
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
    animation: float-pulse 2s ease-in-out infinite;
}

.floating-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

.floating-cta svg {
    width: 16px;
    height: 16px;
    fill: var(--black);
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
    50% { box-shadow: 0 8px 40px rgba(201, 168, 76, 0.6); }
}

@media (max-width: 480px) {
    .floating-cta {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   GALLERY GRID
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    background: var(--black-light);
    border: 1px solid var(--black-border);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder svg {
    width: 32px;
    height: 32px;
    fill: rgba(201, 168, 76, 0.2);
    margin-bottom: 10px;
}

/* =============================================
   SERVICE DETAIL BLOCKS (services page)
   ============================================= */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--black-border);
}

.service-detail:nth-child(even) {
    background: var(--black-light);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.service-detail-num {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
}

.service-detail-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--cream);
    letter-spacing: 0.04em;
}

.service-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-detail-img {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    min-height: 300px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.service-detail-img .img-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 20px;
}

.service-detail-img .img-placeholder svg {
    width: 40px;
    height: 40px;
    fill: rgba(201, 168, 76, 0.15);
    margin-bottom: 10px;
}

/* Alternating layout — image on right for odd, left for even */
.service-detail:nth-child(even) .service-detail-layout {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-layout > * {
    direction: ltr;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-detail-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail-body ul {
    list-style: none;
    padding: 0;
}

.service-detail-body li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.service-detail-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
    padding: 80px 0;
}

.about-section:nth-child(even) {
    background: var(--black-light);
}

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

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--cream);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-cta-card {
    background: var(--black-light);
    border: 1px solid var(--black-border);
    padding: 48px 40px;
    text-align: center;
}

.contact-cta-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.contact-cta-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-card .btn-gold {
    width: 100%;
    justify-content: center;
    padding: 14px 26px;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.contact-cta-card .phone-link {
    width: 100%;
    justify-content: center;
}

.contact-cta-card .cta-or {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 12px 0;
}

/* Map embed */
.map-wrap {
    margin-top: 60px;
    border: 1px solid var(--black-border);
    height: 350px;
    background: var(--black-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(1) contrast(0.9) brightness(0.6);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .service-detail-body { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-layout { grid-template-columns: 1fr; gap: 32px; }
    .service-detail:nth-child(even) .service-detail-layout { direction: ltr; }
    .service-detail-img { min-height: 240px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta-wrap { display: none; }
    .menu-toggle { display: flex; }
    .mobile-nav-overlay { display: flex; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .contact-cta-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
    .hero-buttons, .cta-buttons { flex-direction: column; align-items: center; }
    .btn-gold, .phone-link { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr; }
}