:root {
    --primary-gold: #e2c070;
    --dark-bg: #000000;
    --white: #ffffff;
    --font-kapakana: 'Kapakana', cursive;
    --font-garamond: 'EB Garamond', serif;
    --font-montserrat: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-montserrat);
    color: var(--white);
    background-color: var(--dark-bg);
}

html {
    scroll-behavior: smooth;
}

section[id],
div[id] {
    scroll-margin-top: 120px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Header & Top Bar Redesign */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Allow columns to stretch to full height */
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-logo-column {
    display: flex;
    align-items: center;
    padding: 6px 0;
}

.nav-logo img,
.header-logo-column img {
    max-width: 260px;
    display: block;
}

.header-right-column {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: flex-end;
}

.header-top-row {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact-strip {
    background-color: #e6c15f;
    color: var(--dark-bg);
    padding: 9px 30px 9px 64px;
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 800;
    clip-path: polygon(40px 0, 100% 0, 100% 100%, 0% 100%);
    text-transform: uppercase;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-item i {
    font-size: 17px;
    color: #000;
}

.top-bar-item a,
.top-bar-item a:visited,
.top-bar-item a:hover,
.top-bar-item a:focus {
    color: #000;
    text-decoration: none;
}

.header-bottom-row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0 6px 48px;
    /* Added left padding to space from logo */
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    /* Reduced gap since justify-content will handle distribution */
    align-items: center;
}

.nav-item {
    font-family: var(--font-montserrat);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(226, 192, 112, 0.28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1200;
}

.nav-dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-dropdown-item:hover {
    color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.nav-dropdown-item:focus,
.nav-dropdown-item:active,
.nav-dropdown-item:visited {
    text-decoration: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-item:hover,
.nav-item.active {
    color: var(--white);
    text-decoration: none;
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    font-size: 35px;
    cursor: pointer;
    color: var(--white);
    z-index: 2001;
}

/* Updated Responsive Overrides */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }

    .nav-item {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full screen overlay */
        height: 100vh;
        background-color: #000;
        /* Pure black in mockup */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        transition: 0.5s ease-in-out;
        z-index: 2000;
        visibility: hidden;
        opacity: 0;
    }

    .nav-menu.active {
        right: 0;
        visibility: visible;
        opacity: 1;
    }

    .nav-item {
        font-size: 1.8rem;
        /* Large mobile text */
        margin: 20px 0;
        width: auto;
        text-align: center;
        text-transform: uppercase;
        font-weight: 700;
        color: var(--white);
        position: relative;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-dropdown-toggle {
        justify-content: center;
        width: 100%;
        margin: 20px 0 8px;
    }

    .nav-dropdown-toggle i {
        font-size: 15px;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        max-width: 420px;
        margin: 0 auto;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-item {
        font-size: 1rem;
        padding: 12px 14px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .header-logo-column img {
        max-width: 180px;
    }

    .header-bottom-row {
        padding: 15px 0;
    }
}

/* Hero Section */
.hero-banner {
    height: 100vh;
    min-height: 850px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/banner.png');
    background-size: cover;
    background-position: center bottom;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align to top */
    align-items: center;
    text-align: center;
    padding-top: 140px;
}

.hero-content {
    max-width: 1200px;
    margin-top: 0;
}

.hero-subtitle {
    font-family: var(--font-kapakana);
    color: #e6c15f;
    /* Match the gold tone */
    font-size: 3rem;
    margin-bottom: 5px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-garamond);
    font-size: 3.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--white);
    margin: 10px 0;
}

/* Interior Page Hero Refinement */
.inner-hero {
    height: 275px;
    /* Reduced height */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 12px;
    text-align: center;
    font-family: var(--font-garamond);
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly lighter backdrop */
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-top: 10px;
}

.inner-hero-content h3 {
    font-family: var(--font-kapakana);
    color: var(--primary-gold);
    font-size: 2.8rem;
    /* Slightly smaller for elegance */
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
}

.inner-hero-content h1 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 26px;
    /* More slender, matching mockup */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    /* More space between script and title */
    line-height: 1;
    font-weight: 400;
    /* Regular weight for Garamond elegance */
}

/* Custom Double Line Divider */
.hero-divider-group {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hero-divider-group .thin-line {
    width: 280px;
    height: 1px;
    background-color: var(--white);
    opacity: 0.8;
}

.hero-divider-group .thick-line {
    width: 80px;
    height: 4px;
    background-color: var(--white);
}

.hero-divider {
    width: 100%;
    max-width: 150px;
    height: 1.5px;
    background: var(--white);
    margin: 20px auto 35px;
    position: relative;
}

.hero-divider::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1.5px;
    background: var(--white);
}

.btn-contact {
    background-color: #f7d264;
    color: var(--dark-bg);
    padding: 16px 45px;
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
    text-decoration: none;
}

.btn-contact:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* Section Utilities */
.section-padding {
    padding: 120px 0;
}

.sub-heading {
    font-family: var(--font-kapakana);
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: -5px;
}

.main-heading {
    font-family: var(--font-garamond);
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
}

.text-black {
    color: #1a1a1a !important;
}

.text-white {
    color: var(--white) !important;
}

.text-gold {
    color: var(--primary-gold) !important;
}

.gold-btn {
    background-color: #f7d264;
    color: var(--dark-bg);
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none !important;
}

.gold-btn:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.heading-line {
    width: 100px;
    height: 3px;
    background-color: #e6c15f;
    margin-bottom: 30px;
}

.about-desc {
    font-family: var(--font-montserrat);
    color: #444;
    /* Slightly darker for better readability */
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
}

.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 400px;
    /* Fixed height for consistency */
}

.video-thumb video {
    margin-bottom: 10px;
}

.inner-hero-content h1 {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.inner-hero-content .heading-line {
    margin: 20px auto;
}

/* About Page Sections */
.text-section p {
    font-family: var(--font-montserrat);
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.full-width-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.prev-port,
.next-port {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.prev-port::after,
.next-port::after {
    font-family: 'bootstrap-icons';
    font-size: 3rem;
    font-weight: bold;
}

.prev-port::after {
    content: "\F284";
    /* chevron-left */
}

.next-port::after {
    content: "\F285";
    /* chevron-right */
}

.play-btn i {
    margin-left: 4px;
    /* Offset to center triangle visually */
}

.video-thumb:hover .play-btn {
    background: var(--primary-gold);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

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

.about-secondary-text {
    font-family: var(--font-montserrat);
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Hours of Operation */
.hours-container {
    background-color: #f9f6ee;
    border-left: 4px solid var(--primary-gold);
    padding: 30px 35px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 24px;
    font-family: var(--font-montserrat);
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 12.6px 0;
    border-bottom: 1px solid #e8e0cc;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color: #222;
    font-weight: 700;
}

.hours-time {
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hours-time-closed {
    color: #c01f1f;
}

/* Services Section */
.services-section {
    background: linear-gradient(rgba(247, 210, 100, 0.92), rgba(247, 210, 100, 0.92)), url('../images/yellowbg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    overflow: visible;
}

.services-section .main-heading {
    position: relative;
    padding-bottom: 20px;
}

.services-section .main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #000;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 480px;
    border-radius: 0;
    background-color: #000;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease-in-out;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 40px 30px;
    color: var(--white);
    transition: 0.5s;
    text-align: center;
}

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

.service-card:hover .service-overlay {
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
}

.service-overlay h3 {
    font-family: var(--font-montserrat);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.service-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0;
    display: none;
    font-weight: 500;
}

.service-card:hover .service-overlay p {
    display: block;
}

.service-overlay .learn-more {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 1px solid var(--white);
    padding: 12px 25px;
    display: none;
    margin-top: 15px;
    transition: 0.3s;
    text-decoration: none !important;
    color: #fff;
}

.service-card:hover .service-overlay .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-overlay .learn-more:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

.service-card:hover .service-overlay .learn-more {
    align-self: center;
}

/* Custom Swiper Controls */
.services-slider {
    overflow: hidden;
    padding: 0 72px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.services-slider .custom-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 2.8rem;
    transition: 0.3s;
    cursor: pointer;
}

.services-slider .swiper-button-prev {
    left: 10px;
}

.services-slider .swiper-button-next {
    right: 10px;
}

.services-slider .custom-slider-arrow:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-50%) scale(1.1);
}

.services-slider .custom-slider-arrow::after {
    display: none;
}

.services-slider .custom-slider-arrow i {
    line-height: 1;
}

@media (max-width: 1400px) {
    .swiper-button-next.custom-swiper-btn {
        right: 0 !important;
    }

    .swiper-button-prev.custom-swiper-btn {
        left: 0 !important;
    }

    .services-slider {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .custom-swiper-btn {
        width: 40px;
        height: 40px;
    }

    .custom-swiper-btn::after {
        font-size: 1.8rem !important;
    }
}

/* Why Choose Us */
.why-us-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us-watermark {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.05;
    max-width: 600px;
}

.why-us-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.why-us-content .heading-line {
    width: 60px;
    height: 3px;
    background-color: #333;
    margin-bottom: 30px;
}

.why-us-desc {
    font-family: var(--font-montserrat) !important;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-weight: 500;
}

.portfolio-section {
    background-color: #f1f1f1 !important;
}

.portfolio-section .main-heading {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.portfolio-section .main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.portfolio-item {
    height: 400px;
    /* Base height for small items */
    overflow: hidden;
    position: relative;
}

.portfolio-item {
    height: 320px;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease-in-out;
}

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

.portfolio-item.large {
    grid-column: span 3;
    height: 390px;
    /* Taller height for top items */
}

.portfolio-item.small {
    grid-column: span 2;
    height: 273px;
    /* Shorter height for bottom items */
}

.portfolio-slider {
    overflow: hidden;
    padding: 0 72px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.portfolio-slider .custom-slider-arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    font-size: 2.8rem;
    transition: 0.3s;
    cursor: pointer;
}

.portfolio-slider .swiper-button-prev {
    left: 10px;
}

.portfolio-slider .swiper-button-next {
    right: 10px;
}

.portfolio-slider .custom-slider-arrow:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-50%) scale(1.1);
}

.portfolio-slider .custom-slider-arrow::after {
    display: none;
}

.portfolio-slider .custom-slider-arrow i {
    line-height: 1;
}

.service-gallery-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
    background-color: #fff;
}

.service-gallery-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.service-gallery-card:hover .service-gallery-image {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.service-gallery-kicker {
    font-size: inherit;
    margin-bottom: 0;
    text-transform: none;
}

/* Resource category page listing cards */
.res-page-card {
    background-color: #fff;
    padding: 22px 28px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #e8e4de;
}

.res-page-list > div:nth-child(even) .res-page-card {
    background-color: #f5f3ef;
}

.res-page-card-body {
    flex: 1;
}

.res-page-card-title {
    font-size: 1.1rem;
    margin-bottom: 6px;
    line-height: 1.3;
    color: #222;
    text-decoration: none;
}

.res-page-card-summary {
    font-size: 0.93rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

.res-page-card-action {
    flex-shrink: 0;
}

.res-page-read-more {
    display: inline-block;
    padding: 9px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.res-page-read-more:hover {
    background-color: var(--primary-gold);
    color: #fff;
    text-decoration: none;
}

/* Resource article page */
.res-page-meta {
    font-size: 0.82rem;
    color: #888;
    margin-top: -4px;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.res-page-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.res-page-content h2,
.res-page-content h3,
.res-page-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #222;
}

.res-page-content ul,
.res-page-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.res-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 16px 0;
}

/* Landscape services archive page */
.service-archive-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-archive-item {
    display: flex;
    align-items: stretch;
    gap: 28px;
    padding: 28px 30px;
    border-bottom: 1px solid #e8e4de;
    background-color: #fff;
}

.service-archive-list > article:nth-child(even) {
    background-color: #f5f3ef;
}

.service-archive-image-link {
    display: block;
    width: 240px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

.service-archive-image {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.service-archive-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-archive-title {
    font-family: var(--font-garamond);
    font-size: 1.85rem;
    line-height: 1.15;
    color: #1f1f1f;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-archive-summary {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-archive-link {
    display: inline-block;
    padding: 10px 24px;
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 4px;
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
}

.service-archive-link:hover {
    background-color: var(--primary-gold);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 576px) {
    .res-page-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .service-archive-item {
        flex-direction: column;
        gap: 18px;
        padding: 24px 20px;
    }

    .service-archive-image-link {
        width: 100%;
    }

    .service-archive-image {
        min-height: 220px;
    }

    .service-archive-title {
        font-size: 1.45rem;
    }
}

@media (max-width: 1200px) {
    .portfolio-slider {
        width: 100%;
    }
}

/* Testimonials */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.testimonials-section .main-heading {
    color: #1a1a1a;
    position: relative;
    padding-bottom: 20px;
}

.testimonials-section .main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #333;
}

.testimonial-box {
    background-color: #333;
    padding: 60px 50px;
    max-width: 850px;
    margin-top: 0 !important;
    margin: 50px auto;
    text-align: center;
    position: relative;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 0 0 8px #333, 0 0 0 10px var(--primary-gold);
    /* Double border effect */
}

.stars {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.3rem;
    color: var(--white);
}

.testimonials-slider {
    overflow: hidden !important;
    position: relative;
    padding: 0 72px;
}

.testimonials-slider .custom-testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: #333 !important;
    font-size: 3rem;
    transition: 0.3s;
    cursor: pointer;
}

.testimonials-slider .swiper-button-prev {
    left: 10px;
}

.testimonials-slider .swiper-button-next {
    right: 10px;
}

.custom-testi-arrow:hover {
    color: var(--primary-gold) !important;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1200px) {
    .testimonials-slider .custom-testi-arrow {
        display: none;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/getintocuh.png');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    padding-top: 60px;
    margin-bottom: -170px;
}

.contact-form-box {
    background-color: #f1c55b;
    /* Gold/Yellow background */
    padding: 60px 80px;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background-image: url('../images/logowatemark.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.contact-form-box form {
    position: relative;
    z-index: 1;
}

.contact-form-box .sub-heading {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: #333;
}

.contact-form-box .main-heading {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.contact-form-box .main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #333;
}

.form-control {
    background-color: var(--white);
    border: none;
    padding: 14px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: var(--font-montserrat);
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.form-control::placeholder {
    color: #777;
}

.form-control:focus {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
}

.submit-btn {
    background-color: #333 !important;
    color: var(--white) !important;
    border: none;
    padding: 15px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #333;
}

.contact-section + .footer {
    padding-top: 98px;
}

.contact-info-area {
    padding: 14px 0 110px;
    background-color: var(--white);
}

.contact-page-form-wrap {
    background: #f8f4ea;
    border-left: 4px solid var(--primary-gold);
    border-radius: 8px;
    padding: 42px 44px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.contact-page-label {
    display: block;
    font-family: var(--font-montserrat);
    font-size: 0.95rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 8px;
}

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

.contact-page-alert {
    margin-bottom: 24px;
}

.contact-page-sidebar {
    background-color: #1a1a1a;
    color: var(--white);
    border-radius: 8px;
    padding: 30px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.contact-page-logo-box {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page-logo-box img {
    max-width: 210px;
}

.contact-page-info-block {
    margin-bottom: 28px;
}

.contact-page-info-block:last-child {
    margin-bottom: 0;
}

.contact-page-info-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary-gold);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.contact-page-info-text {
    font-family: var(--font-montserrat);
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-page-phone-link {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.contact-page-phone-link:hover {
    color: var(--primary-gold);
}

.contact-page-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-hours-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-montserrat);
    font-size: 0.92rem;
}

.contact-page-hours-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-page-hours-day {
    font-weight: 700;
    color: var(--white);
}

.contact-page-hours-time {
    text-align: right;
    color: rgba(255, 255, 255, 0.82);
}

/* Testimonials listing page */
.testi-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testi-list-item {
    padding: 36px 40px;
    border-bottom: 1px solid #e8e4de;
}

.testi-list > div:nth-child(even) .testi-list-item,
.testi-list-item:nth-child(even) {
    background-color: #f5f3ef;
}

.testi-list-stars {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-list-quote {
    font-family: var(--font-garamond);
    font-size: 1.15rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 16px;
    padding: 0;
    border: none;
    font-style: italic;
}

.testi-list-author {
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0;
}

/* Footer Styles */
.footer {
    background-color: var(--white);
    padding: 80px 0 0;
}

.footer-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin-bottom: 30px;
    position: relative;
}

.footer-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #444;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.footer .icon-box {
    width: 45px;
    height: 45px;
    background-color: #333;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.facebook-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.facebook-link i {
    font-size: 1.8rem;
}

.footer-logo-box {
    margin-top: 20px;
}

.footer-logo-box img {
    max-width: 250px;
}

.copyright-bar {
    background-color: var(--white);
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.copyright-bar p {
    color: #666;
    font-size: 0.95rem;
}

.footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.95rem;
}

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

/* Responsive Overrides */
@media (max-width: 1400px) {
    .main-heading {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 992px) {
    .header-top-row {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-banner {
        padding-top: 100px;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2rem;
        /* Significantly smaller as requested */
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .main-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .sub-heading {
        font-size: 1.5rem;
    }

    .about-desc {
        font-size: 0.95rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        /* Stack vertically for clarity */
    }

    .portfolio-item.large,
    .portfolio-item.small {
        grid-column: span 1;
        height: 300px !important;
    }

    .portfolio-nav {
        display: none;
        /* Already hidden below 1200px */
    }

    .contact-form-box {
        padding: 40px 20px;
        margin-top: 50px;
    }

    .footer {
        padding: 60px 0 0;
        text-align: center;
    }

    .footer-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-divider::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links-footer {
        justify-content: center;
    }

    .footer-legal-links {
        margin-top: 15px;
    }

    .footer-legal-links a {
        margin: 0 10px;
    }

    .contact-info-area {
        padding-bottom: 72px;
    }

    .contact-page-form-wrap {
        padding: 30px 22px;
    }

    .contact-page-sidebar {
        padding: 26px 20px;
    }

    .contact-page-hours-item {
        flex-direction: column;
        gap: 4px;
    }

    .contact-page-hours-time {
        text-align: left;
    }

    .inner-hero {
        height: 230px;
        padding-top: 92px;
        padding-bottom: 8px;
    }

    .inner-hero-content h1 {
        font-size: 22px;
        margin-top: 8px;
        line-height: 1.1;
        letter-spacing: 1px;
    }

    .hero-divider-group {
        margin-top: 14px;
        gap: 5px;
    }

    .hero-divider-group .thin-line {
        width: 170px;
    }

    .hero-divider-group .thick-line {
        width: 54px;
    }

    .service-content-section {
        padding-top: 78px !important;
        padding-bottom: 42px !important;
    }

    .service-gallery-section {
        padding-bottom: 56px !important;
    }

    .service-gallery-heading {
        margin-bottom: 18px !important;
    }

    .service-gallery-kicker {
        display: block;
        font-size: 1.6rem;
        line-height: 1.05;
        margin-bottom: 8px;
    }

    .service-gallery-grid {
        row-gap: 14px !important;
    }

    .service-gallery-card {
        border-radius: 7px;
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
    }

    .service-gallery-image {
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .facebook-link {
        justify-content: center;
    }

    .contact-page-form-wrap {
        padding: 24px 18px;
    }

    .inner-hero {
        height: 205px;
        padding-top: 84px;
    }

    .inner-hero-content h1 {
        font-size: 20px;
    }

    .service-content-section {
        padding-top: 66px !important;
        padding-bottom: 34px !important;
    }

    .service-gallery-kicker {
        font-size: 1.35rem;
    }
}