/* Fonts are loaded via HTML link for better performance */

:root {
    --bg-color: #f8f5f0;
    --primary: #684e2a;
    --secondary: #1c1c1c;
    --text: #1c1c1c;
    --text-muted: #666666;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 40px;
    --radius-md: 20px;
    --container: 1400px;
    --nav-bg: #1c1c1c;
    --accent-gold: #b89150;
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: var(--font-main) !important; */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Teko", sans-serif !important;
    color: var(--text);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-main) !important;
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 4rem;
}

.section {
    padding: 120px 0;
}

.text-center {
    text-align: center;
}

.sub-title {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #563f21;
    transform: translateY(-3px);
}

.btn-bronze {
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-bronze:hover {
    background-color: #a37f44;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 145, 80, 0.3);
}

.btn-bronze-outline {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-bronze-outline:hover {
    background: var(--accent-gold);
    color: var(--white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title-large {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.gold-text {
    color: var(--accent-gold);
}

.bg-cream {
    background-color: #fcfaf7;
}

.bg-dark {
    background-color: #1a1a1a;
    color: var(--white);
}

.btn-dark {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #000;
}

/* Header & Navbar */
.header {
    background: var(--nav-bg);
    color: var(--white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-radius: 0 0 25px 25px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-main {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '\25BE';
    font-size: 0.6rem;
    margin-top: -2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Active State */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header {
        border-radius: 0 0 15px 15px;
    }

    .btn-circle-arrow {
        display: none !important;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--nav-bg);
        display: flex !important;
        /* Ensure it is flex */
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero-container {
    padding: 0 1.5rem 1.5rem;
    margin-top: -10px;
}

.hero-main {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        url('assets/hero_b.jpeg') center/cover no-repeat;
    min-height: 85vh;
    border-radius: 0 0 60px 60px;
    display: flex;
    align-items: flex-end;
    padding: 6rem 5rem;
    position: relative;
    color: var(--white);
}

.hero-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.hero-titles h1 {
    font-family: "Teko", sans-serif !important;
    font-size: 5.5rem !important;
    line-height: 0.9;
    font-weight: 500;
    margin: 0;
    /* letter-spacing: -3px; */
    text-transform: uppercase;
}

.hero-titles .gold-text {
    color: var(--accent-gold);
    /* color: red; */
}

.hero-titles .white-text {
    color: var(--white);
}

.hero-right {
    max-width: 500px;
    padding-bottom: 0.5rem;
}

.hero-right p {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.btn-circle-arrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--accent-gold);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-circle-arrow:hover {
    background: #a68140;
    transform: translateY(-2px);
}

.arrow-icon {
    background: var(--white);
    color: var(--accent-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.carousel-dots {
    position: absolute;
    bottom: 3rem;
    right: 5rem;
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background: var(--accent-gold);
    width: 15px;
    border-radius: 10px;
}

/* Navbar Button adjustments */
.header .btn-circle-arrow {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
}

.header .arrow-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 1300px) {
    .nav-links {
        gap: 1rem;
    }

    .hero-titles h1 {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .hero-content-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hero-main {
        padding: 4rem 3rem;
    }

    .hero-titles h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 668px) {
    .hero-container {
        padding: 0px;
    }

    .hero-main {
        margin-top: -100px;
        text-align: center !important;
        padding: 0rem 1rem 4rem 1rem;
        border-radius: 0 0 40px 40px;
    }

    .hero-titles {
        width: 100%;
    }

    .hero-titles h1 {
        font-size: 2.5rem !important;
        text-align: center !important;
    }

    .hero-right p {
        font-size: 1rem;
        line-height: 1;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
}

/* About Section Styles */
.about-section {
    padding: 40px 0;
    background-color: #f9f6f1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-right {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-item h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

.stat-item span {
    font-size: 0.8rem;
    color: #8c6c4c;
    font-weight: 600;
    display: block;
}

.btn-circle-arrow.gold {
    background: #8c6c4c;
}

.btn-circle-arrow.gold .arrow-icon {
    color: #8c6c4c;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-col.center {
        grid-column: span 2;
        order: -1;
    }
}

@media (max-width: 768px) {

    .about-section {
        padding: 20px 0;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        display: flex;
        flex-direction: column;
    }

    .about-col.center {
        display: none;
        /* order: 1; */
        /* Image at the top */
    }

    .about-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-text-right {
        margin-bottom: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Keep side-by-side as per screenshot */
        gap: 1rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item span {
        font-size: 0.7rem;
    }

    .btn-circle-arrow {
        margin: 0 auto;
    }
}

/* Services Section Replication */
.services-section {
    padding: 70px 0;
    background: #fff;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 2rem;
}

.services-main-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.header-right {
    max-width: 500px;
}

.services-header-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.service-card-new {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-new:hover img {
    transform: scale(1.1);
}

.card-overlay-new {
    position: absolute;
    inset: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85)); /* Default */
}

/* Service Card Color Variations */
.service-card-new:nth-child(1) .card-overlay-new {
    background: linear-gradient(transparent 40%, rgba(20, 15, 10, 0.9)); /* Deep Umber */
}
.service-card-new:nth-child(2) .card-overlay-new {
    background: linear-gradient(transparent 40%, rgba(45, 34, 25, 0.9)); /* Roasted Coffee */
}
.service-card-new:nth-child(3) .card-overlay-new {
    background: linear-gradient(transparent 40%, rgba(30, 40, 35, 0.9)); /* Slate Green */
}
.service-card-new:nth-child(4) .card-overlay-new {
    background: linear-gradient(transparent 40%, rgba(25, 30, 45, 0.9)); /* Midnight Ash */
}
.service-card-new:nth-child(5) .card-overlay-new {
    background: linear-gradient(transparent 40%, rgba(60, 40, 30, 0.9)); /* Burnt Sienna */
}

.card-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #8c6c4c;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
}

.card-content-new h3 {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.card-content-new p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
}

@media (max-width: 1200px) {
    .services-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-main-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .services-main-title {
        font-size: 2rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
    }

    .service-card-new {
        height: 400px;
    }
}

/* Services Row (Legacy - to be removed or integrated) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
}

.service-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}

/* Portfolio Highlights Replication */
.portfolio-highlights {
    padding: 60px 0;
    background-color: #f8f5f0;
}

.section-main-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.portfolio-split {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: center;
}

.featured-project-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-item-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.portfolio-item-desc {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.quick-stats-container h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.stats-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    line-height: 1;
}

.view-more-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.view-more-link svg {
    transition: transform 0.3s ease;
}

.view-more-link:hover {
    color: var(--accent-gold);
}

.view-more-link:hover svg {
    transform: translateX(8px);
}

@media (max-width: 992px) {
    .portfolio-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-right {
        text-align: left;
    }

    .stats-list {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }

    .stat-item-row {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .portfolio-section-header {
        text-align: left !important;
    }

    .section-main-title {
        font-size: 1.9rem;
        text-align: left;
    }

    .portfolio-item-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .portfolio-item-desc {
        /* font-size: 0.9rem; */
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .stats-list {
        gap: 1rem;
    }

    .stat-value {
        font-size: 0.85rem;
    }
}

/* Portfolio Item V2 (Item 2) */
.portfolio-item-v2 {
    padding: 70px 0;
    background-color: #f8f5f0;
}

.portfolio-split.reverse {
    grid-template-columns: 0.9fr 1.1fr;
    /* Text left, Image grid right */
    gap: 6rem;
}

.portfolio-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.portfolio-grid-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .portfolio-split.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-right-images {
        order: -1;
    }

    .portfolio-left-content {
        order: 1;
    }
}

/* Portfolio Grid (Legacy) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 250px;
    gap: 2rem;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.portfolio-item.large {
    grid-column: span 3;
    grid-row: span 2;
}

.portfolio-item.tall {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.medium {
    grid-column: span 3;
    grid-row: span 1;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.portfolio-detail {
    padding-top: 1rem;
}

.portfolio-detail h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
}

/* Process Section */
.process-step h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-10px);
}

.trust-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.trust-card p {
    font-size: 0.95rem;
    opacity: 0.7;
}

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    flex: 1;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.client-meta h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.client-meta span {
    font-size: 0.85rem;
    color: var(--primary);
}

/* Inspiration */
.inspiration-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.inspiration-large {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 600px;
}

.inspiration-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ins-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    width: 100%;
}

.ins-content span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.ins-content h4 {
    font-size: 2rem;
    margin-top: 0.5rem;
}

.inspiration-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ins-small {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 290px;
}

.ins-small img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
}

/* Responsiveness 100% */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-slider {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 80px 0;
    }
}

/* ==========================================================================
   Consolidated Section Styles (Merged from separate files)
   ========================================================================== */

/* Process Section Styles (Merged from process.css) */
.process-section {
    padding: 70px 0;
    background-color: #fffce2;
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 10px;
    align-items: flex-end;
}

.process-header-right p {
    color: #3b3b3b;
    line-height: 1.8;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.process-cards-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-card {
    background: #ffffff;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.process-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

.process-card-icon {
    width: 32px;
    height: 32px;
    color: #b89150;
    opacity: 0.8;
}

.process-card-icon svg {
    width: 100%;
    height: 100%;
}

.process-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b89150;
    margin-bottom: 0.5rem;
}

.process-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.process-center-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .process-layout {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .process-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .process-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-image-col {
        order: -1;
    }
}

/* Discount CTA Section Styles (Merged from discount.css) */
.discount-section {
    padding: 60px 0;
    background-color: #f8f5f0;
}

.discount-container {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 80px;
    display: grid;
    grid-template-columns: 7fr 5fr;
    /* col-7 text, col-5 image */
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

/* High-Fidelity Topographic Background Pattern */
.discount-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cpath d='M0 100 Q 50 50, 100 100 T 200 100' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3Cpath d='M0 120 Q 50 70, 100 120 T 200 120' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3Cpath d='M0 80 Q 50 30, 100 80 T 200 80' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3Cpath d='M0 140 Q 50 90, 100 140 T 200 140' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3Cpath d='M0 60 Q 50 10, 100 60 T 200 60' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3Cpath d='M0 40 Q 50 -10, 100 40 T 200 40' fill='none' stroke='%23f2f2f2' stroke-width='1.5'/%3E%3C/svg%3E");
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.discount-content {
    position: relative;
    z-index: 2;
}

.discount-sub-title {
    color: #8c714a;
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1rem;
}

.discount-main-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #1c1c1c;
    margin-bottom: 1rem;
    /* letter-spacing: -2px; */
}

.discount-desc {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.promo-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.promo-tag-icon {
    width: 60px;
    height: 60px;
    color: #8c714a;
    transform: rotate(-15deg);
}

.promo-separator {
    width: 1px;
    height: 50px;
    background-color: #ddd;
}

.promo-text-stack {
    display: flex;
    flex-direction: column;
}

.promo-sale-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 0.1rem;
}

.promo-discount-val {
    font-size: 2rem;
    font-weight: 800;
    color: #8c714a;
    line-height: 1;
}

.btn-primary-bronze {
    display: inline-flex;
    align-items: center;
    background-color: #8c714a;
    color: #ffffff;
    padding: 0.5rem 2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(140, 113, 74, 0.25);
}

.btn-primary-bronze:hover {
    box-shadow: 0 25px 50px rgba(140, 113, 74, 0.35);
    transform: translateY(-4px);
}

.btn-icon {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    color: #8c714a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Section with multiple underlays */
.discount-visual {
    position: relative;
    padding: 40px 20px;
}

.img-underlay-1 {
    position: absolute;
    top: 5%;
    left: -12%;
    width: 125%;
    height: 105%;
    background-color: #d1c5b4;
    border-radius: 40px;
    transform: rotate(-3deg);
    z-index: 0;
    opacity: 0.6;
}

.img-underlay-2 {
    position: absolute;
    top: 15%;
    right: -12%;
    width: 125%;
    height: 95%;
    background-color: #baae9d;
    border-radius: 40px;
    transform: rotate(2deg);
    z-index: 0;
    opacity: 0.4;
}

.discount-img {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    display: block;
}

@media (max-width: 1200px) {
    .discount-container {
        padding: 60px;
        gap: 3rem;
    }

    .discount-main-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .discount-container {
        grid-template-columns: 1fr;
        padding: 60px 40px;
        /* Increased side padding */
        text-align: center;
        gap: 3rem;
    }

    .discount-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .discount-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .promo-badge-wrapper {
        justify-content: center;
        margin-bottom: 3.5rem;
    }

    .discount-visual {
        margin-top: 2rem;
        width: 100%;
        max-width: 500px;
        /* Slightly smaller for better fit */
        margin-left: auto;
        margin-right: auto;
        padding: 40px 40px;
        /* Increased side padding for breathing room */
    }

    .img-underlay-1 {
        left: 0;
        width: 100%;
        height: 105%;
        top: 2%;
        transform: rotate(-3deg);
    }

    .img-underlay-2 {
        right: 0;
        width: 100%;
        height: 100%;
        top: 8%;
        transform: rotate(2deg);
    }
}

@media (max-width: 768px) {
    .discount-container {
        padding: 20px;
        /* Increased side padding */
        border-radius: 20px;
    }

    .discount-main-title {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }

    .discount-sub-title {
        font-size: 1rem;
    }

    .promo-badge-wrapper {
        gap: 1.25rem;
        margin-bottom: 3rem;
    }

    .promo-discount-val {
        font-size: 2rem;
    }

    .promo-tag-icon {
        width: 50px;
        height: 50px;
    }

    .promo-separator {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .discount-container {
        padding: 40px 15px;
        /* More side margin for the content */
    }

    .discount-main-title {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .discount-desc {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }

    .promo-badge-wrapper {
        margin-bottom: 1.5rem;
    }

    .promo-sale-label {
        font-size: 1rem;
    }

    .promo-discount-val {
        font-size: 1.5rem;
    }


    .btn-primary-bronze {
        padding: 0.5rem 1.5rem;
        font-size: 0.8rem;
    }

    .discount-visual {
        padding: 20px 10px;
        /* Very tight spacing for small screens */
    }
}

/* Why Choose Us Section Styles (Merged from why-choose-us.css) */
.why-choose-section {
    padding: 70px 0;
    background-color: #f8f5f0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    /* Precise ratio for better balance */
    gap: 5rem;
    align-items: flex-start;
}

/* Left Column - Text Stack + Image */
.why-choose-left-stack {
    display: flex;
    flex-direction: column;
}

.why-choose-header {
    margin-bottom: 1rem;
}

.section-tag-gold {
    color: #8c714a;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: block;
    letter-spacing: 0.5px;
}

.why-choose-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.05;
    letter-spacing: -1px;
}

.why-choose-desc {
    color: #6a6a6a;
    line-height: 1.8;
    font-size: 1.05rem;
    max-width: 520px;
}

.why-choose-visual {
    position: relative;
    margin-top: 1rem;
}

.why-choose-img {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    /* Overlap slightly */
    right: 30px;
    background-color: #8c714a;
    padding: 2.2rem 2.5rem;
    border-radius: 15px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 15px 35px rgba(140, 113, 74, 0.35);
}

.exp-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    display: block;
    margin-bottom: 0.5rem;
}

.exp-text {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.1;
    display: block;
    max-width: 120px;
    margin: 0 auto;
}

/* Right Column - Feature Cards */
.why-choose-features {
    padding-top: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: #f8f5f0;
    padding: 1rem;
    /* More generous padding */
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid #fff;
}

.feature-card:hover {
    background-color: #fff;
    /* transform: translateY(-10px); */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    color: #8c714a;
    margin-bottom: 0.5rem;
    stroke-width: 1.2;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
    letter-spacing: -0.6px;
}

.feature-desc {
    color: #7a7a7a;
    font-size: 0.8rem;
    line-height: 1.5;
    font-family: sans-serif;
}

@media (max-width: 1200px) {
    .why-choose-title {
        font-size: 3rem;
    }

    .why-choose-grid {
        gap: 3.5rem;
    }
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-choose-left-stack {
        text-align: center;
        align-items: center;
    }

    .why-choose-desc {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-choose-visual {
        max-width: 600px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .why-choose-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        padding: 1.2rem 1.5rem;
    }

    .exp-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-img {
        height: 250px;
    }

    .why-choose-title {
        font-size: 2rem;
    }
}

/* Client Reviews Section Styles (Merged from reviews.css) */
.reviews-section {
    padding: 90px 0 120px;
    /* Extra bottom padding for dots/scroll btn */
    background-color: #ffffff;
    position: relative;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 4rem;
}

.reviews-header-left {
    flex: 1;
}

.reviews-header-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.reviews-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -1px;
    margin: 0;
}

.reviews-intro {
    color: #6a6a6a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    max-width: 480px;
}

.btn-reviews-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: #8c714a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-reviews-all:hover {
    background-color: #725c3c;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(140, 113, 74, 0.2);
}

.btn-arrow-circle {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c714a;
}

.btn-arrow-circle svg {
    width: 18px;
    height: 18px;
    transform: rotate(-45deg);
}

/* Review Carousel Wrapper */
.reviews-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0.5rem 0;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% / 3) - (4rem / 3));
    /* 3 cards visible on desktop */
    display: flex;
    background-color: #fcfaf7;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.review-card-img {
    width: 38%;
    /* Fixed width ratio */
    min-height: 200px;
}

.review-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 4rem;
    color: #8c714a;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: serif;
    opacity: 0.8;
}

.review-text {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

.review-author {
    color: #8c714a;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Pagination Dots */
.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 4rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #8c714a;
    width: 12px;
    height: 12px;
}

/* Floating Scroll Top Button */
.scroll-top-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #8c714a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(140, 113, 74, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background-color: #725c3c;
    transform: translateY(-5px);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1200px) {
    .reviews-title {
        font-size: 2.8rem;
    }

    .reviews-header {
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }

    .reviews-header-right {
        align-items: flex-start;
    }

    .review-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 cards visible */
    }
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 2.5rem;
    }

    .review-card {
        flex: 0 0 85%;
        /* 1.2 cards visible (peek effect) */
        flex-direction: column;
    }

    .review-card-img {
        width: 100%;
        min-height: 220px;
    }

    .scroll-top-btn {
        right: 20px;
        bottom: 20px;
    }
}

/* Premium Footer Styles (Merged from footer.css) */
.footer-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 100px;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    position: relative;
    overflow: hidden;
    margin-top: -60px;
    /* Overlap with previous section for the rounded effect */
}

/* Tier 1: Footer CTA */
.footer-cta {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.footer-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.footer-cta-desc {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0 auto 2rem;
    max-width: 700px;
}

.btn-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background-color: #8c714a;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
}

.btn-footer-cta:hover {
    background-color: #725c3c;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(140, 113, 74, 0.3);
}

.btn-footer-cta .btn-arrow-icon {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c714a;
}

.btn-footer-cta .btn-arrow-icon svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
}

/* Tier 2: Main Footer Content */
.footer-main {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 1rem;
    flex: 1;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.social-icon:hover svg {
    transform: scale(1.1);
}

/* Center Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 2;
    justify-content: center;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1;
}

.footer-logo-tagline {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* Footer Nav Links */
.footer-nav {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-nav-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #8c714a;
}

/* Tier 3: Copyright */
.footer-bottom {
    padding: 40px 0;
    text-align: center;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .footer-cta-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .footer-nav-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-socials,
    .footer-nav {
        justify-content: center;
    }

    .footer-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding-top: 80px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -40px;
    }

    .footer-cta-title {
        font-size: 1.5rem;
        letter-spacing: -1px;
    }

    .footer-cta-desc {
        font-size: 1rem;
    }

    .btn-footer-cta {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   About Us Page Styles (Pixel-Perfect)
   ========================================================================== */

/* Page Banner */
.page-banner {
    position: relative;
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.breadcrumb {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 900;
}

/* About Intro */
.about-intro {
    background: #ffffff;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.custom-signature {
    font-family: 'Brush Script MT', cursive;
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 400 !important;
}

.signature-info {
    display: flex;
    flex-direction: column;
}

.sig-name {
    font-weight: 800;
    font-size: 1.2rem;
}

.sig-role {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-row-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.call-out-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-icon {
    width: 50px;
    height: 50px;
    background: #fcfaf7;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.call-text {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
}

.call-number {
    font-size: 1.15rem;
    font-weight: 800;
}

/* Image Stack Complex */
.image-stack-complex {
    position: relative;
    padding-bottom: 60px;
}

.img-v-main {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.img-h-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 10px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-dark-box {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 3rem;
    width: 50%;
    border-radius: 10px;
    z-index: 2;
}

.box-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.know-more-link {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Partners Bar */
.partners-bar {
    background: #fcfaf7;
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    /* Ensure marquee doesn't spill out */
}

.flex-partners {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.partner-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a1a1a;
    flex: 1;
    white-space: nowrap;
    z-index: 10;
    background: #fcfaf7;
    padding-right: 2rem;
}

.partner-logos {
    flex: 3;
    overflow: hidden;
    position: relative;
}

/* Marquee Animation */
.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partners-img {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition);
}

.partners-img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Process */
.about-process {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.process-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    z-index: 1;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
    text-shadow: none;
}

.relative-z {
    position: relative;
    z-index: 2;
}

.process-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.process-item-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.process-item-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(184, 145, 80, 0.1);
}

.proc-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-gold);
    opacity: 0.3;
    display: block;
    margin-bottom: 1rem;
}

.process-item-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* About Scenes */
.image-grid-dual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.img-scene-1,
.img-scene-2 {
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
}

.img-scene-1 {
    margin-top: 40px;
}

.experience-bars-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    color: #fff;
}

.exp-bar-item {
    margin-bottom: 1.5rem;
}

.exp-info {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.exp-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.exp-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 10px;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.f-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 10px;
    transition: var(--transition);
}

.f-card i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.f-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.f-card p {
    font-size: 0.9rem;
    color: #777;
}

/* Leadership Team */
.team-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.team-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.member-img-wrap {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member-card:hover .member-img-wrap img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(184, 145, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member-card:hover .member-overlay {
    opacity: 1;
}

.member-socials {
    display: flex;
    gap: 1rem;
}

.member-socials a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.member-info span {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.85rem;
}

/* Newsletter Bar */
.newsletter-bar {
    padding: 60px 0;
}

.flex-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.news-cta i {
    font-size: 3rem;
    color: var(--accent-gold);
}

.news-cta-text {
    display: flex;
    flex-direction: column;
}

.news-label {
    font-size: 1rem;
    font-weight: 700;
    color: #aaa;
}

.news-val {
    font-size: 2.2rem;
    font-weight: 900;
}

.news-form {
    display: flex;
    gap: 1rem;
}

.news-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: #fff;
    width: 350px;
}

/* Responsive */
@media (max-width: 1200px) {
    .floating-dark-box {
        right: 0;
        width: 60%;
    }

    .process-grid-3 {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-title-large {
        font-size: 2.8rem;
    }

    .image-stack-complex {
        margin-top: 3rem;
    }

    .floating-dark-box {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        width: 100%;
        margin-top: -50px;
    }

    .process-grid-3 {
        grid-template-columns: 1fr;
    }

    .team-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .flex-partners,
    .flex-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .news-form {
        flex-direction: column;
        width: 100%;
    }

    .news-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .cta-row-flex {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .cta-row-flex .btn-bronze {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }

    .call-out-box {
        gap: 0.6rem;
    }

    .call-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .call-label {
        font-size: 0.55rem;
    }

    .call-number {
        font-size: 0.85rem;
    }

    .team-grid-4 {
        grid-template-columns: 1fr;
    }

    .news-val {
        font-size: 1.8rem;
    }
}

/* Service Page Specific Styles */
.service-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: #fff;
    padding: 0.5rem 0.5rem !important;
    border-radius: 15px;
    border: 1px solid var(--accent-gold);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(184, 145, 80, 0.08);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    background: #fcfaf7;
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    font-size: 2.2rem;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--accent-gold);
    color: #fff;
}

.service-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.6rem;
}

.service-card p {
    color: #666;
    margin-bottom: 0.3rem;
    line-height: 1.7;
}

.learn-more {
    font-weight: 800;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.service-card:hover .learn-more {
    color: var(--accent-gold);
}

/* Milestones Section */
.milestones-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.milestones-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed !important;
    z-index: 1;
}

.milestones-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85) !important;
}

.milestones-flex-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left !important;
}

.milestones-title {
    font-size: 3.5rem !important;
    font-weight: 800;
    color: #fff !important;
    line-height: 1.2;
    flex: 1;
    margin: 0 !important;
}

.milestones-desc {
    flex: 1.2;
    color: #fff !important;
    font-size: 1rem !important;
    line-height: 1.8;
    opacity: 0.8;
}

.milestones-divider {
    width: 100%;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    margin: 2rem 0 4rem 0 !important;
}

.stats-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item .stat-number {
    font-size: 5.5rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1 !important;
    display: block !important;
}

.stat-label {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.15rem !important;
    opacity: 1 !important;
}

/* Why Choose Us Section Improvements */
.service-scenes {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.scenes-visual {
    position: relative !important;
    z-index: 1;
}

.bg-outline-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 15rem !important;
    font-weight: 900 !important;
    color: transparent !important;
    -webkit-text-stroke: 1.5px rgba(184, 145, 80, 0.2) !important;
    z-index: -1 !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    pointer-events: none !important;
}

.section-badge-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.badge-line {
    width: 60px !important;
    height: 2px !important;
    background: #b89150 !important;
}

.experience-panel-dark {
    position: absolute !important;
    bottom: -30px !important;
    right: -50px !important;
    background: rgba(26, 26, 26, 0.5) !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem !important;
    width: 480px !important;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4) !important;
    z-index: 10 !important;
}

.experience-panel-dark .exp-bar-item {
    margin-bottom: 2.5rem;
}

.experience-panel-dark .exp-bar-item:last-child {
    margin-bottom: 0;
}

.experience-panel-dark .exp-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.experience-panel-dark .exp-info span:first-child {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.exp-perc-badge {
    width: 45px;
    height: 45px;
    background: #8e7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    position: relative;
    top: 10px;
}

.experience-panel-dark .exp-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.experience-panel-dark .exp-fill {
    height: 100%;
    background: #8e7355;
    border-radius: 2px;
}

/* Feature Grid Refined */
.feature-card-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.f-card-small {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: center !important;
    padding: 1.5rem !important;
    border: 1px solid #e0e0e0 !important;
    background: #fff !important;
    transition: var(--transition);
}

.f-card-small:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(184, 145, 80, 0.05);
}

.f-card-icon-wrap {
    width: 50px;
    flex-shrink: 0;
}

.f-card-small i {
    font-size: 2.8rem;
    color: #8e7355;
    opacity: 0.8;
}

.f-card-small h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.f-card-small p {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

/* Appointment Bar */
.appointment-bar {
    padding: 50px 0;
    border-top: 1px solid #eee;
}

.flex-appointment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.appointment-info-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
}

.appt-icon-wrap {
    font-size: 3.5rem;
    color: #b89150;
    opacity: 0.6;
}

.appt-v-divider {
    width: 1px;
    height: 60px;
    background: #ddd;
}

.appointment-cta-text {
    display: flex;
    flex-direction: column;
}

.appt-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.appt-val {
    font-size: 3.2rem;
    font-weight: 700;
    color: #555;
    font-family: 'Teko', sans-serif;
    line-height: 1;
    letter-spacing: 1px;
}

.appointment-middle {
    flex: 1;
}

.appointment-middle p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 500px;
}

.appointment-btn-wrap .btn-bronze {
    padding: 1.2rem 2.5rem;
    background: #8e7355;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: 0.3s;
    white-space: nowrap;
}

.appointment-btn-wrap .btn-bronze:hover {
    background: #1a1a1a;
}

/* Service Responsive */
@media (max-width: 992px) {
    .service-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .flex-appointment {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }

    .appt-v-divider {
        display: none;
    }

    .milestones-flex-header {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .milestones-title {
        font-size: 2.5rem !important;
    }

    .milestones-desc {
        font-size: 0.95rem !important;
        line-height: 1.6;
    }
}

@media (max-width: 768px) {

    .service-grid-3,
    .feature-card-grid-small {
        grid-template-columns: 1fr;
    }

    .stats-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid-3 .stat-item:last-child {
        grid-column: span 2;
        margin-top: 1rem;
    }

    .experience-panel-dark {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }

    .bg-outline-text {
        font-size: 8rem;
    }

    .stat-item .stat-number {
        font-size: 2.3rem !important;
    }

    .appt-val {
        font-size: 1.6rem;
    }
}

/* Service Detail Styles */
.service-detail-section {
    padding: 70px 0 !important;
}

.detail-layout {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 3.5rem !important;
    margin: 3.5rem 0 !important;
}

.detail-main-content .detail-title {
    font-size: 3rem !important;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif !important;
    color: #1a1a1a;
}

.detail-main-content .detail-intro {
    font-size: 0.9rem !important;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif !important;
}

.detail-main-img-wrap {
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.detail-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s ease;
}

.detail-sub-title {
    font-size: 1.8rem !important;
    font-weight: 700;
    font-family: 'Teko', sans-serif !important;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.job-overview-wrap {
    margin-bottom: 3rem;
}

.job-overview-wrap p {
    font-size: 0.9rem !important;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.2rem;
    font-family: 'Outfit', sans-serif !important;
}

.detail-dual-images {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    margin-bottom: 3.5rem;
}

.detail-dual-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s ease;
}

.detail-dual-images img:hover {
    transform: translateY(-8px);
}

.problem-statement-wrap {
    margin-top: 4rem;
    padding-top: 3.5rem;
    border-top: 1px solid #eee;
}

.feature-star-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem !important;
}

.star-item {
    display: flex !important;
    gap: 1rem !important;
    align-items: flex-start !important;
}

.star-item i {
    color: var(--accent-gold);
    font-size: 0.9rem !important;
    margin-top: 0.3rem;
}

.star-item span {
    font-size: 0.9rem !important;
    line-height: 1.6;
    color: #333;
    font-family: 'Outfit', sans-serif !important;
}

.detail-sidebar {
    position: sticky !important;
    top: 110px !important;
    z-index: 10;
}

.sidebar-widget {
    margin-bottom: 3rem;
}

.widget-title {
    font-family: 'Teko', sans-serif !important;
    font-size: 1.5rem !important;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 0.8rem;
    margin-bottom: 1.8rem;
    position: relative;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 45px;
    height: 2px;
    background: var(--accent-gold);
}

.similar-services {
    background: #fdfaf5;
    padding: 2.2rem 1.8rem;
    border-radius: 8px;
    border: 1px solid #f1ece4;
}

.similar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.similar-list li {
    margin-bottom: 0.7rem;
}

.similar-list li:last-child {
    margin-bottom: 0;
}

.similar-list a {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0.9rem 1.4rem !important;
    background: #fff;
    border: 1px solid #ebedf3;
    font-size: 0.85rem !important;
    font-weight: 600;
    color: #333;
    transition: 0.3s ease;
    font-family: 'Outfit', sans-serif !important;
    border-radius: 4px;
    text-decoration: none;
}

.similar-list a i {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.similar-list a:hover {
    background: var(--accent-gold);
    color: #fff !important;
    transform: translateX(6px);
}

.similar-list a:hover i {
    color: #fff !important;
}

.help-box {
    background: #4a3c33;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.help-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.help-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.7rem;
    color: var(--accent-gold);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.help-phone {
    display: block;
    font-size: 2rem !important;
    font-weight: 700;
    font-family: 'Teko', sans-serif !important;
    margin-bottom: 1.5rem;
    color: #fff !important;
    letter-spacing: 1px;
}

.help-box h4 {
    font-size: 1.4rem;
    font-family: 'Teko', sans-serif !important;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #fff !important;
    letter-spacing: 1px;
}

.help-box p {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.help-box .btn-bronze {
    display: inline-block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.help-box .btn-bronze:hover {
    background: #fff;
    color: #4a3c33 !important;
}

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr !important;
        gap: 4.5rem !important;
    }

    .detail-sidebar {
        position: static !important;
        order: -1 !important;
    }
}

@media (max-width: 768px) {
    .detail-dual-images {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .feature-star-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .detail-main-content .detail-title {
        font-size: 2.2rem !important;
    }
}

/* =========================================================================
   Project Page Styles
   ========================================================================= */
.page-hero-banner {
    background: linear-gradient(to bottom, #1a1210 0%, #2c1f14 100%);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(184, 145, 80, 0.1) 0%, transparent 70%);
}

.page-hero-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.page-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 2rem;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: var(--accent-gold);
}

.page-hero-breadcrumb .bc-sep {
    color: var(--accent-gold);
}

.page-hero-breadcrumb .bc-current {
    color: #fff;
}

/* Project Gallery */
.projects-section {
    padding: 100px 0;
    background: #fff;
}

.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 2rem;
    border: 1px solid #ddd;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 10, 0.92) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
}

.project-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: 0.3s;
}

.project-card-link i {
    transition: transform 0.3s;
}

.project-card-link:hover {
    color: var(--accent-gold);
}

.project-card-link:hover i {
    transform: translateX(4px);
}

.project-card.large {
    grid-column: span 2;
    aspect-ratio: 8/5;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1a1210 0%, #2c1f14 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 145, 80, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.cta-banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-banner-desc {
    max-width: 500px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Outfit', sans-serif;
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    background: var(--accent-gold);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s ease;
    border-radius: 2px;
}

.cta-banner-btn:hover {
    background: #fff;
    color: #1a1a1a !important;
}

/* =========================================================================
   Contact Page Styles
   ========================================================================= */
.contact-section {
    padding: 100px 0;
    background: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-info-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: #fdfaf5;
    border: 1px solid #f1ece4;
    border-radius: 6px;
    transition: 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 8px 25px rgba(184, 145, 80, 0.08);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.2rem;
}

.contact-card-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contact-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
}

/* Contact Form */
.contact-form-wrap {
    background: #fff;
    padding: 4rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.form-desc {
    font-size: 0.88rem;
    color: #888;
    margin-bottom: 2.5rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 0.6rem;
    font-family: 'Outfit', sans-serif;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: #333;
    transition: 0.3s ease;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 145, 80, 0.08);
}

textarea.form-control {
    resize: none;
    height: 140px;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 4px;
}

.form-submit:hover {
    background: var(--accent-gold);
}

/* Map Section */
.map-section {
    padding: 0;
    height: 400px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .page-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card.large {
        grid-column: span 1;
    }

    .project-card-overlay {
        opacity: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 2rem;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .cta-banner-title {
        font-size: 2.5rem;
    }
}

/* --- Booking Popup Form Styles --- */
.booking-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10000;
}

.booking-popup-overlay.active {
    display: flex;
}

.booking-popup-container {
    background: #fff;
    width: 100%;
    max-width: 550px;
    padding: 3rem;
    position: relative;
    border: 1px solid #e8e5e0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-radius: 4px;
    animation: popupFadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupFadeUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #927254;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.booking-popup-close:hover {
    transform: rotate(90deg);
}

.booking-popup-title {
    font-family: 'Teko', sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-align: center;
}

.booking-popup-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.booking-form-box .form-group {
    margin-bottom: 1.2rem;
}

.booking-form-box input, 
.booking-form-box select, 
.booking-form-box textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #fcfbf9;
    border: 1px solid #ddd;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #1a1a1a;
    transition: 0.3s;
}

.booking-form-box input:focus, 
.booking-form-box select:focus, 
.booking-form-box textarea:focus {
    outline: none;
    border-color: #927254;
    background: #fff;
}

.booking-form-box select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23927254'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

.booking-form-box textarea {
    height: 100px;
    resize: none;
}

.booking-popup-submit {
    display: inline-block;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-family: 'Teko', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.booking-popup-submit:hover {
    background: #927254;
}

/* Responsiveness for Popup */
@media (max-width: 600px) {
    .booking-popup-overlay {
        padding: 1rem;
    }
    .booking-popup-container {
        padding: 2.5rem 1.5rem;
    }
    .booking-popup-title {
        font-size: 2rem;
    }
    .booking-popup-desc {
        font-size: 0.9rem;
    }
}