/* ══════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════ */

:root {
    --gold: #C9A227;
    --gold-light: #E8C84A;
    --gold-dark: #8B6914;
    --black: #0a0a0a;
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray: #f4f3f0;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arimo';
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}


/* ══════════════════════════════════════
   FLASH / SPLASH SCREEN
══════════════════════════════════════ */

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(201, 162, 39, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.splash-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.splash-logo {
    animation: splashPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.splash-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(201, 162, 39, 0.5));
}

@keyframes splashPop {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.splash-brand {
    animation: splashFadeUp 0.7s ease 0.8s both;
}

@keyframes splashFadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.splash-title {
    font-family: 'Arimo', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.1;
}

.splash-sub {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 6px;
}

.splash-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: splashFadeUp 0.7s ease 1s both;
}

.splash-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    animation: splashFadeUp 0.7s ease 1.1s both;
}

.splash-loader {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    overflow: hidden;
    animation: splashFadeUp 0.5s ease 1.3s both;
}

.splash-loader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 100px;
    animation: splashLoad 1.8s ease 1.4s forwards;
}

@keyframes splashLoad {
    to {
        width: 100%;
    }
}


/* Floating particles */

.splash-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.splash-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

.splash-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0.5s;
}

.splash-particles span:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
}

.splash-particles span:nth-child(3) {
    left: 40%;
    animation-delay: 1.5s;
}

.splash-particles span:nth-child(4) {
    left: 55%;
    animation-delay: 0.8s;
}

.splash-particles span:nth-child(5) {
    left: 70%;
    animation-delay: 1.2s;
}

.splash-particles span:nth-child(6) {
    left: 80%;
    animation-delay: 0.3s;
}

.splash-particles span:nth-child(7) {
    left: 90%;
    animation-delay: 1.8s;
}

.splash-particles span:nth-child(8) {
    left: 15%;
    animation-delay: 2s;
}

.splash-particles span:nth-child(9) {
    left: 60%;
    animation-delay: 2.5s;
}

.splash-particles span:nth-child(10) {
    left: 35%;
    animation-delay: 0.6s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(110vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}


/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: padding 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    padding: 10px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.nav-brand-name {
    font-family: 'Playfair display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    letter-spacing: 0.03em;
}

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

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

.nav-links a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 2px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--gold-dark) !important;
}


/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

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

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

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


/* Mobile Menu */

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 997;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    padding: 24px 0;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li a {
    display: block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: color 0.3s, background 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.05);
}


/* ══════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
}

.slide-2 {
    background-image: url('w6.jpeg');
}

.slide-3 {
    background-image: url('w7.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.10) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
}


/* Slider Dots */

.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--gold-light);
    width: 48px;
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    padding-top: 80px;
}

.hero-text {
    max-width: 680px;
}

.hero-tag {
    display: inline-block;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    animation: heroFadeUp 0.8s ease 0.5s both;
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    animation: heroFadeUp 0.8s ease 0.7s both;
}

.hero-h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
    animation: heroFadeUp 0.8s ease 0.9s both;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s ease 1.1s both;
}

@keyframes heroFadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Stats Bar */

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 24px 60px;
}

.stat {
    text-align: center;
    padding: 0 50px;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 162, 39, 0.25);
}


/* ══════════════════════════════════════
   PAGE HERO (About / Contact inner pages)
══════════════════════════════════════ */

.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.page-hero-bg:hover {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82) 0%, rgba(10, 8, 0, 0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 16px;
}

.page-hero-content h1 span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}


/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    padding: 14px 32px;
    border: none;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.3s, color 0.3s;
}

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


/* ══════════════════════════════════════
   SECTION BASE
══════════════════════════════════════ */

section {
    padding: 100px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 520px;
}

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

.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 24px;
    border-radius: 2px;
}


/* ══════════════════════════════════════
   ZIGZAG LAYOUT
══════════════════════════════════════ */

.zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.zigzag.reverse .zz-img {
    order: 2;
}

.zigzag.reverse .zz-text {
    order: 1;
}

.zz-img {
    position: relative;
    border-radius: 4px;
    overflow: visible;
}

.zz-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.zz-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.img-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    z-index: -1;
}

.img-accent-left {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--black);
    font-weight: 700;
}

.feature-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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


/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */

.services {
    background: var(--gray);
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-header .gold-line {
    margin: 0 auto 24px;
}

.service-zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 60px;
}

.service-zigzag:last-child {
    margin-bottom: 0;
}

.service-zigzag.rev .svc-img {
    order: 2;
}

.service-zigzag.rev .svc-info {
    order: 1;
}

.svc-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s, box-shadow 0.5s;
}

.svc-img img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.svc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
    margin-bottom: -10px;
}

.svc-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.svc-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-tag {
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.25);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}


/* ===== NEW WHY CARD UNIQUE SHAPE ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}


/* Unique Shape Card */

.why-card {
    position: relative;
    padding: 40px 30px;
    background: linear-gradient(145deg, #ffffff, #f4f3f0);
    border-radius: 30px 10px 30px 10px;
    /* asymmetric shape */
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* Gradient Border Effect */

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, #C9A227, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}


/* Decorative Shape */

.why-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(201, 162, 39, 0.08);
    top: -40px;
    right: -40px;
    border-radius: 50%;
    transition: 0.4s;
}


/* Hover Effect */

.why-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-card:hover::after {
    transform: scale(1.3);
}


/* ICON STYLE */

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A227, #E8C84A);
    border-radius: 20px 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: black;
}


/* TEXT */

.why-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}


/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    gap: 20px;
}


/* ITEM BOX */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
}


/* IMAGE */

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


/* HOVER EFFECT */

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

.gallery-item:hover {
    transform: translateY(-5px);
}


/* TEXT OVERLAY */

.gallery-item::after {
    content: "Coating Work";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}


/* ══════════════════════════════════════
   PROCESS
══════════════════════════════════════ */

.process {
    background: var(--gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 4px;
    border: 1px solid rgba(201, 162, 39, 0.12);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.step::after {
    content: '→';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 0 auto 18px;
}

.step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */

.testimonials {
    background: var(--white);
}

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

.testi-header .gold-line {
    margin: 0 auto 24px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testi-card {
    background: var(--off-white);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    padding: 32px 28px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.testi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}

.testi-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}


/* ══════════════════════════════════════
   CTA STRIP
══════════════════════════════════════ */

.cta-strip {
    background: linear-gradient(135deg, var(--black) 0%, #1a1200 100%);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */

footer {
    background: #080808;
    padding: 70px 0 0;
    color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 56px;
    width: auto;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

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

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 24px;
}

.footer-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    transition: color 0.3s;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.fc-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.fc-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.fc-item a:hover {
    color: var(--gold);
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.map-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.footer-gst {
    margin-top: 12px;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 4px;
    padding: 10px 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-gst strong {
    color: var(--gold-light);
}

.footer-bottom-bar {
    background: #050505;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}


/* ══════════════════════════════════════
   CONTACT PAGE EXTRAS
══════════════════════════════════════ */

.contact-info-col {}

.contact-form-col {}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--off-white);
    border: 1px solid rgba(201, 162, 39, 0.12);
    border-radius: 4px;
    padding: 20px 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.ci-value {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.ci-value:hover {
    color: var(--gold);
}


/* Contact Form Box */

.contact-form-box {
    background: var(--off-white);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 6px;
    padding: 48px 44px;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 3px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

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

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 0.88rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--black);
    font-weight: 700;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Map section */

.map-container {}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header .gold-line {
    margin: 0 auto 24px;
}

.map-embed-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.15);
}

.map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 4px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.82rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.map-badge-icon {
    font-size: 1.4rem;
}

.map-badge strong {
    font-weight: 600;
    color: var(--text);
}

.map-badge span {
    color: var(--text-muted);
    font-size: 0.75rem;
}


/* ══════════════════════════════════════
   SCROLL ANIMATION
══════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .stats-item:nth-child(3) {
        border-right: none;
    }
}

@media (max-width: 900px) {
    nav {
        padding: 14px 20px;
    }
    nav.scrolled {
        padding: 10px 20px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-grid,
    .zigzag,
    .zigzag.reverse,
    .service-zigzag,
    .service-zigzag.rev {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    .zigzag.reverse .zz-img,
    .zigzag.reverse .zz-text,
    .service-zigzag.rev .svc-img,
    .service-zigzag.rev .svc-info {
        order: unset;
    }
    .hero-content {
        padding: 0 20px;
        padding-top: 60px;
    }
    .why-grid,
    .process-steps,
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        padding: 0 20px;
    }
    .gal-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gal-item:nth-child(5) {
        grid-column: span 2;
    }
    .container {
        padding: 0 20px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }
    .footer-bottom {
        padding: 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .hero-stats {
        flex-wrap: wrap;
        padding: 16px 20px;
        gap: 4px;
    }
    .stat {
        padding: 10px 20px;
    }
    .stat-divider {
        display: none;
    }
    .cta-strip {
        padding: 60px 20px;
    }
    .slider-dots {
        bottom: 100px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-specs {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 28px 24px;
    }
    .page-hero-content {
        padding: 0 20px;
    }
    .map-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .splash-img {
        width: 100px;
    }
    .splash-title {
        font-size: 1.6rem;
    }
    .hero-h1 {
        font-size: 2.4rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-stats {
        position: relative;
        bottom: auto;
    }
    .hero {
        padding-bottom: 0;
    }
}