/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #c9a84c;
    --gold-dark: #a8862e;
    --dark: #1a1a2e;
    --dark2: #16213e;
    --text: #444;
    --text-light: #777;
    --bg-light: #f8f6f1;
    --white: #fff;
    --radius: 8px;
    --transition: 0.3s ease;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

em {
    font-style: italic;
    color: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-pad {
    padding: 90px 0;
}

.bg-light {
    background: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* ===== SECTION HEADER ===== */
.section-label {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 12px auto 0;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(8px);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 96px;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 80px;
    width: auto;
    border-radius: 6px;
}

.logo-text-fallback {
    display: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-text-fallback span {
    color: var(--gold);
}

/* Nav */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 500;
    padding-bottom: 4px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    padding: 10px 24px;
    font-size: 0.88rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1099;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--dark);
    z-index: 1100;
    padding: 60px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: right var(--transition);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    font-weight: 500;
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    color: var(--gold);
}

.mobile-cta {
    align-self: flex-start;
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 26, 46, 0.82) 0%, rgba(26, 26, 46, 0.45) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 940px;
    padding-top: 72px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.18);
    border: 1px solid rgba(201, 168, 76, 0.5);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 18px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    margin-bottom: 36px;
    /* max-width: 520px; */
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Slick dots override */
.hero-slider .slick-dots {
    bottom: 28px;
}

.hero-slider .slick-dots li button:before {
    color: var(--white);
    font-size: 10px;
    opacity: 0.6;
}

.hero-slider .slick-dots li.slick-active button:before {
    color: var(--gold);
    opacity: 1;
}

.hero-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    /* Distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 10;
}

.hero-slider .slick-dots li {
    margin: 0;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #d4af37;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all .3s ease;
}

.hero-slider .slick-dots li button:before {
    display: none;
}

.hero-slider .slick-dots li.slick-active button {
    background: #d4af37;
    transform: scale(1.2);
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* ===== WHY US ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.img-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.img-frame img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
    height: 480px;
}

.img-badge-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.img-badge-card i {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.img-badge-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}

.img-badge-card strong {
    font-size: 0.95rem;
}

.why-content-col {
    padding-left: 12px;
}

.why-content-col h2 {
    margin: 10px 0 18px;
}

.lead-text {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.97rem;
}

.why-list li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.home-quote {
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-light);
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 32px;
}

/* ===== BUSINESS INFO ===== */
.business-info-section {
    background: var(--white);
    padding: 72px 0;
}

.business-info-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.business-info-box {
    background: var(--white);
    border: 1px solid #ece9e0;
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 36px 32px;
    box-shadow: var(--shadow);
}

/* Box header with icon */
.bib-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ece9e0;
}

.bib-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bib-icon-wrap i {
    color: var(--gold);
    font-size: 1.2rem;
}

.bib-header h3 {
    font-size: 1.35rem;
    color: var(--dark);
    margin: 0;
}

/* Core Values list */
.bib-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bib-values-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.bib-val-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.bib-val-icon i {
    color: var(--gold);
    font-size: 0.9rem;
}

.bib-val-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bib-val-text strong {
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.bib-val-text span {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Industries grid */
.bib-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.bib-industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid #ece9e0;
    transition: all var(--transition);
}

.bib-industry-item:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
    transform: translateY(-2px);
}

.bib-industry-item i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.bib-industry-item span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.13);
    border-bottom-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: var(--gold);
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    margin-bottom: 20px;
}

.card-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.card-link:hover {
    gap: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    padding-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px 36px;
    margin: 10px 14px;
    box-shadow: var(--shadow);
}

.quote-icon {
    color: var(--gold);
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.97rem;
    font-style: italic;
    margin-bottom: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.client-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.client-info strong {
    display: block;
    font-size: 0.97rem;
    color: var(--dark);
}

.client-info span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Slick dots for testimonials */
.testimonials-slider .slick-dots li button:before {
    color: var(--gold);
}

.testimonials-slider .slick-dots li.slick-active button:before {
    color: var(--gold-dark);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.82);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark2);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.6fr 1fr 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-about p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 22px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px !important;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.contact-list li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.65);
}

.contact-list li a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== SLICK CUSTOM ARROWS ===== */
.slick-prev:before,
.slick-next:before {
    content: '' !important;
    font-size: 0 !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(26, 26, 46, 0.55);
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
    padding: 0;
}

.slick-arrow i {
    font-size: 0.9rem;
    line-height: 1;
    display: block;
}

.slick-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

/* Hero slider arrows */
.hero-slider .slick-prev {
    left: 28px;
}

.hero-slider .slick-next {
    right: 28px;
}

/* Testimonials arrows */
.testimonials-slider .slick-arrow {
    background: var(--bg-light);
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold);
    top: 50%;
}

.testimonials-slider .slick-arrow:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.testimonials-slider .slick-prev {
    left: -24px;
}

.testimonials-slider .slick-next {
    right: -24px;
}

/* Shared dots */
.slick-dots {
    bottom: -36px;
}

.slick-dots li button:before {
    font-size: 10px;
    color: var(--gold);
    opacity: 0.4;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--gold);
}

/* Testimonials section extra bottom padding for dots */
.testimonials-section .testimonials-slider {
    padding-bottom: 52px;
}

/* ===== SLICK OVERRIDE ===== */
.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */

/* ===== PAGE HERO (shared) ===== */
.page-hero {
    position: relative;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 70px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.55) 0%, rgba(26, 26, 46, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    color: var(--white);
    margin: 14px 0 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb i {
    font-size: 0.65rem;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== ABOUT INTRO SPLIT ===== */
.about-split {
    overflow: hidden;
}

.about-img-col {
    float: left;
    width: 44%;
    margin: 0 52px 32px 0;
}

.about-img-col .img-frame img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* decorative corner accent */
.about-img-col .img-frame::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--gold);
    border-left: 3px solid var(--gold);
    border-radius: 4px 0 0 0;
    z-index: 0;
}

.about-img-col .img-frame::after {
    content: '';
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 4px 0;
    z-index: 0;
}

.about-text-col {
    overflow: hidden;
}

.about-text-col h2 {
    margin: 10px 0 24px;
}

.about-text-col p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.about-signature {
    margin: 28px 0 32px;
    border-left: 3px solid var(--gold);
    padding: 16px 22px;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.about-signature blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--dark);
    line-height: 1.6;
}

/* ===== MISSION VISION VALUES ===== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.mvv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid transparent;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.05));
    transition: height var(--transition);
}

.mvv-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.mvv-card:hover::before {
    height: 100%;
}

.mvv-card.featured {
    border-top-color: var(--gold);
    background: var(--dark);
}

.mvv-card.featured h3 {
    color: var(--white);
}

.mvv-card.featured p {
    color: rgba(255, 255, 255, 0.72);
}

.mvv-card.featured .mvv-icon {
    background: rgba(201, 168, 76, 0.2);
}

.mvv-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
}

.mvv-icon i {
    color: var(--gold);
    font-size: 1.7rem;
}

.mvv-card h3 {
    margin-bottom: 14px;
}

.mvv-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.8;
}

/* ===== WHY CHOOSE (About page cards) ===== */
/* .why-choose {
    background: var(--white);
} */

.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px 28px 32px;
    transition: all var(--transition);
    border-bottom: 3px solid transparent;
    overflow: hidden;
}

.why-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
}

.why-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    transition: color var(--transition);
}

.why-card:hover .why-num {
    color: rgba(201, 168, 76, 0.22);
}

.why-card>i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px;
    display: block;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team-block {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
    padding: 56px 0;
    border-bottom: 1px solid #ece9e0;
}

.team-block:first-of-type {
    padding-top: 0;
}

.team-block:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.team-block-alt {
    grid-template-columns: 1fr 340px;
}

.team-block-alt .team-img-col {
    order: 2;
}

.team-block-alt .team-content-col {
    order: 1;
}

.team-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.team-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.team-block:hover .team-img-wrap img {
    transform: scale(1.04);
}

.team-social {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background var(--transition);
}

.team-social a:hover {
    background: var(--gold-dark);
}

.team-content-col h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--dark);
    margin: 8px 0 16px;
}

.team-divider {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin-bottom: 20px;
}

.team-content-col p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.team-quote {
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-top: 20px;
}

/* ===== STATS SECTION (About page full-width) ===== */
.stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.stats-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 33, 62, 0.88);
}

.stats-grid-full {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-full-item {
    color: var(--white);
}

.stat-full-item .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-full-item .stat-suffix {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
}

.stat-full-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.stat-full-item::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 12px auto 0;
    opacity: 0.5;
}

/* ===================================================
   SERVICES PAGE
   =================================================== */

/* ===== SERVICES INTRO ===== */
.services-intro {
    background: var(--white);
}

.services-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.services-intro-text h2 {
    margin: 10px 0 20px;
}

.services-intro-text p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.97rem;
}

/* Quick Nav */
.services-quick-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 8px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.sqn-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
    position: relative;
}

.sqn-item:hover {
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding-left: 22px;
}

.sqn-item i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.sqn-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.30rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.5);
    min-width: 22px;
}

/* ===== SERVICE BLOCKS (alternating) ===== */
.services-detail {
    background: var(--white);
}

.svc-block {
    padding: 90px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.svc-block-alt {
    background: var(--bg-light);
}

.svc-block-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image col */
.svc-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.svc-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-block:hover .svc-img-wrap img {
    transform: scale(1.04);
}

.svc-num-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 52px;
    height: 52px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

/* Content col */
.svc-icon {
    width: 64px;
    height: 64px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.svc-icon i {
    color: var(--gold);
    font-size: 1.6rem;
}

.svc-content-col h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: var(--dark);
    position: relative;
    padding-bottom: 18px;
}

.svc-content-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.svc-content-col p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.97rem;
    margin-bottom: 24px;
}

.svc-content-col p strong {
    color: var(--text);
    position: relative;
    font-size: 1.2rem;
}

.svc-content-col p strong::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-light);
    font-weight: normal !important;
}

.svc-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-bottom: 32px;
}

.svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.svc-features li i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.svc-block-inner .about-signature {
    background: #fdfbf6;
    margin: 0 0 20px;
    padding: 4px 15px 8px;
}

.svc-block-inner .about-signature blockquote {
    line-height: 1.4;
}

/* ===== SERVICES TAGLINE ===== */
.services-tagline {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.services-tagline::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.06);
}

.services-tagline::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.04);
}

.tagline-box {
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.tagline-icon-wrap {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 2px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-icon-wrap i {
    color: var(--gold);
    font-size: 2.4rem;
}

.tagline-text h2 {
    color: var(--white);
    margin-bottom: 28px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.5;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section .sec-title p {
    color: var(--text-light);
    max-width: 560px;
    margin: 12px auto 0;
}

.faq-wrap {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid #e8e8e8;
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    transition: .3s;
}

.faq-item.active {
    border-color: #c9a34e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 25px;
    background: #fff;
}

.faq-title h4 {
    font-size: 20px;
    margin: 0;
    color: #1f2240;
    font-weight: 600;
    line-height: 1.5;
    width: 90%;
}

.faq-title span {
    width: 38px;
    height: 38px;
    background: #c9a34e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.faq-item.active .faq-title span {
    transform: rotate(45deg);
}

.faq-content {
    display: none;
    padding: 0 25px 25px;
}

.faq-content p {
    margin: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.9;
}


/* ===================================================
   CONTACT PAGE
   =================================================== */

/* ===== CONTACT LAYOUT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: start;
}

/* ===== INFO PANEL ===== */
.contact-info-panel {
    background: var(--dark);
    border-radius: 12px;
    padding: 52px 44px;
    position: sticky;
    top: 112px;
    overflow: hidden;
}

/* decorative circles */
.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
}

.contact-info-panel::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
}

.contact-info-panel .section-label {
    position: relative;
    z-index: 1;
}

.contact-info-panel h2 {
    color: var(--white);
    margin: 10px 0 16px;
    position: relative;
    z-index: 1;
}

.contact-intro-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-detail-item:last-child {
    border-bottom: none;
}

.cd-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cd-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.cd-text h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.cd-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cd-text p a {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
}

.cd-text p a:hover {
    color: var(--gold);
}

.contact-panel-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.contact-panel-footer p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}

.contact-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.contact-social:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ===== CONTACT FORM PANEL ===== */
.contact-form-panel {
    background: var(--white);
    border-radius: 12px;
    padding: 52px 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 36px;
}

.contact-form-header h3 {
    font-size: 1.7rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--text-light);
    font-size: 0.93rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.3px;
}

.form-group label span {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e2e0db;
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    background: #fdfcfb;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 0.95rem;
}

.btn-submit i {
    font-size: 0.85rem;
    transition: transform var(--transition);
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* ===== MAP SECTION ===== */
.map-section {
    background: var(--bg-light);
    padding: 80px 0 0;
}

.map-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.map-section-header h2 {
    margin: 10px 0 12px;
}

.map-section-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.map-wrapper {
    position: relative;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(15%);
}

.map-pin-card {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    min-width: 360px;
    max-width: 520px;
    border-left: 4px solid var(--gold);
    white-space: nowrap;
}

.map-pin-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-pin-icon i {
    color: var(--gold);
    font-size: 1rem;
}

.map-pin-card strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.map-pin-card span {
    font-size: 0.82rem;
    color: var(--text-light);
    white-space: normal;
}


/* contact form hidden — info panel fills full width */
.contact-layout-full {
    grid-template-columns: 1fr 1fr;
    max-width: 860px;
}

.contact-layout-full .contact-info-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-layout-full .contact-info-panel::before,
.contact-layout-full .contact-info-panel::after {
    display: none;
}

.contact-layout-full .contact-detail-list {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 8px;
}

.contact-layout-full .contact-intro-text {
    margin-bottom: 0;
}

.contact-layout-full .contact-panel-footer {
    margin-top: 24px;
}

/* ===== CONTACT FULL LAYOUT (info + map side by side) ===== */
.contact-layout-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    min-height: 580px;
}

.contact-layout-full .contact-info-panel {
    border-radius: 0;
    position: static;
    padding: 56px 48px;
}

.contact-map-col {
    min-height: 580px;
}

.contact-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 580px;
    display: block;
    filter: grayscale(15%);
}



/* ===== CONTACT LAYOUT CLEAN FIX ===== */
.contact-layout-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    min-height: 600px;
}

/* override any old sticky/padding from previous rules */
.contact-layout-full .contact-info-panel {
    position: static !important;
    border-radius: 0 !important;
    padding: 56px 48px !important;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-col {
    min-height: 600px;
    overflow: hidden;
}

.contact-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: block;
    border: 0;
    filter: grayscale(10%);
}


/* ===================================================
   CONTACT PAGE — CLEAN
   =================================================== */

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.13);
    min-height: 540px;
}

/* ---- Info Side ---- */
.contact-box-info {
    background: var(--dark);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-box-info::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.07);
    pointer-events: none;
}

.contact-box-info::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
    pointer-events: none;
}

.contact-box-info h2 {
    color: var(--white);
    margin: 10px 0 14px;
}

.contact-box-info>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.93rem;
    margin-bottom: 36px;
}

.cinfo-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.cinfo-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cinfo-list li:first-child {
    padding-top: 0;
}

.cinfo-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cinfo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cinfo-icon i {
    color: var(--gold);
    font-size: 0.95rem;
}

.cinfo-text h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cinfo-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.6;
}

.cinfo-text p a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.cinfo-text p a:hover {
    color: var(--gold);
}

.cinfo-follow {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cinfo-follow span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.cinfo-social {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: all var(--transition);
}

.cinfo-social:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ---- Map Side ---- */
.contact-box-map {
    position: relative;
    min-height: 540px;
}

.contact-box-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(10%);
}

/* ===================================================
   PROFESSIONAL REDESIGN — REFERENCE INSPIRED
   =================================================== */

/* Override fonts to match reference sites (cleaner sans-serif) */
body {
    font-family: 'Inter', 'DM Sans', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid #ece9e0;
    padding: 20px 0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-right: 1px solid #ece9e0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ===== HOW IT WORKS ===== */
.how-section {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.2));
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
}

.step-item>i {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 2px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0 auto 20px;
    transition: all var(--transition);
}

.step-item:hover>i {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-item p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* CTA dual buttons */
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== HEADER — LIGHT VERSION (reference style) ===== */
.site-header {
    /* background: rgba(255, 255, 255, 0.98) !important; */
    background: #eef5fb !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-link::after {
    background: var(--gold);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.hamburger span {
    background: var(--dark);
}

.mobile-nav {
    background: var(--white);
    border-left: 1px solid #ece9e0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
}

.mobile-nav-close {
    color: var(--dark);
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
}

.mobile-nav-list a {
    color: var(--dark) !important;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #f0ede6;
    display: block;
}

.mobile-nav-list a.active,
.mobile-nav-list a:hover {
    color: var(--gold) !important;
}

.mobile-cta {
    margin-top: 8px;
    width: 100%;
    text-align: center;
}

/* ===== SERVICE CARDS — cleaner style ===== */
.service-card {
    border: 1px solid #ece9e0;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    border-bottom-color: var(--gold);
}