﻿/* =======================================================
   The Masters Real Estate & Builders
   Homepage Custom Stylesheet v2.0
   /assets/css/style.css
   ======================================================= */

:root {
    --gold:            #c9a84c;
    --gold-dark:       #a5852e;
    --gold-light:      #e8d08a;
    --black:           #0a0a0a;
    --dark:            #111111;
    --dark-2:          #1a1a1a;
    --dark-3:          #222222;
    --dark-4:          #2d2d2d;
    --text-on-dark:    rgba(255,255,255,0.72);
    --text-muted-dark: rgba(255,255,255,0.45);
    --border-dark:     rgba(255,255,255,0.08);
    --border-gold:     rgba(201,168,76,0.30);
    --font-serif:      'Playfair Display', Georgia, serif;
    --font-sans:       'Jost', 'Helvetica Neue', Arial, sans-serif;
    --easing:          cubic-bezier(0.4, 0, 0.2, 1);
    --dur:             0.4s;
    --shadow-card:     0 8px 32px rgba(0,0,0,0.12);
    --shadow-hover:    0 24px 60px rgba(0,0,0,0.22);
    --radius-sm:       4px;
    --radius-md:       10px;
    --radius-lg:       18px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans); font-size: 15px;
    line-height: 1.75; color: #333; background: #fff; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--dur) var(--easing); }
ul { list-style: none; padding: 0; margin: 0; }

/* Preloader */
#site-preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#site-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spin {
    width: 52px; height: 52px;
    border: 3px solid rgba(201,168,76,0.18); border-top-color: var(--gold);
    border-radius: 50%; animation: mrl-spin 0.8s linear infinite;
}
@keyframes mrl-spin { to { transform: rotate(360deg); } }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 888;
    display: flex; align-items: center; gap: 10px;
    background: #25d366; color: #fff; padding: 12px 22px; border-radius: 50px;
    font-size: 14px; font-weight: 600; box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: transform var(--dur) var(--easing), box-shadow var(--dur) var(--easing);
}
.whatsapp-float i { font-size: 22px; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); color: #fff; }
@media (max-width: 576px) { .whatsapp-float span { display: none; } .whatsapp-float { padding: 14px; border-radius: 50%; } }

/* Header */
#main-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    transition: background var(--dur) var(--easing), box-shadow var(--dur) var(--easing), padding var(--dur) var(--easing);
    min-height: 70px;
}
#main-header .navbar { padding: 0px 0; }
#main-header.scrolled { background: rgba(10,10,10,0.97); box-shadow: 0 2px 20px rgba(0,0,0,0.45); }
#main-header.scrolled .navbar { padding: 12px 0; }
.logo-img { height: 66px; width: auto; }
.header-mobile .logo-img {     height: 80px; width: auto; margin-top: -26px; }
.navbar-nav .nav-link {
    font-size: 12px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
    color: rgba(255,255,255,0.88) !important; padding: 8px 14px !important; position: relative;
    transition: color var(--dur) var(--easing);
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform var(--dur) var(--easing);
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--gold) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .dropdown-menu {
    background: var(--dark-2); border: 1px solid var(--border-dark);
    border-top: 2px solid var(--gold); border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: 0 18px 45px rgba(0,0,0,0.45); padding: 8px 0; min-width: 210px;
}
.navbar-nav .dropdown-item {
    font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
    color: rgba(255,255,255,0.72) !important; padding: 10px 22px;
    transition: all var(--dur) var(--easing);
}
.navbar-nav .dropdown-item:hover { background: var(--dark-3); color: var(--gold) !important; padding-left: 28px; }
.btn-nav-cta { background: var(--gold) !important; color: #000 !important; padding: 8px 22px !important; border-radius: var(--radius-sm) !important; font-weight: 700 !important; }
.btn-nav-cta:hover { background: var(--gold-dark) !important; color: #000 !important; }
.btn-nav-cta::after { display: none !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(201,168,76,0.35); outline: none; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ===================== MOBILE NAV ===================== */
@media (max-width: 991.98px) {
    /* Always dark so nav links are readable */
    #main-header { background: rgba(10,10,10,0.97) !important; }

    /* Expanded collapse panel */
    .navbar-collapse {
        background: rgba(10,10,10,0.97);
        padding: 12px 0 22px;
        border-top: 1px solid rgba(255,255,255,0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    /* Nav links get a bit more breathing room */
    .navbar-nav .nav-link { padding: 10px 20px !important; }
    .navbar-nav .nav-link::after { left: 20px; right: 20px; }

    /* Dropdown opens inline (static), not floating */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        border-top: 1px solid rgba(255,255,255,0.07);
        border-left: 2px solid var(--gold);
        margin: 4px 20px 4px 28px;
        padding: 4px 0;
    }
    .navbar-nav .dropdown-item { padding: 9px 20px; }

    /* CTA button */
    .btn-nav-cta { margin: 8px 20px 0 !important; display: inline-block !important; }
}

/* Buttons */
.btn-gold {
    display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #000;
    padding: 14px 32px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; border: 2px solid var(--gold);
    transition: all var(--dur) var(--easing);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #000; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.4); }
.btn-outline-gold {
    display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--gold); color: var(--gold);
    padding: 12px 30px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; transition: all var(--dur) var(--easing);
}
.btn-outline-gold:hover { background: var(--gold); color: #000; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.35); }
.btn-white-outline {
    display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.5); color: #fff;
    padding: 14px 32px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; transition: all var(--dur) var(--easing);
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

/* Section Helpers */
.section-label { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: var(--font-serif); font-size: 44px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; color: #111; }
.section-title.on-dark { color: #fff; }
@media (max-width: 992px) { .section-title { font-size: 34px; } }
@media (max-width: 768px) { .section-title { font-size: 28px; } }

/* ===================== HERO ===================== */
#hero-section {
    position: relative; height: 100vh; min-height: 620px;
    display: flex; align-items: center; overflow: hidden; background: var(--black);
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.50) 55%, rgba(0,0,0,0.68) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 80px; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 12px;
    font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 26px;
}
.hero-tag::before { content: ''; display: block; width: 44px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-serif); font-size: 72px; font-weight: 700; color: #fff; line-height: 1.08; margin-bottom: 24px; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 520px; line-height: 1.85; margin-bottom: 42px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-bottom-bar {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
    background: rgba(0,0,0,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.hero-bottom-badges {
    display: flex; justify-content: space-around; padding: 18px 40px;
}
.hero-badge {
    display: flex; align-items: center; gap: 12px; font-size: 13px;
    color: rgba(255,255,255,0.80); font-weight: 500;
}
.hero-badge i { color: var(--gold); font-size: 20px; }
@media (max-width: 992px) { .hero-title { font-size: 52px; } .hero-bottom-badges { padding: 14px 16px; } }
@media (max-width: 768px) { .hero-title { font-size: 38px; } .hero-badge span { display: none; } }
@media (max-width: 480px) { .hero-title { font-size: 30px; } }

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--gold); padding: 0; overflow: hidden; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item {
    padding: 36px 24px; text-align: center;
    border-right: 1px solid rgba(0,0,0,0.10);
}
.stat-item:last-child { border-right: none; }
.stat-number { display: block; font-family: var(--font-serif); font-size: 50px; font-weight: 700; color: #000; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(0,0,0,0.60); }
@media (max-width: 768px) { .stats-bar-inner { grid-template-columns: repeat(2, 1fr); } .stat-item { padding: 26px 16px; } .stat-number { font-size: 38px; } }

/* ===================== ABOUT ===================== */
.about-section { padding: 110px 0; background: #fff; }
.about-images {
    position: relative; display: grid;
    grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px; gap: 10px;
}
.about-images img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.about-images .img-main { grid-row: span 2; }
.about-exp-badge {
    position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: #000;
    width: 120px; height: 120px; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
    font-family: var(--font-serif); box-shadow: 0 10px 30px rgba(201,168,76,0.4); z-index: 2;
}
.about-exp-badge .years { font-size: 42px; font-weight: 700; line-height: 1; }
.about-exp-badge small { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-text-wrap { padding-left: 20px; }
.about-lead { font-size: 17px; color: #444; line-height: 1.85; font-style: italic; margin-bottom: 24px; padding-left: 20px; border-left: 3px solid var(--gold); }
.about-body { font-size: 15px; color: #666; line-height: 1.85; margin-bottom: 28px; }
.about-checklist { margin-bottom: 36px; display: flex; flex-direction: column; gap: 12px; }
.about-checklist li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 500; color: #444; }
.about-checklist li i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
@media (max-width: 992px) { .about-images { grid-template-rows: 200px 200px; } .about-exp-badge { width: 100px; height: 100px; } .about-exp-badge .years { font-size: 32px; } .about-text-wrap { padding-left: 0; margin-top: 40px; } }

/* ===================== PROJECTS ===================== */
.projects-section { padding: 110px 0; background: var(--dark); }
.project-card { position: relative; display: block; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.project-card img { width: 100%; height: 390px; object-fit: cover; display: block; transition: transform 0.75s var(--easing); }
.project-card:hover img { transform: scale(1.08); }
.project-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
    transition: background var(--dur) var(--easing);
}
.project-card:hover .project-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.45) 60%, transparent 100%); }
.project-tag { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.project-name { font-family: var(--font-serif); font-size: 22px; font-weight: 700; color: #fff; line-height: 1.2; margin: 0; }
.project-link {
    display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-top: 14px;
    opacity: 0; transform: translateY(10px); transition: opacity var(--dur) var(--easing), transform var(--dur) var(--easing);
}
.project-card:hover .project-link { opacity: 1; transform: translateY(0); }
.project-link i { transition: transform 0.25s ease; }
.project-link:hover i { transform: translateX(5px); }
.swiper-projects { padding-bottom: 56px !important; }
.swiper-projects .swiper-pagination-bullet { background: rgba(255,255,255,0.25); width: 8px; height: 8px; opacity: 1; }
.swiper-projects .swiper-pagination-bullet-active { background: var(--gold); width: 28px; border-radius: 4px; }
.swiper-projects .swiper-button-prev, .swiper-projects .swiper-button-next { color: var(--gold); }
.swiper-projects .swiper-button-prev::after, .swiper-projects .swiper-button-next::after { font-size: 16px; font-weight: 900; }

/* ===================== MARQUEE ===================== */
.marquee-section { background: var(--gold); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; white-space: nowrap; animation: mrlMarquee 35s linear infinite; }
.marquee-item { font-size: 11px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase; color: #000; padding: 0 36px; display: inline-flex; align-items: center; }
.marquee-item::after { content: '✦'; font-size: 8px; margin-left: 36px; }
@keyframes mrlMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== SERVICES ===================== */
.services-section { padding: 110px 0; background: #f8f6f1; }
.service-card {
    background: #fff; border-radius: var(--radius-md); padding: 42px 32px; text-align: center;
    border: 1px solid #ebebeb; height: 100%; position: relative; overflow: hidden;
    transition: all var(--dur) var(--easing);
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--easing); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon-box {
    width: 76px; height: 76px; border-radius: 50%; background: rgba(201,168,76,0.10); color: var(--gold);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 30px;
    transition: all 0.5s var(--easing);
}
.service-card:hover .service-icon-box { background: var(--gold); color: #000; transform: scale(1.1); }
.service-title { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.service-desc { font-size: 14px; color: #777; line-height: 1.85; }

/* ===================== WHY US ===================== */
.why-section { padding: 110px 0; background: var(--dark-2); }
.why-card {
    background: var(--dark-3); border: 1px solid var(--border-dark);
    border-radius: var(--radius-md); padding: 42px 34px; height: 100%;
    position: relative; overflow: hidden; transition: all var(--dur) var(--easing);
}
.why-card:hover { border-color: var(--border-gold); transform: translateY(-5px); box-shadow: 0 24px 60px rgba(0,0,0,0.45); }
.why-num { font-family: var(--font-serif); font-size: 90px; font-weight: 700; color: rgba(201,168,76,0.07); position: absolute; top: 8px; right: 18px; line-height: 1; pointer-events: none; user-select: none; }
.why-icon-box { width: 58px; height: 58px; border-radius: var(--radius-sm); background: rgba(201,168,76,0.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 22px; transition: all var(--dur) var(--easing); }
.why-card:hover .why-icon-box { background: var(--gold); color: #000; }
.why-title { font-family: var(--font-serif); font-size: 21px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.why-desc { font-size: 14px; color: var(--text-on-dark); line-height: 1.85; }

/* ===================== TEAM ===================== */
.team-section { padding: 110px 0; background: #fff; }
.team-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: all var(--dur) var(--easing); }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img { width: 100%; height: 340px; object-fit: cover; object-position: center top; transition: transform 0.6s var(--easing); }
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); opacity: 0; display: flex; align-items: center; justify-content: center; gap: 12px; transition: opacity var(--dur) var(--easing); }
.team-card:hover .team-overlay { opacity: 1; }
.team-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: #000; display: inline-flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--dur) var(--easing); }
.team-social a:hover { background: #fff; color: #000; }
.team-info { padding: 26px 24px; background: #fff; border-top: 3px solid transparent; transition: border-color var(--dur) var(--easing); }
.team-card:hover .team-info { border-top-color: var(--gold); }
.team-name { font-family: var(--font-serif); font-size: 20px; font-weight: 700; margin-bottom: 5px; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ===================== TESTIMONIALS ===================== */
.testimonials-section { padding: 110px 0; background: var(--dark); }
.testi-card { background: var(--dark-2); border-radius: var(--radius-md); border: 1px solid var(--border-dark); padding: 42px; height: 100%; transition: all var(--dur) var(--easing); }
.testi-card:hover { border-color: var(--border-gold); }
.testi-stars { display: flex; gap: 4px; color: var(--gold); font-size: 13px; margin-bottom: 18px; }
.testi-quote-mark { font-family: var(--font-serif); font-size: 70px; color: var(--gold); opacity: 0.6; line-height: 0.5; margin-bottom: 28px; display: block; }
.testi-text { font-size: 15px; color: var(--text-on-dark); line-height: 1.88; margin-bottom: 30px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--border-dark); padding-top: 22px; }
.testi-avatar { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-name { font-weight: 700; color: #fff; font-size: 15px; margin-bottom: 2px; }
.testi-role { font-size: 12px; color: var(--text-muted-dark); }
.swiper-testimonials { padding-bottom: 56px !important; }
.swiper-testimonials .swiper-pagination-bullet { background: rgba(255,255,255,0.28); opacity: 1; }
.swiper-testimonials .swiper-pagination-bullet-active { background: var(--gold); }

/* ===================== VIDEO ===================== */
.video-section { padding: 110px 0; background: var(--dark-3); }
.video-frame-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.55); }
.video-frame-wrap iframe { width: 100%; height: 520px; display: block; border: none; }
@media (max-width: 768px) { .video-frame-wrap iframe { height: 270px; } }

/* ===================== BLOG ===================== */
.blog-section { padding: 110px 0; background: #fff; }
.blog-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); height: 100%; transition: all var(--dur) var(--easing); }
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); }
.blog-img-wrap { overflow: hidden; height: 230px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s var(--easing); }
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-body { padding: 30px 28px; background: #fff; }
.blog-cat { display: inline-block; background: rgba(201,168,76,0.10); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.blog-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; line-height: 1.4; margin-bottom: 10px; }
.blog-title a:hover { color: var(--gold); }
.blog-meta { font-size: 12px; color: #aaa; margin-bottom: 14px; display: flex; gap: 16px; }
.blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-excerpt { font-size: 14px; color: #777; line-height: 1.78; margin-bottom: 22px; }
.blog-read-more { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--dur) var(--easing); }
.blog-read-more:hover { gap: 12px; color: var(--gold-dark); }

/* ===================== CONTACT ===================== */
.contact-section { padding: 110px 0; background: var(--dark); }
.contact-info-box { padding: 48px 40px; background: var(--dark-2); border-radius: var(--radius-md); border: 1px solid var(--border-dark); height: 100%; }
.contact-info-box h2 { font-family: var(--font-serif); font-size: 38px; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.contact-info-box > p { color: var(--text-on-dark); font-size: 15px; line-height: 1.8; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(201,168,76,0.12); color: var(--gold); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.contact-detail-text label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted-dark); display: block; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: rgba(255,255,255,0.82); font-size: 14px; font-weight: 500; }
.contact-detail-text a:hover { color: var(--gold); }
.contact-detail-text small { color: var(--text-muted-dark); font-size: 13px; display: block; }
.contact-form-box { padding: 48px 40px; background: var(--dark-2); border-radius: var(--radius-md); border: 1px solid var(--border-dark); height: 100%; }
.contact-form-box h3 { font-family: var(--font-serif); font-size: 30px; color: #fff; margin-bottom: 28px; }
.form-ctrl { width: 100%; background: var(--dark-3); border: 1px solid var(--border-dark); color: #fff; padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font-sans); outline: none; transition: border-color var(--dur) var(--easing); appearance: none; }
.form-ctrl::placeholder { color: rgba(255,255,255,0.32); }
.form-ctrl:focus { border-color: var(--gold); }
select.form-ctrl { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 0l6 6 6-6z' fill='rgba(255,255,255,0.4)'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
select.form-ctrl option { background: var(--dark-3); color: #fff; }
textarea.form-ctrl { resize: vertical; min-height: 134px; }
.btn-submit { width: 100%; background: var(--gold); color: #000; padding: 17px; border: none; border-radius: var(--radius-sm); cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-sans); transition: all var(--dur) var(--easing); }
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,168,76,0.38); }
.form-success { color: #66bb6a; font-size: 14px; margin-top: 14px; display: none; }
.form-error-msg { color: #ef5350; font-size: 14px; margin-top: 14px; display: none; }

/* ===================== CLIENTS ===================== */
.clients-section { padding: 80px 0; background: #f8f6f1; }
.clients-logo-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 44px; }
.client-logo-item { background: #fff; border: 1px solid #e5e5e5; border-radius: var(--radius-sm); padding: 16px 22px; display: flex; align-items: center; justify-content: center; min-width: 130px; height: 80px; transition: all var(--dur) var(--easing); }
.client-logo-item:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.client-logo-item img { max-height: 46px; max-width: 100px; object-fit: contain; filter: grayscale(1); opacity: 0.60; transition: all var(--dur) var(--easing); }
.client-logo-item:hover img { filter: grayscale(0); opacity: 1; }

/* ===================== FOOTER ===================== */
#main-footer { background: var(--black); }
.footer-top { padding: 0px 0 60px; }
.footer-logo { height: 100px; width: auto; margin-bottom: 0px !important; }
.footer-about { font-size: 14px; color: var(--text-on-dark); line-height: 1.85; margin: 22px 0 26px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border-dark); color: rgba(255,255,255,0.60); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--dur) var(--easing); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #000; }
hr.footer-divider { border-color: var(--border-dark); margin: 0; }
.footer-heading { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: var(--text-on-dark); display: inline-flex; align-items: center; gap: 8px; transition: all var(--dur) var(--easing); }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.footer-contact-item i { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 14px; color: var(--text-on-dark); line-height: 1.65; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.40); margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--easing), transform 0.75s var(--easing); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.75s var(--easing), transform 0.75s var(--easing); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.75s var(--easing), transform 0.75s var(--easing); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }
.reveal-delay-4 { transition-delay: 0.40s; }
.reveal-delay-5 { transition-delay: 0.50s; }
#main-header.scrolled .navbar {
    padding: 2px 0 !important;
}
body{height:auto !important;}