﻿/* ============================================
   AKMAL EVENTS — Premium Luxury CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
    --gold: #C9A14A;
    --gold-light: #e0c47a;
    --gold-dark: #a07830;
    --black: #0F0F0F;
    --charcoal: #1a1a1a;
    --dark: #222222;
    --blush: #f5ede6;
    --cream: #faf6f1;
    --white: #ffffff;
    --text-dark: #2a2a2a;
    --text-mid: #555555;
    --text-light: #888888;
    --border: rgba(201,161,74,0.25);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--text-dark);
}

/* ---- Utility ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.bg-cream {
    background: var(--cream);
}

.bg-dark {
    background: var(--charcoal);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 560px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 20px auto 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.1);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .btn:hover::before {
        transform: translateX(0);
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 4px 20px rgba(201,161,74,0.35);
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(201,161,74,0.5);
    }

.btn-outline {
    border: 1.5px solid var(--gold);
    color: var(--gold);
}

    .btn-outline:hover {
        background: var(--gold);
        color: var(--black);
        transform: translateY(-2px);
    }

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

    .btn-dark:hover {
        background: var(--dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    }

.btn-wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

    .btn-wa:hover {
        background: #1ea952;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

    .navbar.scrolled {
        background: rgba(15,15,15,0.97);
        backdrop-filter: blur(20px);
        padding: 14px 0;
        box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    position: relative;
    transition: color 0.3s;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1.5px;
        background: var(--gold);
        transition: width 0.35s ease;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--gold);
    }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

.nav-cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black) !important;
    border-radius: 2px;
    font-weight: 600;
}

    .nav-cta::after {
        display: none;
    }

    .nav-cta:hover {
        background: var(--gold-light);
    }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 1.5px;
        background: var(--white);
        transition: all 0.3s ease;
    }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        animation: heroZoom 8s ease forwards;
    }

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.6) 50%, rgba(10,8,6,0.75) 100% );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    animation: fadeUp 1s 0.3s both;
}

    .hero-eyebrow::before {
        content: '';
        display: block;
        width: 40px;
        height: 1px;
        background: var(--gold);
    }

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 28px;
    animation: fadeUp 1s 0.5s both;
}

    .hero-title em {
        font-style: italic;
        color: var(--gold);
    }

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.85;
    margin-bottom: 44px;
    animation: fadeUp 1s 0.7s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.9s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: fadeIn 1s 1.5s both;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,161,74,0.8), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ============================================
   FEATURED SERVICES (HOME)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.service-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

    .service-card-img img {
        height: 100%;
        transition: transform 0.6s ease;
    }

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,15,15,0.6), transparent 60%);
}

.service-card-body {
    padding: 28px 28px 32px;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s;
}

    .service-card-link:hover {
        gap: 12px;
    }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    background: linear-gradient(135deg, var(--charcoal), var(--dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .stats-strip::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A14A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(201,161,74,0.15);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

    .gallery-item:first-child {
        grid-row: 1 / 3;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.75) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--blush);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 36px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
    }

    .testimonial-card::before {
        content: '\201C';
        font-family: 'Playfair Display', serif;
        font-size: 5rem;
        color: var(--gold);
        opacity: 0.25;
        position: absolute;
        top: 10px;
        left: 30px;
        line-height: 1;
    }

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.testimonial-event {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: 80px 0 0;
    color: rgba(255,255,255,0.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.footer-brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.85;
    max-width: 280px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border: 1px solid rgba(201,161,74,0.3);
        border-radius: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        transition: all 0.3s;
    }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }

.footer-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 1.5px;
        background: var(--gold);
    }

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    .footer-links a:hover {
        color: var(--gold);
    }

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    align-items: flex-start;
}

.footer-contact-icon {
    color: var(--gold);
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,0.35);
        transition: color 0.3s;
    }

        .footer-bottom-links a:hover {
            color: var(--gold);
        }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.float-wa {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
    transition: var(--transition);
    font-size: 1.5rem;
    color: var(--white);
}

    .float-wa:hover {
        transform: scale(1.12) translateY(-4px);
        box-shadow: 0 10px 35px rgba(37,211,102,0.6);
    }

.float-wa-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   PAGE HERO (INNER PAGES)
   ============================================ */
.page-hero {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

    .page-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.65) 100% );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

    .page-hero-breadcrumb a {
        color: var(--gold);
        transition: opacity 0.3s;
    }

        .page-hero-breadcrumb a:hover {
            opacity: 0.7;
        }

    .page-hero-breadcrumb .sep {
        color: rgba(255,255,255,0.3);
    }

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    height: 540px;
    border-radius: 4px;
    overflow: hidden;
}

.about-img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-img-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.about-img-badge-text {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.75;
    text-align: center;
    margin-top: 4px;
}

.about-content .section-label {
    margin-top: 0;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--cream);
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.about-highlight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-highlight h4 {
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-highlight p {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-mid);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 48px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

    .mv-card.mission {
        background: var(--charcoal);
    }

    .mv-card.vision {
        background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    }

.mv-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}

.mv-card h3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.mv-card.mission h3, .mv-card.mission p {
    color: var(--white);
}

.mv-card.vision h3, .mv-card.vision p {
    color: var(--black);
}

.mv-card p {
    font-size: 0.9rem;
    line-height: 1.9;
    opacity: 0.85;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

    .service-row.reverse {
        direction: rtl;
    }

        .service-row.reverse > * {
            direction: ltr;
        }

.service-img {
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

    .service-img img {
        height: 100%;
        transition: transform 0.6s ease;
    }

    .service-img:hover img {
        transform: scale(1.05);
    }

.service-img-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
}

.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-features {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-dark);
}

    .service-feature::before {
        content: '✦';
        color: var(--gold);
        font-size: 0.7rem;
        flex-shrink: 0;
    }

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid rgba(201,161,74,0.3);
    border-radius: 2px;
    color: var(--text-mid);
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}

    .filter-btn.active, .filter-btn:hover {
        background: var(--gold);
        color: var(--black);
        border-color: var(--gold);
    }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

    .portfolio-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .portfolio-item:hover img {
        transform: scale(1.1);
    }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.2) 60%, transparent);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.portfolio-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.portfolio-zoom {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

    .portfolio-zoom:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }

/* ============================================
   GALLERY PAGE
   ============================================ */
.masonry-grid {
    columns: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

    .masonry-item img {
        width: 100%;
        display: block;
        transition: transform 0.6s ease;
    }

    .masonry-item:hover img {
        transform: scale(1.05);
    }

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(201,161,74,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    font-size: 1.8rem;
    color: var(--white);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,8,6,0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

    .lightbox.active {
        display: flex;
    }

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

    .lightbox-close:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--black);
    }

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 40px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
}

    .contact-form-wrap h3 {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .contact-form-wrap > p {
        font-size: 0.88rem;
        color: var(--text-mid);
        margin-bottom: 32px;
    }

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(201,161,74,0.2);
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

    .form-input:focus, .form-textarea:focus, .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,161,74,0.12);
    }

.form-textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-error {
    display: none;
    color: #e05050;
    font-size: 0.78rem;
    margin-top: 6px;
}

.form-group.error .form-input,
.form-group.error .form-textarea {
    border-color: #e05050;
}

.form-group.error .form-error {
    display: block;
}

.map-wrap {
    margin-top: 60px;
    border-radius: 4px;
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border);
}

    .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
    }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(201,161,74,0.08) 0%, transparent 70%);
    }

    .cta-banner h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--white);
        margin-bottom: 16px;
        position: relative;
    }

    .cta-banner p {
        font-size: 1rem;
        color: rgba(255,255,255,0.6);
        max-width: 500px;
        margin: 0 auto 40px;
        position: relative;
    }

.cta-banner-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

.fade-up-delay-4 {
    transition-delay: 0.4s;
}

.fade-up-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .testimonials-grid .testimonial-card:last-child {
            display: none;
        }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-vision {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .masonry-grid {
        columns: 2;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10,8,6,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        transition: right 0.4s ease;
        z-index: 999;
    }

        .nav-menu.open {
            right: 0;
        }

    .nav-link {
        font-size: 1rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

        .nav-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4.5px);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4.5px);
        }

    .hero-actions {
        flex-direction: column;
    }

        .hero-actions .btn {
            justify-content: center;
        }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

        .gallery-grid .gallery-item:first-child {
            grid-row: auto;
        }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

        .testimonials-grid .testimonial-card:last-child {
            display: block;
        }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .masonry-grid {
        columns: 1;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }

    .section {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(201,161,74,0.15);
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    .hero-title {
        font-size: 2.4rem;
    }
}
/* ============================================
   EXPERIENCE SECTION
============================================ */

.experience-section {
    background: var(--white);
}

.experience-heading {
    margin-bottom: 60px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.experience-card {
    background: var(--cream);
    padding: 40px 32px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,161,74,0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.experience-icon {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(201,161,74,0.25);
}

.experience-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.experience-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.9;
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .experience-section {
        padding: 70px 0;
    }

    .experience-heading {
        margin-bottom: 40px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .experience-card {
        padding: 30px 24px;
    }

    .experience-card h3 {
        font-size: 1.15rem;
    }

    .experience-card p {
        font-size: 0.88rem;
        line-height: 1.8;
    }

    .experience-icon {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {

    .experience-card {
        padding: 26px 20px;
    }

    .experience-heading .section-title {
        font-size: 2rem;
    }

    .experience-heading .section-subtitle {
        font-size: 0.9rem;
    }
}
*{
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

.whatsapp-toggle{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    cursor:pointer;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.whatsapp-chat{
    position:fixed;
    bottom:95px;
    right:20px;
    width:340px;
    max-width:calc(100% - 20px);
    background:#f0ece5;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.25);
    z-index:9999;
    display:block;
    animation:popup 0.3s ease;
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(20px) scale(0.95);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.chat-header{
    background:#f7c600;
    color:white;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.chat-header-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.chat-header-left i{
    font-size:28px;
}

.chat-header h3{
    margin:0;
    font-size:20px;
}

.powered-by{
    color:white;
    font-size:12px;
    text-decoration:none;
    opacity:0.9;
}

.powered-by:hover{
    text-decoration:underline;
}

.close-btn{
    font-size:24px;
    cursor:pointer;
}

.chat-body{
    padding:18px;
    min-height:260px;
}

.message{
    background:white;
    padding:14px;
    border-radius:14px;
    width:85%;
    line-height:1.5;
    color:#222;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.message strong{
    color:#2d7c6d;
}

.chat-footer{
    display:flex;
    align-items:center;
    gap:10px;
    padding:15px;
    background:#f0ece5;
}

.chat-footer input{
    flex:1;
    padding:14px;
    border:none;
    border-radius:30px;
    outline:none;
    font-size:15px;
}

.send-btn{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#d9e5f3;
    cursor:pointer;
    font-size:22px;
}

@media(max-width:480px){

    .whatsapp-chat{
        width:95%;
        right:2.5%;
        bottom:85px;
    }

    .chat-body{
        min-height:220px;
    }

    .chat-header h3{
        font-size:18px;
    }

}