/*
Theme Name: AFZ Theme

Author: Rishabh Dev
Author URI: https://webmaniacs.co.nz
Description: Custom WordPress theme for AFZ Gate & Fence – strong, secure, precisely crafted gates and fencing.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: afz-theme
*/

/* ============================================
   BASE STYLES
   ============================================ */

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

/* ============================================
   FIGMA-SAFE SCALING (1400px Design)
   Ensures the site looks identical to the 1400px Figma design,
   even when zoomed in (110%/125%) or on smaller laptops.
   ============================================ */
@media (min-width: 992px) {

    /* Set the target 1400px Figma design width globally for desktop */
    .container {
        max-width: 1400px !important;
        width: 100% !important;
    }

    /* Proportional scaling ONLY for content sections to counteract browser zoom or small screens */
    @media (max-width: 1400px) {

        /* 1. Scale Content Sections (About onwards) */
        body>section:not(.banner-section):not(.inner-banner),
        body>footer {
            zoom: 0.88;
            /* Fits 1400px design look into narrower viewports */
/*             transform: scale(0.98); */
            transform-origin: top center;
        }

        /* 2. Keep the Top Bar, Header, and Banner "boxed" (not fluid) on zoom/small screens.
           We set them to standard XL container size so they don't touch the edges.
        */
        .top-bar .container,
        .main-nav .container,
        .banner-section .container,
        .inner-banner .container {
            max-width: 1240px !important;
        }
    }

    /* Extra scaling for standard 125% zoom or 1366px screens */
    @media (max-width: 1300px) {

        body>section:not(.banner-section):not(.inner-banner),
        body>footer {
            zoom: 0.82;
        }
    }
}

:root {
    --gold-dark: #7A6B45;
    --gold-light: #DFCD8E;
    --gold-accent: #C19D60;
    --gold-medium: #A09264;
    --dark-bg: #000;
    --text-white: #fff;
    --text-light-gray: #EDEDED;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 80px;

    /* Footer */
    --footer-padding-y: 80px;
    --footer-padding-x: 100px;
    --footer-logo-width: 144px;
    --footer-overlay-opacity: 0.7;
}

html,
body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

/* Native smooth scrolling for in-page anchors */
html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.84px;
    font-weight: 700;
}

h1 {
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: 2.4px;
}

h2 {
    font-size: 38px;
    line-height: 1.3;
    letter-spacing: 6%;
}

h3 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: 1.5px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
}

.section-label {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.08px;
    text-transform: capitalize;
}

.subtitle {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 1.8px;
}

p {
    font-size: 14px;
    line-height: 1.78;
    letter-spacing: 0.84px;
}

.text-large {
    font-size: 16px;
    letter-spacing: 0.96px;
}

/* Utility Classes */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    background-color: #333333;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.08px;
    text-transform: capitalize;
    margin-bottom: 24px;
    padding: 12px 32px;
    border-radius: 10px;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--text-white);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title {
    color: var(--text-white);
    margin-bottom: 0;
}

/* H2 typewriter effect: desktop only, clip-path so layout never breaks */
@keyframes typewriter-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@media (min-width: 992px) {

    h2.typewriter.typewriter-visible,
    .feature-title.typewriter.typewriter-visible {
        animation: typewriter-reveal 1.4s ease-out forwards;
    }
}

@media (max-width: 991.98px) {

    h2.typewriter.typewriter-visible,
    .feature-title.typewriter.typewriter-visible {
        animation: none;
    }
}


/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background: var(--gold-dark);
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 0.84px;
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--gold-light);
}

.top-bar-item i {
    font-size: 13px;
}

/* ============================================
   NAVIGATION (Bootstrap)
   ============================================ */

.main-nav {
    position: sticky;
    /* background: linear-gradient(180deg, rgba(40, 35, 22, 0.92) 0%, rgba(15, 13, 8, 0.92) 100%); */
    padding: 0 !important;
    top: 0;
    z-index: 1000;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/nav-layer-img.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* mobile / small screens, overridden on desktop */
}

/* Desktop: left links push right, right links push left */
.nav-left-collapse {
    flex: 1;
    justify-content: flex-end;
}

.nav-left-links {
    justify-content: flex-end;
    padding-right: 35px;
    gap: 20px;
}

.nav-right-collapse {
    flex: 1;
    justify-content: flex-start;
}

.nav-right-links {
    justify-content: flex-start;
    padding-left: 35px;
    gap: 20px;
}

/* Nav links styling */
.main-nav .nav-link {
    color: var(--text-white) !important;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 24px 38px !important;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--gold-accent) !important;
}

/* Dropdown Menu */
.main-nav .dropdown-menu {
    background: rgba(15, 13, 8, 0.98);
    border: 1px solid rgba(193, 157, 96, 0.25);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: block;
}

/* Desktop: open dropdown on hover */
@media (min-width: 992px) {
    .main-nav .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile: open dropdown on click via .show class */
@media (max-width: 991.98px) {
    .main-nav .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding-left: 15px;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .main-nav .dropdown-menu.show {
        display: block;
    }
}

.main-nav .dropdown-item {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:focus {
    background: rgba(193, 157, 96, 0.15);
    color: var(--gold-accent);
}

.main-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top-color: var(--gold-accent);
}

/* Center logo */
.nav-logo {
    flex-shrink: 0;
    padding: 8px 0;
    order: 0;
}

.nav-logo img {
    width: 144px;
    height: 99px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

/* Small laptop / medium desktop tweaks so nav doesn't break */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .main-nav .nav-link {
        font-size: 12px;
        padding: 14px 20px !important;
    }

    .nav-left-links {
        padding-right: 12px;
        gap: 10px;
    }

    .nav-right-links {
        padding-left: 12px;
        gap: 10px;
    }

    .nav-logo img {
        width: 120px;
        height: 82px;
    }
}

/* Desktop nav: keep logo centered with left/right links on one line */
@media (min-width: 992px) {
    .main-nav .container {
        flex-wrap: nowrap;
    }
}

/* Bootstrap toggler override */
.main-nav .navbar-toggler {
    border: 1px solid rgba(193, 157, 96, 0.4);
    padding: 6px 10px;
    order: 2;
}

.main-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(193, 157, 96, 0.25);
}

.main-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu (below lg breakpoint) */
#navbarMobile {
    width: 100%;
    background: rgba(15, 13, 8, 0.98);
    border-top: 1px solid rgba(193, 157, 96, 0.15);
}

.mobile-nav-list {
    padding: 10px 0;
    align-items: flex-start !important;
}

.mobile-nav-list .nav-link {
    padding: 14px 20px !important;

    text-align: left;
}

.mobile-nav-list .nav-item:last-child .nav-link {
    border-bottom: none;
}

/* Hide desktop left/right collapses on mobile, show mobile menu */
@media (max-width: 991px) {
    .main-nav .container {
        justify-content: flex-start;
    }

    .nav-left-collapse,
    .nav-right-collapse {
        display: none !important;
    }

    .nav-logo {
        margin-right: auto;
    }

    .nav-logo img {
        width: 110px;
        height: 75px;
    }
}


/* ============================================
   BANNER SECTION
   ============================================ */

.banner-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/images/banner-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}

.banner-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

/* Banner load animation (desktop) */
@keyframes banner-intro {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 646px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(122, 107, 69, 0.20);
    backdrop-filter: blur(17.5px);
    -webkit-backdrop-filter: blur(17.5px);
    text-align: right;
}

@media (min-width: 992px) {
    .banner-content.banner-intro {
        animation: banner-intro 0.9s ease-out 0.2s both;
    }
}

@media (max-width: 991.98px) {
    .banner-content.banner-intro {
        opacity: 1;
        transform: none;
    }
}

.banner-title {
    color: var(--text-white);
    font-family: 'PT Sans', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.banner-subtitle {
    color: var(--text-white);
    font-family: 'PT Sans', sans-serif;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner-description {
    color: var(--text-light-gray);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.84px;
    margin-bottom: 30px;
}

.banner-section .btn-banner {
    display: inline-block;
    background: linear-gradient(87.59deg, rgba(0, 0, 0, 0.5) 0.86%, rgba(223, 205, 142, 0.5) 99.14%);

    color: #FFF;
    border: none;
    padding: 14px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-banner:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 157, 96, 0.4);
}


/* ============================================
   ABOUT US SECTION
   ============================================ */

.about-section {
/*     padding: 80px 100px; */
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    /* top: 50%; */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 80%;
    background-image: url('assets/images/about-us-bg.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1.4;
    pointer-events: none;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 40px;
    max-width: 100%;
}

.about-description {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 30px;
}

.about-features {
    margin-top: 10px;
}

.about-feature-card {
    background: #7A6B457A;
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    border: 1px solid rgba(193, 157, 96, 0.25);
    border-radius: 12px;
    padding: 30px 28px;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(193, 157, 96, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
}

.feature-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: var(--gold-accent);
}

.feature-title {
    color: #FFFFFF;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 0;
}

.feature-description {
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* About Images */
.about-images {
    position: relative;
    height: 500px;
    margin-left: 30px;
}

.about-img-1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 320px;
    z-index: 3;
    overflow: hidden;
	top: 132px;
}

.about-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-frame {
    content: '';
    position: absolute;
    left: 25%;
    top: 18%;
    width: 250px;
    height: 400px;
    border: 2px solid #DFCD8E;
    z-index: 5;
    pointer-events: none;
}

.about-img-2 {
    position: absolute;
    right: 0;
    top: 0;
    width: 253px;
    height: 421px;
    z-index: 1;
    overflow: hidden;
}

.about-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
/*     padding: 80px 100px; */
    background-color: #000;
    position: relative;
    overflow: hidden;
    background-image: url('assets/images/service-bg-99.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 0;
    right: auto;
    width: 40%;
    height: 100%;
    background-image: url('assets/images/service-bg-2.webp');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    top: -32%;
    right: 0;
    width: 29%;
    height: 100%;
    background-image: url('assets/images/service-bg-3.webp');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.services-bg-mid {
    position: absolute;
    bottom: -58%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 111%;
    background-image: url('assets/images/service-bg-4.webp');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(193, 157, 96, 0.25);
    padding: 15px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--gold-accent), transparent);
    opacity: 0.3;
    transition: height 0.5s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    border-color: rgba(193, 157, 96, 0.5);
}

.service-card:hover::before {
    height: 100%;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    z-index: 1;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 30px 0px;
    text-align: left;
}

.service-title {
    color: #FFFFFF;
    font-family: 'PM sans', serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--gold-accent);
}

.service-description {
    color: #FFF;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-service-more {
    background: rgba(122, 107, 69, 0.7);
    color: #FFF;
    border: none;
    padding: 12px 32px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
	text-decoration: none;
}

.btn-service-more:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 157, 96, 0.4);
}




/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-section {
/*     padding: 80px 100px; */
    background-color: #000;
    position: relative;
    background-image: url('assets/images/why-choose-us-bg1.webp');
    background-size: 45%;
    background-position: left center;
    background-repeat: no-repeat;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 59%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 60%;
    background-image: url('assets/images/Ellipse2.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    pointer-events: none;
    z-index: 0;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 100%;
    height: 85%;
    background-image: url('assets/images/why-choose-us-bg2.webp');
    background-size: 65%;
    background-position: right top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-content {
    padding-right: 30px;
}

.why-description {
    color: rgba(255, 255, 255, 1);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
/*     margin-bottom: 16px; */
}

.why-features {
    list-style: none;
    padding: 0;
/*     margin: 30px 0; */
}

.why-features li {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.why-features li::before {
    content: '●';
    color: var(--gold-accent);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.btn-view-more {
    background: rgba(122, 107, 69, 0.7);
    color: #FFF;
    border: none;
    padding: 14px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.btn-view-more:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 157, 96, 0.4);
}

/* Quote Form */
.quote-form-wrapper {
    position: relative;
    background:url('https://proclivitydemo.co.in/wpdemo/afz-gate-fence/wp-content/uploads/2026/02/Rectangle-19.png') center/cover no-repeat;
    border: 2px solid rgba(193, 157, 96, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
}

.form-title {
    color: #FFFFFF;
    font-family: 'PT Sans', serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 0;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    border-bottom-color: var(--gold-accent);
}

.form-select {
    cursor: pointer;
    background: transparent;
}

.form-select option {
    background: #1a1a1a;
    color: #fff;
}

.form-textarea {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    resize: none;
    border-radius: 4px;
}

.form-textarea:focus {
    border-color: var(--gold-accent);
}

.btn-book-appointment {
    width: 100%;
    background: rgba(122, 107, 69, 0.7);
    color: #FFF;
    border: none;
    padding: 16px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.btn-book-appointment:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(193, 157, 96, 0.5);
}


/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
/*     padding: 80px 100px; */
    background-color: var(--dark-bg);
    position: relative;
    background: url('assets/images/gallery-bg.webp') center/cover no-repeat;
}

.gallery-title {
    color: #FFFFFF;
    font-family: 'PT Sans', serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
    line-height: 1.2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.15);
    background-color: #000;
    height: 195px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(193, 157, 96, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 48px;
    color: #fff;
    z-index: 3;
    transition: transform 0.4s ease;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.gallery-item.gallery-tall {
    height: 100%;
    min-height: 413px;
}

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

.gallery-item:hover {
    border-color: rgba(193, 157, 96, 0.8);
    box-shadow: 0 0 30px rgba(193, 157, 96, 0.4), inset 0 0 20px rgba(193, 157, 96, 0.1);
}

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

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

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid rgba(193, 157, 96, 0.5);
    box-shadow: 0 0 50px rgba(193, 157, 96, 0.3);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    background: rgba(0, 0, 0, 0.7);
    margin-top: 15px;
    border-radius: 5px;
    min-width: 300px;
}

.lightbox-counter {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    background: rgba(193, 157, 96, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 80px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
    background: rgba(193, 157, 96, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.lightbox-close:hover {
    background: rgba(193, 157, 96, 1);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    background: rgba(193, 157, 96, 0.9);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(193, 157, 96, 1);
    transform: translateY(-50%) scale(1.1);
}


/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
/*     padding: 80px 100px; */
    background-color: var(--dark-bg);
}

.testimonial-card {
    position: relative;
    border-radius: 15px;
    overflow: visible !important;
    /* Allow avatar to overlap border */
    margin-top: 45px;
    /* Create space for overlapping avatar */
    min-height: 300px;
    /* Maintain height since image is absolute */
}

.testimonial-card img {
    width: 100%;
    height: 342px;
    object-fit: cover;
    position: absolute;
    /* Take image out of flow to prevent pushing content */
    top: 0;
    left: 0;
    border-radius: 15px;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(122, 107, 69, 0.5);
    border-radius: 15px;
    pointer-events: none;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-content {
    position: absolute;
    top: 60px;
    /* Position closer to the top avatar */
    left: 20px;
    right: 20px;
    z-index: 2;
}

.testimonial-avatar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 87px;
    height: 87px;
    background: #3F3E3E;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

.testimonial-avatar-inner {
    width: 71px;
    height: 70px;
    background: #d3d3d3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-name {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 16px;
}

.star {
    width: 15px;
    height: 15px;
}

.testimonial-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.78;
}

.testimonial-dots {
    text-align: center;
    font-size: 18px;
    color: var(--gold-accent);
    font-weight: 700;
    margin-top: 8px;
}


/* ============================================
   BLOGS SECTION
   ============================================ */

.blogs-section {
/*     padding: 0px 0 100px; */
    background-color: var(--dark-bg);
}

.blog-card {
    position: relative;
    background: transparent;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    padding-bottom: 80px;
    margin-bottom: 20px;
    overflow: visible;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-content {
    position: absolute;
    left: 25px;
    right: -4px;
    bottom: -15px;
    padding: 40px;
    background: rgba(122, 107, 69, 0.70);
    backdrop-filter: blur(2.5px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    transition: box-shadow 0.4s ease;
    overflow: visible;
}

.blog-card:hover .blog-content {
    box-shadow: 0 10px 30px 0 rgba(193, 157, 96, 0.3);
}

.blog-title {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: var(--gold-light);
}

.blog-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.blog-meta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.blog-meta span i {
    color: var(--gold-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-meta span {
    color: var(--text-white);
}

.blog-card:hover .blog-meta span i {
    color: var(--gold-light);
}

.blog-content a {
    text-decoration: none;
}


/* ============================================
   FOOTER
   ============================================ */

footer {
    position: relative;
    background: url('assets/images/footer-bg.webp') center/cover no-repeat;
    /*     padding: var(--footer-padding-y) var(--footer-padding-x); */
    /*     overflow: hidden; */
}

footer::before {
    content: '';
    position: absolute;
    inset: 0;
    /*     background: rgba(0, 0, 0, var(--footer-overlay-opacity)); */
    z-index: 1;
}

footer .container,
footer .row,
footer .footer-section {
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: var(--footer-logo-width);
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-section h4 {
    font-size: 20px;
    color: var(--text-light-gray);
    margin-bottom: 24px;
}

.footer-section ul li {
    margin-bottom: 16px;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-left: 0;
}

.footer-section a i {
    color: var(--gold-accent);
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 18px;
}

.footer-section a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-section a:hover i {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-section p {
    font-size: 16px;
    line-height: 1.78;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    line-height: 1.78;
}

.contact-info p i {
    color: var(--gold-accent);
    font-size: 16px;
    min-width: 18px;
    transition: all 0.3s ease;
}

.contact-info p:hover i {
    color: var(--gold-light);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 0.5px solid var(--text-white);
    padding-top: 24px;
    margin-top: 24px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   SCROLL ANIMATIONS & PARALLAX
   (desktop only for motion; mobile kept static)
   ============================================ */

/* Base state for reveal-on-scroll elements (desktop) */
@media (min-width: 992px) {
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        will-change: opacity, transform;
    }

    .reveal-on-scroll.reveal-left {
        transform: translateX(-24px);
    }

    .reveal-on-scroll.reveal-right {
        transform: translateX(24px);
    }

    .reveal-on-scroll.reveal-fade {
        transform: translateY(0);
    }

    .reveal-on-scroll.reveal-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    /* Subtle parallax-style background (CSS only) */
    .banner-section,
    .services-section,
    .why-choose-section,
    .about-section,
    .gallery-section {
        background-attachment: fixed;
    }
}

/* On tablet/mobile keep everything static & visible */
@media (max-width: 991.98px) {
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}


/* ============================================
   GLOWING EFFECTS & SECTION-WISE ANIMATIONS
   ============================================ */

/* Keyframes */
@keyframes glow-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(193, 157, 96, 0.25);
    }

    50% {
        opacity: 0.95;
        box-shadow: 0 0 28px rgba(193, 157, 96, 0.4);
    }
}

@keyframes glow-border {

    0%,
    100% {
        border-color: rgba(193, 157, 96, 0.4);
        box-shadow: 0 0 15px rgba(193, 157, 96, 0.2);
    }

    50% {
        border-color: rgba(193, 157, 96, 0.7);
        box-shadow: 0 0 25px rgba(193, 157, 96, 0.35);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- Top bar --- */
.top-bar-item:hover {
    text-shadow: 0 0 12px rgba(223, 205, 142, 0.5);
}

/* --- Navigation --- */
.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    text-shadow: 0 0 14px rgba(193, 157, 96, 0.5);
}

.nav-logo img:hover {
    filter: drop-shadow(0 0 10px rgba(193, 157, 96, 0.4));
}

/* --- Banner --- */
.banner-content {
    transition: box-shadow 0.5s ease, border 0.5s ease;
}

.banner-content:hover {
    box-shadow: 0 0 40px rgba(193, 157, 96, 0.2), inset 0 0 60px rgba(193, 157, 96, 0.05);
}

.btn-banner:hover {
    box-shadow: 0 5px 25px rgba(193, 157, 96, 0.5), 0 0 30px rgba(193, 157, 96, 0.25);
}

/* --- About Us --- */
.about-feature-card {
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.about-feature-card:hover {
    box-shadow: 0 0 30px rgba(193, 157, 96, 0.25), inset 0 0 40px rgba(193, 157, 96, 0.05);
    border-color: rgba(193, 157, 96, 0.45);
}

.about-img-1,
.about-img-2 {
    transition: box-shadow 0.4s ease;
}

.about-img-1:hover,
.about-img-2:hover {
    box-shadow: 0 0 25px rgba(193, 157, 96, 0.3);
}

.about-img-frame {
    transition: box-shadow 0.4s ease;
}

.about-images:hover .about-img-frame {
    box-shadow: 0 0 20px rgba(193, 157, 96, 0.35);
}

/* --- Services --- */
.services-section .section-tag {
    transition: box-shadow 0.4s ease;
}

.services-section .section-tag:hover {
    box-shadow: 0 0 20px rgba(193, 157, 96, 0.3);
}

.service-card:hover {
    box-shadow: 0 0 35px rgba(193, 157, 96, 0.2), 0 0 50px rgba(193, 157, 96, 0.1);
}

.btn-service-more:hover {
    box-shadow: 0 5px 25px rgba(193, 157, 96, 0.5), 0 0 28px rgba(193, 157, 96, 0.25);
}

/* --- Why Choose Us --- */
.quote-form-wrapper {
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

.quote-form-wrapper:hover {
    box-shadow: 0 0 40px rgba(193, 157, 96, 0.2), inset 0 0 50px rgba(193, 157, 96, 0.04);
    border-color: rgba(193, 157, 96, 0.5);
}

.why-features li {
    transition: text-shadow 0.3s ease;
}

.why-features li:hover {
    text-shadow: 0 0 12px rgba(193, 157, 96, 0.35);
}

.btn-view-more:hover {
    box-shadow: 0 5px 25px rgba(193, 157, 96, 0.5), 0 0 28px rgba(193, 157, 96, 0.25);
}

.btn-book-appointment:hover {
    box-shadow: 0 5px 25px rgba(193, 157, 96, 0.45), 0 0 30px rgba(193, 157, 96, 0.2);
}

.form-input:focus,
.form-textarea:focus {
    box-shadow: 0 2px 15px rgba(193, 157, 96, 0.15);
}

/* --- Gallery --- */
.gallery-item:hover {
    box-shadow: 0 0 30px rgba(193, 157, 96, 0.35), 0 0 50px rgba(193, 157, 96, 0.15);
}

/* --- Testimonials --- */
.testimonial-card {
    transition: box-shadow 0.4s ease;
}

.testimonial-card:hover {
    box-shadow: 0 0 35px rgba(193, 157, 96, 0.25), 0 0 45px rgba(193, 157, 96, 0.1);
}

.testimonial-card:hover::after {
    border-color: rgba(193, 157, 96, 0.6);
    box-shadow: inset 0 0 30px rgba(193, 157, 96, 0.08);
}

.star-rating .star {
    transition: filter 0.3s ease;
}

.testimonial-card:hover .star-rating .star {
    filter: drop-shadow(0 0 6px rgba(193, 157, 96, 0.6));
}

/* --- Blogs --- */
.blog-card:hover .blog-content {
    box-shadow: 0 10px 35px rgba(193, 157, 96, 0.25), 0 0 40px rgba(193, 157, 96, 0.1);
}

/* --- Footer --- */
.contact-info p:hover {
    text-shadow: 0 0 10px rgba(193, 157, 96, 0.3);
}

.footer-bottom a:hover {
    text-shadow: 0 0 12px rgba(193, 157, 96, 0.4);
}

/* Section tag subtle pulse (desktop only) */
@media (min-width: 992px) {
    .section-tag {
        animation: glow-pulse 4s ease-in-out infinite;
    }
}


/* ============================================
   SLICK SLIDER CUSTOM STYLES
   ============================================ */

/* Slide spacing */
.slick-slide {
    padding: 0 12px;
}

.slick-list {
    margin: 0 -12px;
}

/* Arrows */
.slick-prev,
.slick-next {
    width: 44px;
    height: 44px;
    background: rgba(122, 107, 69, 0.3) !important;
    border: 1px solid rgba(193, 157, 96, 0.4);
    border-radius: 50%;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--gold-accent) !important;
    border-color: var(--gold-accent);
}

.slick-prev {
    left: -55px;
}

.slick-next {
    right: -55px;
}

.slick-prev i,
.slick-next i {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1;
}

.slick-prev:hover i,
.slick-next:hover i {
    color: #000;
}

/* Arrow icons (visible on all breakpoints including mobile) */
.slick-prev:before,
.slick-next:before {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    opacity: 1;
    -webkit-font-smoothing: antialiased;
}

.slick-prev:before {
    content: '\2039';
}

.slick-next:before {
    content: '\203A';
}

.slick-prev:hover:before,
.slick-next:hover:before {
    color: #000;
}

/* Force arrows visible (Slick can hide when slideCount <= slidesToShow) */
.slick-prev,
.slick-next {
    display: flex !important;
}

/* Dots */
.slick-dots {
    bottom: -45px;
}

.slick-dots li {
    margin: 0 4px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: rgba(193, 157, 96, 0.4);
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    color: var(--gold-accent);
    opacity: 1;
}

/* Section bottom padding for dots */
.services-slider,
.testimonials-slider,
.blogs-slider {
    padding-bottom: 30px;
}


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

/* Desktop Large (≥1200px) */
@media (min-width: 1200px) {
    .blog-card {
        padding-bottom: 100px;
    }

    .blog-image {
        height: 380px;
		width: 356px;
		
    }

    .blog-title {
        font-size: 22px;
    }
}

/* Tablet (≤768px) */
@media (max-width: 768px) {

    /* Top Bar */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-item span {
        font-size: 13px;
    }

    /* Banner Section */
    .banner-section {
        min-height: 480px;
    }

    .banner-content {
        max-width: 420px;
        padding: 40px 35px;
    }

    .banner-title {
        font-size: 34px;
        letter-spacing: 2.5px;
    }

    .banner-subtitle {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .banner-description {
        font-size: 13px;
    }

    .btn-banner {
        padding: 12px 32px;
        font-size: 13px;
    }

    /* Services Section */
    .services-section {
        padding: 48px 24px;
    }

    .service-image {
        height: 280px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 14px;
    }

    /* Services Section */
    .services-section {
        padding: 48px 24px;
        background-size: 35%;
    }

    .services-section::before {
        width: 25%;
        height: 50%;
        filter: blur(100px);
    }

    .services-section::after {
        width: 35%;
    }

    /* About Us Section */
    .about-section {
        padding: 48px 24px;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .about-images {
        height: 350px;
        margin: 0 auto;
        max-width: 500px;
        margin-left: 0;
    }

    .about-img-1 {
        width: 45%;
        height: 260px;
    }

    .about-img-2 {
        width: 55%;
        height: 320px;
    }

    .about-img-frame {
        left: 25%;
        top: 12%;
        width: 40%;
        height: 55%;
    }

    .feature-title {
        font-size: 16px;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 48px 24px;
        background-size: 35%;
    }

    .why-choose-section::before {
        width: 25%;
        height: 50%;
        filter: blur(100px);
    }

    .why-choose-section::after {
        width: 35%;
    }

    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .why-title {
        font-size: 32px;
    }

    .why-description {
        font-size: 15px;
    }

    .why-features li {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .quote-form-wrapper {
        padding: 30px 25px;
    }

    .form-title {
        font-size: 28px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 48px 24px;
    }

    .gallery-title {
        font-size: 32px;
        margin-bottom: 40px;
        letter-spacing: 1px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-item.gallery-tall {
        min-height: 220px;
    }

    /* Lightbox */
    .lightbox-content img {
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 16px;
        padding: 15px;
        min-width: 250px;
    }

    .lightbox-counter {
        top: 15px;
        right: 15px;
        font-size: 16px;
        padding: 8px 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 70px;
        font-size: 35px;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 30px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 48px 24px;
    }

    .testimonial-card img {
        height: 280px;
    }

    .testimonial-content {
        bottom: 12px;
        left: 15px;
        right: 15px;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .testimonial-avatar-inner {
        width: 58px;
        height: 58px;
    }

    .testimonial-name {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .star-rating {
        gap: 10px;
        margin-bottom: 12px;
    }

    .star {
        width: 13px;
        height: 13px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    /* Blogs Section */
    .blogs-section {
        padding: 100px 16px 15px !important;
    }

    .section-tag {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .blog-card {
        padding-bottom: 60px;
        margin-bottom: 15px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 15px 12px 12px;
    }

    .blog-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-meta {
        gap: 12px;
    }

    .blog-meta span {
        font-size: 12px;
    }

    /* Footer */
    footer {
        padding: 48px 24px;
    }

    .footer-logo {
        width: 120px;
    }

    /* Slick arrows for tablet */
    .slick-prev {
        left: 10px;
    }

    .slick-next {
        right: 10px;
    }

    .slick-prev,
    .slick-next {
        width: 38px;
        height: 38px;
    }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {

    /* Top Bar */
    .top-bar {
        padding: 7px 0;
    }

    .top-bar-item {
        font-size: 12px;
        gap: 6px;
    }

    .top-bar-item i {
        font-size: 11px;
    }



    /* Banner Section */
    .banner-section {
        min-height: 420px;
    }

    .banner-section .container {
        justify-content: center;
    }

    .banner-content {
        max-width: 100%;
        padding: 35px 25px;
    }

    .banner-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .banner-subtitle {
        font-size: 17px;
        letter-spacing: 1.2px;
        margin-bottom: 16px;
    }

    .banner-description {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .btn-banner {
        padding: 12px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    /* Services Section */
    .services-section {
        padding: 100px 16px !important;
    }

    .service-image {
        height: 250px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-description {
        font-size: 13px;
        margin-bottom: 18px;
    }

    .btn-service-more {
        padding: 10px 26px;
        font-size: 12px;
    }

    .services-section {
        background-size: 40%;
        background-position: left top;
    }

    .services-section::before {
        width: 60%;
        height: 50%;
        filter: blur(100px);
    }

    .services-section::after {
        width: 40%;
        background-size: 100%;
        background-position: right bottom;
    }

    /* About Us Section */
    .about-section {
        padding: 36px 16px;
    }

    .about-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-feature-card {
        padding: 24px 20px;
    }

    .feature-icon i {
        font-size: 18px;
    }

    .feature-title {
        font-size: 15px;
        letter-spacing: 0.8px;
    }

    .feature-description {
        font-size: 13px;
    }

    .about-images {
        height: 250px;
        margin-left: 0;
    }

    .about-img-1 {
        width: 45%;
        height: 190px;
    }

    .about-img-2 {
        width: 55%;
        height: 230px;
    }

    .about-img-frame {
        left: 25%;
        top: 12%;
        width: 38%;
        height: 52%;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 36px 16px;
        background-size: 40%;
        background-position: left top;
    }

    .why-choose-section::before {
        width: 60%;
        height: 50%;
        filter: blur(100px);
    }

    .why-choose-section::after {
        width: 40%;
        background-size: 100%;
        background-position: right bottom;
    }

    .why-choose-content {
        margin-bottom: 30px;
    }

    .why-tag {
        font-size: 13px;
        padding: 6px 18px;
    }

    .why-title {
        font-size: 26px;
        margin-bottom: 18px;
    }

    .why-description {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .why-features {
        margin: 24px 0;
    }

    .why-features li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 25px;
    }

    .why-features li::before {
        font-size: 16px;
    }

    .btn-view-more {
        padding: 12px 28px;
        font-size: 13px;
    }

    .quote-form-wrapper {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-input {
        font-size: 14px;
        padding: 10px 0;
    }

    .btn-book-appointment {
        padding: 14px;
        font-size: 14px;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 36px 16px;
    }

    .gallery-title {
        font-size: 24px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .gallery-item {
        height: 200px;
        border-width: 2px;
    }

    .gallery-item.gallery-tall {
        min-height: 200px;
    }

    /* Lightbox */
    .lightbox-content img {
        max-height: 60vh;
    }

    .lightbox-caption {
        font-size: 14px;
        padding: 12px;
        min-width: 200px;
    }

    .lightbox-counter {
        top: 10px;
        right: 10px;
        font-size: 14px;
        padding: 6px 12px;
    }

    .lightbox-close {
        top: 10px;
        right: 60px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 25px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    /* Testimonials Section */
    .testimonials-section {
        padding: 100px 16px 15px !important;
    }

    .testimonial-card img {
        height: 250px;
    }

    .testimonial-content {
        bottom: 10px;
        left: 12px;
        right: 12px;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .testimonial-avatar-inner {
        width: 50px;
        height: 50px;
    }

    .testimonial-avatar-inner svg {
        width: 45px;
        height: 45px;
    }

    .testimonial-name {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .star-rating {
        gap: 8px;
        margin-bottom: 10px;
    }

    .star {
        width: 12px;
        height: 12px;
    }

    .testimonial-text {
        font-size: 12px;
        line-height: 1.6;
    }

    /* Blogs Section */
    .blog-card {
        padding-bottom: 50px;
        margin-bottom: 10px;
    }

    .blog-content {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px 10px 10px;
    }

    .blog-title {
        font-size: 16px;
    }

    .blog-meta {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    /* Slick arrows for mobile */
    .slick-prev {
        left: 5px;
    }

    .slick-next {
        right: 5px;
    }

    .slick-prev,
    .slick-next {
        width: 34px;
        height: 34px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 18px;
    }

    .slick-dots {
        bottom: -35px;
    }

    .slick-slide {
        padding: 0 8px;
    }

    .slick-list {
        margin: 0 -8px;
    }
}

/* ============================================
   INNER PAGE — BREADCRUMB BANNER
   ============================================ */

.inner-banner {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left;

}

.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner-content h1 {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.inner-banner .breadcrumb {
    justify-content: start;
    margin: 0;
    padding: 0;
    background: none;
}

.inner-banner .breadcrumb-item a {
    color: var(--gold-accent);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.inner-banner .breadcrumb-item.active {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: var(--gold-accent);
    font-size: 18px;
    padding: 0 10px;
}

@media (max-width: 767.98px) {
    .inner-banner {
        min-height: 260px;
    }

    .inner-banner-content h1 {
        font-size: 18px;
        letter-spacing: 2px;
    }
}

/* ============================================
   INNER PAGE — OUR PROCESS SECTION
   ============================================ */

.our-process-section {
    position: relative;
    padding: 80px 100px;
    background-color: #000;
    overflow: hidden;
}

.our-process-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/service-bg-99.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.process-card {
    background: rgba(122, 107, 69, 0.15);
    border: 1px solid rgba(193, 157, 96, 0.25);
    border-radius: 12px;
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--gold-accent), transparent);
    opacity: 0.15;
    transition: height 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.process-card:hover {
    border-color: rgba(193, 157, 96, 0.5);
    transform: translateY(-6px);
}

.process-card:hover::before {
    height: 100%;
}

.process-step-number {
    font-family: 'PT Sans', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #FFF;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(193, 157, 96, 0.12);
    border-radius: 50%;
    border: 1px solid rgba(193, 157, 96, 0.3);
    position: relative;
    z-index: 1;
}

.process-icon i {
    font-size: 28px;
    color: var(--gold-accent);
}

.process-title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.process-description {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .our-process-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .our-process-section {
        padding: 50px 15px;
    }
}

/* ============================================
   CONTACT PAGE — INFO CARDS
   ============================================ */

.contact-info-section {
    padding: 80px 0;
    background: #0a0a0a;
}

.contact-info-card {
    background: rgba(122, 107, 69, 0.1);
    border: 1px solid rgba(193, 157, 96, 0.2);
    border-radius: 14px;
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;

    
}

.contact-info-card:hover {
    border-color: rgba(193, 157, 96, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(193, 157, 96, 0.08);
}


.contact-info-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(193, 157, 96, 0.2), rgba(193, 157, 96, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(193, 157, 96, 0.35);
}

.contact-info-icon i {
    font-size: 26px;
    color: var(--gold-accent);
}

.contact-info-title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-text a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============================================
   CONTACT PAGE — FORM & MAP
   ============================================ */

.contact-form-section {
    position: relative;
    padding: 80px 0 100px;
    background: #000;
    overflow: hidden;
}

.contact-form-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/service-bg-99.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    pointer-events: none;
}

.contact-form-wrapper {
    height: 100%;
}

/* Form inputs */
.contact-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(193, 157, 96, 0.2) !important;
    border-radius: 8px !important;
    padding: 14px 18px !important;
    color: #fff !important;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus {
    border-color: var(--gold-accent) !important;
    box-shadow: 0 0 0 3px rgba(193, 157, 96, 0.12) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none;
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-accent), #a07a3a);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 14px 36px;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 157, 96, 0.3);
}

/* Map wrapper */
.contact-map-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(193, 157, 96, 0.25);
    flex-shrink: 0;
}

.contact-map-frame iframe {
    display: block;
    border-radius: 14px;
}

/* Company card */
.contact-company-card {
    margin-top: 24px;
    background: rgba(122, 107, 69, 0.12);
    border: 1px solid rgba(193, 157, 96, 0.2);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
}

.contact-company-logo img {
    width: 80px;
    height: auto;
}

.contact-company-info h4 {
    color: var(--gold-accent);
    font-family: 'PT Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-company-info p {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-company-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(193, 157, 96, 0.1);
    border: 1px solid rgba(193, 157, 96, 0.25);
    border-radius: 6px;
    padding: 5px 12px;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--gold-accent);
    letter-spacing: 0.5px;
}

.company-badge i {
    font-size: 11px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-form-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .contact-info-section {
        padding: 50px 15px;
    }

    .contact-form-section {
        padding: 50px 15px;
    }

    .contact-company-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-company-badges {
        justify-content: center;
    }
}

/* ============================================
   GALLERY PAGE
   ============================================ */

.gallery-page-section {
    position: relative;
    padding: 80px 0 100px;
    background: #000;
    overflow: hidden;
}

.gallery-page-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/gallery-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
}

.gallery-page-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ---- Filter Tabs ---- */
.gallery-filter-wrapper {
    margin-bottom: 48px;
}

.gallery-filter-scroll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
}

/* Individual Tab Button */
.gallery-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border: 1px solid rgba(193, 157, 96, 0.25);
    border-radius: 50px;
    background: rgba(15, 13, 8, 0.8);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.gallery-filter-btn:hover {
    border-color: var(--gold-accent);
    color: #fff;
    background: rgba(193, 157, 96, 0.08);
}

.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--gold-accent), #a07a3a);
    color: #000;
    border-color: var(--gold-accent);
    box-shadow: 0 4px 20px rgba(193, 157, 96, 0.35);
}

.gallery-filter-btn .filter-icon {
    font-size: 12px;
}

.gallery-filter-btn .filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.gallery-filter-btn.active .filter-count {
    background: rgba(0, 0, 0, 0.2);
    color: #000;
}

/* ---- Gallery Grid Items ---- */
.gallery-grid-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-grid-item.gallery-hidden {
    opacity: 0;
    transform: scale(0.85);
    position: absolute !important;
    visibility: hidden;
    pointer-events: none;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.gallery-grid-item.gallery-visible {
    opacity: 1;
    transform: scale(1);
}

/* Gallery item card */
.gallery-page-section .gallery-item {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(193, 157, 96, 0.15);
    cursor: pointer;
/*     aspect-ratio: 1 / 1; */
}

/* Hide any plugin/WooCommerce lightbox trigger icons */
.gallery-page-section .gallery-item::after {
    display: none !important;
}

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

.gallery-page-section .gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-page-section .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-page-section .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-page-section .gallery-overlay-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    margin-bottom: 12px;
    transform: scale(0.6);
    transition: transform 0.4s ease;
}

.gallery-page-section .gallery-item:hover .gallery-overlay-icon {
    transform: scale(1);
}

.gallery-page-section .gallery-overlay-icon i {
    font-size: 20px;
    color: var(--gold-accent);
}

.gallery-page-section .gallery-overlay-text {
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease 0.1s;
}

.gallery-page-section .gallery-item:hover .gallery-overlay-text {
    opacity: 1;
    transform: translateY(0);
}

/* No Results */
.gallery-no-results {
    text-align: center;
    padding: 60px 20px;
}

.gallery-no-results i {
    font-size: 48px;
    color: rgba(193, 157, 96, 0.3);
    margin-bottom: 16px;
}

.gallery-no-results p {
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

/* ---- Video Items ---- */
.gallery-video-item {
    cursor: pointer;
}

.gallery-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.gallery-play-icon {
    background: rgba(193, 157, 96, 0.2) !important;
    border-color: var(--gold-accent) !important;
    transform: scale(1) !important;
}

.gallery-play-icon i {
    margin-left: 3px;
    /* optical center for play triangle */
}

.gallery-page-section .gallery-video-item .gallery-video-overlay {
    opacity: 0.8;
}

.gallery-page-section .gallery-video-item:hover .gallery-video-overlay {
    opacity: 1;
}

.gallery-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-video-placeholder i {
    font-size: 40px;
    color: rgba(193, 157, 96, 0.25);
}

/* ---- Video Lightbox ---- */
.lightbox-video-wrap {
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-video-wrap video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
    outline: none;
}


/* Responsive */
@media (max-width: 767.98px) {
    .gallery-page-section {
        padding: 50px 15px;
    }

    .gallery-filter-btn {
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

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

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.lightbox-img-wrap {
    max-width: 85vw;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold-accent);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(193, 157, 96, 0.12);
    border: 1px solid rgba(193, 157, 96, 0.3);
    color: var(--gold-accent);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold-accent);
    color: #000;
}

.lightbox-caption {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}

.lightbox-counter {
    position: absolute;
    top: 28px;
    left: 28px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

@media (max-width: 767.98px) {
    .gallery-page-section {
        padding: 50px 15px;
    }

    .lightbox-prev {
        left: 10px;
        width: 38px;
        height: 38px;
    }

    .lightbox-next {
        right: 10px;
        width: 38px;
        height: 38px;
    }

    .lightbox-img-wrap {
        max-width: 95vw;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page-section {
    position: relative;
    padding: 80px 0 100px;
    background: #0a0a0a;
    overflow: hidden;
}

.services-page-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/services-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.services-page-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* Service card — unique border design */
.sp-service-card {
    position: relative;
    background: rgba(15, 13, 8, 0.85);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Animated corner border - top-left and bottom-right gold accent */
.sp-card-border {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    z-index: 1;
    pointer-events: none;
}

.sp-card-border::before,
.sp-card-border::after {
    content: '';
    position: absolute;
    transition: all 0.5s ease;
}

/* Top-left corner accent */
.sp-card-border::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold-accent);
    border-left: 2px solid var(--gold-accent);
    border-radius: 14px 0 0 0;
}

/* Bottom-right corner accent */
.sp-card-border::after {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border-bottom: 2px solid var(--gold-accent);
    border-right: 2px solid var(--gold-accent);
    border-radius: 0 0 14px 0;
}

/* On hover — expand corner accents to full border */
.sp-service-card:hover .sp-card-border::before {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    border-top: 2px solid rgba(193, 157, 96, 0.5);
    border-left: 2px solid rgba(193, 157, 96, 0.5);
    border-right: 2px solid rgba(193, 157, 96, 0.5);
    border-bottom: 2px solid rgba(193, 157, 96, 0.5);
}

.sp-service-card:hover .sp-card-border::after {
    width: 0;
    height: 0;
}

.sp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(193, 157, 96, 0.1);
}

/* Image */
.sp-service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.sp-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-service-card:hover .sp-service-image img {
    transform: scale(1.06);
}

/* Content */
.sp-service-content {
    padding: 28px 24px 32px;
}

.sp-service-title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.sp-service-desc {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
}

.sp-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-accent);
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-service-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sp-service-btn:hover {
    color: var(--gold-light);
}

.sp-service-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 991.98px) {
    .services-page-section {
        padding: 60px 20px;
    }
}

@media (max-width: 767.98px) {
    .services-page-section {
        padding: 50px 15px;
    }

    .sp-service-image {
        height: 180px;
    }
}

/* ============================================
   SINGLE SERVICE PAGE
   ============================================ */

.single-service-section {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

/* Featured image */
.single-service-featured {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    border: 1px solid rgba(193, 157, 96, 0.15);
}

.single-service-featured img {
    width: 100%;
    height: 398.13px;
    display: block;
	object-fit: cover;
}

/* Content body — WordPress editor output */
.single-service-body {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    letter-spacing: 0.3px;
}

.single-service-body h2,
.single-service-body h3,
.single-service-body h4 {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    margin: 32px 0 14px;
}

.single-service-body h2 {
    font-size: 28px;
    letter-spacing: 1px;
	color: var(--gold-accent);
}

.single-service-body h3 {
    font-size: 22px;
	    color: var(--gold-accent);
}

.single-service-body h4 {
    font-size: 18px;
    color: var(--gold-accent);
	    color: var(--gold-accent);
}

.single-service-body p {
    margin-bottom: 18px;
	color: #fff;
}
/* Mobile Styles */
@media (max-width: 767px) {

    .single-service-body h2 {
        font-size: 22px;
        letter-spacing: 0.5px;
    }

    .single-service-body h3 {
        font-size: 18px;
    }

    .single-service-body h4 {
        font-size: 16px;
    }

    .single-service-body p {
        margin-bottom: 14px;
        font-size: 14px;
    }

}

.single-service-body ul,
.single-service-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.single-service-body li {
    margin-bottom: 8px;
}

.single-service-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.single-service-body a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.single-service-body blockquote {
    border-left: 3px solid var(--gold-accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(193, 157, 96, 0.06);
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* ---- Sidebar ---- */
.service-sidebar {
    position: sticky;
    top: 100px;
}

/* Services list widget */
.sidebar-widget {
    background: rgba(15, 13, 8, 0.9);
    border: 1px solid rgba(193, 157, 96, 0.15);
    border-radius: 14px;
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(193, 157, 96, 0.15);
}

.sidebar-services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services-list li {
    margin-bottom: 0;
}

.sidebar-services-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-services-list li a i {
    font-size: 10px;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li.active a {
    background: rgba(193, 157, 96, 0.1);
    color: var(--gold-accent);
}

.sidebar-services-list li.active a {
    font-weight: 700;
    border-left: 3px solid var(--gold-accent);
    border-radius: 0 8px 8px 0;
}

.sidebar-services-list li a:hover i {
    transform: translateX(3px);
}

/* Contact CTA */
.sidebar-cta {
    background: linear-gradient(135deg, rgba(193, 157, 96, 0.15), rgba(15, 13, 8, 0.95)) !important;
    border-color: rgba(193, 157, 96, 0.3) !important;
    text-align: center;
}

.sidebar-cta-inner {
    padding: 8px 0;
}

.sidebar-cta-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(193, 157, 96, 0.25), rgba(193, 157, 96, 0.05));
    border-radius: 50%;
    border: 1px solid rgba(193, 157, 96, 0.4);
}

.sidebar-cta-icon i {
    font-size: 24px;
    color: var(--gold-accent);
}

.sidebar-cta h4 {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-accent), #a07a3a);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sidebar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 157, 96, 0.3);
    color: #000;
}

/* Why Choose Us sidebar */
.sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-features li:last-child {
    border-bottom: none;
}

.sidebar-features li i {
    color: var(--gold-accent);
    font-size: 14px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .single-service-section {
        padding: 60px 20px;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .single-service-section {
        padding: 50px 15px;
    }
}


/* wp-forms */
/* WPForms Compatibility */
.wpforms-container {
    margin: 0 !important;
}

.wpforms-form {
    margin: 0 !important;
}

.wpforms-field-container {
    padding: 0 !important;
}

.wpforms-field {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #fff !important;
    color: #fff !important;
    padding: 12px 0 !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

.wpforms-field input::placeholder,
.wpforms-field textarea::placeholder {
    color: #FFF !important;
	opacity: 1 !important;
}

.wpforms-field textarea {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 12px !important;
    resize: none !important;
    border-radius: 4px !important;
}

.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
    border-bottom-color: var(--gold-accent) !important;
    box-shadow: 0 2px 15px rgba(193, 157, 96, 0.15) !important;
}

.wpforms-field textarea:focus {
    border-color: var(--gold-accent) !important;
}

.wpforms-field select option {
    background: #1a1a1a !important;
    color: #fff !important;
}

.wpforms-submit-container {
    padding: 0 !important;
    margin: 0 !important;
}

.wpforms-submit {
    width: 100% !important;
    background: rgba(122, 107, 69, 0.7) !important;
    color: #FFF !important;
    border: none !important;
    padding: 16px !important;
    font-family: 'Lato', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border-radius: 6px !important;
}

.wpforms-submit:hover {
    background: var(--gold-light) !important;
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 25px rgba(193, 157, 96, 0.45), 0 0 30px rgba(193, 157, 96, 0.2) !important;
}

/* Hide WPForms Labels as we use placeholders or theme labels */
.wpforms-field-label {
    display: none !important;
}

.wpforms-error {
    color: #ff4d4d !important;
    font-size: 13px !important;
    margin-top: 5px !important;
}
/* ============================================
   BLOG TEMPLATES STYLING
   ============================================ */

.blog-detail-section,
.blog-list-section {
    padding: 80px 0 100px;
    background: #0a0a0a;
}

/* Blog List Grid */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 767.98px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
}

.blog-list-item {
    background: rgba(15, 13, 8, 0.9);
    border: 1px solid rgba(193, 157, 96, 0.15);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-list-item:hover {
    transform: translateY(-5px);
    border-color: rgba(193, 157, 96, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-list-thumb {
    height: 220px;
    overflow: hidden;
}

.blog-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-list-item:hover .blog-list-thumb img {
    transform: scale(1.1);
}

.blog-list-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-list-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-list-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-list-content h3 a:hover {
    color: var(--gold-accent);
}

.blog-list-meta {
    margin-top: auto;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.blog-list-meta span i {
    color: var(--gold-accent);
    margin-right: 5px;
}

/* Latest Posts Sidebar Widget */
.sidebar-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(193, 157, 96, 0.1);
}

.sidebar-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-info h5 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.4;
}

.sidebar-post-info h5 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-info h5 a:hover {
    color: var(--gold-accent);
}

.sidebar-post-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Post Pagination */
.pagination {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.pagination .page-numbers {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(193, 157, 96, 0.3);
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--gold-accent);
    color: #000;
    border-color: var(--gold-accent);
}

/* Post Navigation Cards */
.nav-card {
    background: rgba(15, 13, 8, 0.9);
    border: 1px solid rgba(193, 157, 96, 0.15);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.4s ease;
    height: 100%;
}

.nav-card a {
    text-decoration: none;
    display: block;
}

.nav-card:hover {
    transform: translateY(-5px);
    border-color: rgba(193, 157, 96, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(193, 157, 96, 0.05);
}

.nav-label {
    display: block;
    color: var(--gold-accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Lato', sans-serif;
}

.nav-title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-card:hover .nav-title {
    color: var(--gold-accent);
}

.next-nav-card.text-right .nav-label i {
    margin-left: 5px;
}

.prev-nav-card .nav-label i {
    margin-right: 5px;
}

/* SINGLE ABOUT US PAGE */
.about-img-page-img-1 {
	    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 320px;
    z-index: 3;
    overflow: hidden;
    top: 132px;
}


/* ============================================
   TERMS & CONDITIONS PAGE (Simple)
   ============================================ */

.terms-section {
    padding: 80px 100px;
    background-color: #000;
}

.terms-content {
    max-width: 100%;
}

.terms-company-info {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(193, 157, 96, 0.2);
}

.terms-company-info h2 {
    color: var(--gold-light);
    font-family: 'PT Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.terms-company-info p {
    color: #aaa;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.terms-content h3 {
    color: var(--gold-accent);
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 35px;
    margin-bottom: 14px;
}

.terms-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.terms-content ul li {
    color: #ccc;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-content>p {
    color: #999;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991.98px) {
    .terms-section {
        padding: 60px 30px;
    }
}

@media (max-width: 575.98px) {
    .terms-section {
        padding: 40px 16px;
    }

    .terms-company-info h2 {
        font-size: 22px;
    }

    .terms-content h3 {
        font-size: 18px;
    }
}