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

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: #fff;
}

/* Prevent horizontal scroll issues */
html, body {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===============================
   NAVBAR
================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}
/* When Scrolled */

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}
/* ===== DESKTOP VERSION ===== */
@media (min-width: 769px) {
    .navbar {
        background: rgba(255, 255, 255, 0.75);   /* white transparent */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }

    .nav-links a {
        color: #d4af37;  /* dark text on white background */
    }

    .nav-links a:hover {
        color: #d4af37;
    }
}
/* ===== MOBILE VERSION ===== */
@media (max-width: 768px) {
    .navbar {
        background: #000; /* keep mobile dark */
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img {
    height: 48px;      /* Controls navbar height */
    width: auto;
    max-width: 180px;  /* Prevents stretching */
    object-fit: contain;
}
.brand-name {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #d4af37; /* GOLD */
    transition: 0.3s ease;
}

/* Optional subtle hover */
.logo:hover .brand-name {
    opacity: 0.8;
}
.logo-box {
    background: #d4af37;
    color: #000;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 45px; /* Improved spacing */
}

.nav-links a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: #b9922e;
}

/* ===============================
   HAMBURGER
================================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
}

/* ===============================
   HERO (IMPROVED RESPONSIVE)
================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100svh; /* Fix mobile viewport issue */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;

    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(14px, 2vw, 18px);
    margin-bottom: 30px;
    opacity: 0.85;
    line-height: 1.6;
}

/* ===============================
   HERO BUTTONS
================================= */

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

.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

/* GOLD PRIMARY BUTTON */
.btn.primary {
    background: linear-gradient(135deg, #d4af37, #c89b2c);
    color: #000;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* OUTLINE SECONDARY BUTTON */
.btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn.secondary:hover {
    background: #ffffff;
    color: #000;
}

/* ===============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 768px) {

    /* NAV MENU */
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: #111;
        width: 260px;
        height: 100vh;
        padding: 50px 25px;
        gap: 30px;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    /* HERO FIX */
    .hero {
        min-height: 90svh;
        background-position: 65% center; /* Better mobile crop */
        padding: 0 15px;
    }

    .hero h1 {
        line-height: 1.2;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

}
/* ===== PORTFOLIO HERO ===== */

.portfolio-hero {
    min-height: 45vh;   /* was 60vh */
    padding: 50px 20px 60px; /* top reduced */
    background: linear-gradient(to right, #000, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portfolio-hero h1 {
    font-size: clamp(32px, 6vw, 60px);
}

.portfolio-hero p {
    opacity: 0.7;
    margin-top: 10px;
}

/* ===== FILTER ===== */

.filter-buttons {
    text-align: center;
    margin: 20px 0 30px;
}

.filter-buttons button {
    background: transparent;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: #d4af37;
    color: #000;
}

/* ===== GRID ===== */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transform: perspective(800px) rotateY(0deg);
    transition: 0.5s ease;
}

.portfolio-item:hover {
    transform: perspective(800px) rotateY(5deg) scale(1.02);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    cursor: pointer;
}
/* ===============================
   FILTER BUTTONS PREMIUM STYLE
================================= */

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin-top: 40px;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.25);
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #d4af37, #c89b2c);
    color: #000;
    border-color: transparent;
}
.portfolio-item {
    display: block;
    text-decoration: none;
    color: inherit;
}
/* SERVICE HERO */
.service-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    background: url('../images/kitchen.jpg') center/cover no-repeat;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero h1 {
    font-size: clamp(28px, 5vw, 56px);
    margin-bottom: 15px;
}

.service-intro {
    padding: 80px 0;
    text-align: center;
}

.service-intro h2 {
    margin-bottom: 20px;
}

.sub-services {
    padding: 60px 0;
}

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

.sub-card {
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
}

.sub-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.sub-card h3 {
    padding: 20px;
}

.sub-card:hover {
    transform: translateY(-8px);
}

.kitchen-gallery {
    padding: 80px 0;
}

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

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.4s;
}

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

.cta-section {
    padding: 100px 0;
    text-align: center;
    background: #0d0d0d;
}
/* =========================
   QUOTE MODAL
========================= */

.quote-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.quote-box {
    background: #111;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    border-radius: 12px;
    position: relative;
}

.quote-box h2 {
    margin-bottom: 25px;
    text-align: center;
}

.quote-box input,
.quote-box select,
.quote-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #333;
    background: #1a1a1a;
    color: #fff;
    border-radius: 6px;
}

.quote-box textarea {
    min-height: 100px;
    resize: none;
}

.close-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.quote-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.quote-actions .btn {
    flex: 1;
    text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
    .quote-box {
        padding: 25px;
    }

    .quote-actions {
        flex-direction: column;
    }
}
/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 0;
    background: #f6f6f6;
    color: #111;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-left h2 span {
    color: #b8860b;
}

.about-left p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.feature .icon {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
}

/* RIGHT SIDE IMAGES */

.about-right {
    flex: 1;
    position: relative;
}

.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    display: block;
}

.img-1 {
    width: 70%;
}

.img-2 {
    width: 70%;
    position: absolute;
    right: 0;
    top: 80px;
    transform: translateZ(0);
}


/* EXPERIENCE CARD */

.experience-card {
    position: absolute;
    bottom: -40px;
    left: 10%;
    background: #111827;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.experience-card h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .about-container {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 36px;
    }

    .img-1,
    .img-2 {
        width: 100%;
        position: relative;
        top: 0;
    }

    .experience-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
    }
}
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* ===============================
   3D SHOWCASE SECTION
================================= */

.showcase-3d {
    padding: 120px 0;
    background: #ffffff;
    color: #111;
    text-align: center;
    overflow: hidden;
}

.showcase-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 10px;
}

.showcase-header h2 span {
    color: #c89b2c;
}

.showcase-header p {
    opacity: 0.7;
    margin-bottom: 60px;
}

/* 3D Container */

.carousel-3d {
    perspective: 1200px;
    height: 400px;
    position: relative;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotateCarousel 25s linear infinite;
}

.carousel-item {
    position: absolute;
    width: 320px;
    height: 400px;
    left: 50%;
    top: 0;
    transform-origin: center center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transform: translateX(-50%) translateZ(0);
    transition: transform 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* POSITION EACH IMAGE IN 3D SPACE */

.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(500px); }
.carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(500px); }
.carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(500px); }
.carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(500px); }
.carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(500px); }

/* AUTO ROTATION */

@keyframes rotateCarousel {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

/* PAUSE ON HOVER */

.carousel-3d:hover .carousel-track {
    animation-play-state: paused;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .carousel-3d {
        height: 300px;
    }

    .carousel-item {
        width: 220px;
        height: 300px;
    }

    .carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(350px); }
    .carousel-item:nth-child(2) { transform: rotateY(72deg) translateZ(350px); }
    .carousel-item:nth-child(3) { transform: rotateY(144deg) translateZ(350px); }
    .carousel-item:nth-child(4) { transform: rotateY(216deg) translateZ(350px); }
    .carousel-item:nth-child(5) { transform: rotateY(288deg) translateZ(350px); }

}
/* ===============================
   IMAGE SOLUTION SECTION
================================= */

.solutions-section {
    padding: 120px 0;
    background: #ffffff;
}

.solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.solutions-header h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.solutions-header span {
    color: #c89b2c;
}

.solutions-header p {
    color: #666;
    line-height: 1.6;
}

/* GRID */

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

/* CARD */

.solution-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    display: block;
    height: 420px;
    text-decoration: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

/* IMAGE */

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* DARK GRADIENT OVERLAY */

.solution-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.2),
        rgba(0,0,0,0)
    );
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.4s ease;
}

/* TEXT */

.solution-overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* HOVER EFFECT */

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-card:hover .solution-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* ===============================
   MOBILE SLIDER VERSION
================================= */

@media (max-width: 1024px) {

    .solutions-grid {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }

    .solution-card {
        min-width: 280px;
        height: 360px;
        scroll-snap-align: start;
    }

    /* Hide scrollbar */
    .solutions-grid::-webkit-scrollbar {
        display: none;
    }
}
/* ===============================
   FINAL CTA SECTION
================================= */

.final-cta {
    padding: 140px 0;
    background: #a6794d; /* Elegant warm brown */
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 600;
    margin-bottom: 25px;
}

.final-cta p {
    max-width: 750px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* BUTTON CONTAINER */

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

/* CTA BUTTON BASE */

.btn-cta {
    padding: 18px 50px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* PRIMARY (WHITE BUTTON) */

.btn-cta.primary {
    background: #ffffff;
    color: #a6794d;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.btn-cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* SECONDARY (OUTLINE BUTTON) */

.btn-cta.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.btn-cta.secondary:hover {
    background: #ffffff;
    color: #a6794d;
}

/* MOBILE */

@media (max-width: 768px) {

    .final-cta {
        padding: 90px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}
/* ===============================
   BRAND CATALOGUES SECTION
================================= */

.brand-catalogues {
    padding: 120px 0;
    background: #f7f6f4;
    text-align: center;
}

.catalogue-header span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #a6794d;
    margin-bottom: 10px;
    font-weight: 600;
}

.catalogue-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 70px;
    color: #111;
}

/* GRID */

.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */

.catalogue-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.catalogue-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.catalogue-icon {
    font-size: 32px;
    background: #f2ede7;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a6794d;
}

.catalogue-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.catalogue-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* BUTTON */

.catalogue-btn {
    display: inline-block;
    padding: 16px 50px;
    border-radius: 999px;
    border: 2px solid #111;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: all 0.3s ease;
}

.catalogue-btn:hover {
    background: #111;
    color: #fff;
}

/* MOBILE */

@media (max-width: 768px) {

    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .catalogue-card {
        padding: 50px 30px;
    }
}
/* ===============================
   CONTACT SECTION
================================= */

.contact-section {
    padding: 120px 0;
    background: #f7f6f4;
}

.contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
}

.contact-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #a6794d;
    font-weight: 600;
}

.contact-left h2 {
    font-size: clamp(32px, 4vw, 52px);
    margin: 20px 0;
    color: #111;
}

.contact-left p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* INFO BLOCKS */

.contact-info {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #efe8df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #a6794d;
}

.info-item h4 {
    margin-bottom: 5px;
    color: #111;
}

.info-item p {
    color: #555;
    margin-bottom: 5px;
}

.direction-link {
    color: #a6794d;
    text-decoration: none;
    font-weight: 600;
}

.direction-link:hover {
    text-decoration: underline;
}

/* MAP */

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* FORM */

.contact-form-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.contact-form-box h3 {
    margin-bottom: 30px;
    color: #111;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-family: inherit;
    margin-bottom: 20px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: #a6794d;
}

/* BUTTON */

.contact-btn {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: #a6794d;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #8e623c;
}

/* MOBILE */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .form-row {
        flex-direction: column;
    }
}
/* ===============================
   PREMIUM FOOTER
================================= */

.site-footer {
    background: linear-gradient(180deg, #1a1f2b, #11141c);
    color: #c9ced8;
    padding: 100px 0 40px;
    font-family: 'Poppins', sans-serif;
}

/* TOP GRID */

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

/* BRAND */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.footer-logo .logo-box {
    background: #a6794d;
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.footer-brand p {
    line-height: 1.8;
    max-width: 320px;
    color: #aeb3bd;
}

/* HEADINGS */

.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 25px;
}

/* LINKS */

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #aeb3bd;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #a6794d;
}

/* CONTACT */

.footer-contact p {
    margin-bottom: 14px;
    color: #aeb3bd;
}

/* SOCIALS */

.footer-socials {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.social-circle:hover {
    background: #a6794d;
    transform: translateY(-4px);
}

/* DIVIDER */

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 60px 0 30px;
}

/* BOTTOM */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #8f95a3;
}

.footer-links a {
    margin-left: 25px;
    color: #8f95a3;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #a6794d;
}

/* RESPONSIVE */

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

@media (max-width: 600px) {

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .footer-links a {
        margin: 0 10px;
    }
}
/* ===============================
   SUBPAGE STRUCTURE
================================= */

.service-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.service-hero h1 {
    font-size: clamp(28px, 5vw, 56px);
    margin-bottom: 15px;
}

.service-hero p {
    opacity: 0.9;
    font-size: 18px;
}

/* ===============================
   ABOUT SERVICE
================================= */

.service-about {
    padding: 100px 0;
    background: #ffffff;
}

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

.service-about img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-about p {
    color: #555;
    line-height: 1.8;
}

/* ===============================
   GALLERY GRID
================================= */

.service-gallery {
    padding: 100px 0;
    background: #f8f8f8;
}

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

.gallery-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

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

/* ===============================
   FEATURES SECTION
================================= */

.service-features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-box {
    padding: 40px;
    border-radius: 20px;
    background: #f4f4f4;
    transition: 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.feature-box h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-box p {
    color: #666;
}

/* ===============================
   CTA SECTION
================================= */

.service-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #a6794d, #8d623d);
    color: #fff;
}

.service-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-cta .btn {
    margin-top: 20px;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 992px) {

    .service-about .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        height: 50vh;
    }
}
