/* =============================================================
   SFS Global - Premium Farmhouse Site
   Author: SFS Team | Theme: Dark Green + Black
   ============================================================= */

:root {
    --bg-0: #050b07;
    --bg-1: #0a1710;
    --bg-2: #0f2419;
    --bg-3: #14251a;
    --card: rgba(20, 37, 26, 0.75);
    --card-2: rgba(15, 30, 22, 0.9);

    --brand: #4cb050;
    --brand-light: #7ee27e;
    --brand-glow: rgba(76, 176, 80, 0.35);
    --brand-soft: rgba(76, 176, 80, 0.08);

    --text: #f2fbf3;
    --text-mute: #98a89d;
    --text-dim: #6a7a6f;

    --border: rgba(126, 226, 126, 0.14);
    --border-strong: rgba(126, 226, 126, 0.3);

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;

    --ff-head: 'Bricolage Grotesque', system-ui, sans-serif;
    --ff-body: 'Manrope', system-ui, sans-serif;
    --ff-accent: 'Fraunces', serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-body);
    background: var(--bg-0);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(1000px 500px at 90% -10%, rgba(76, 176, 80, 0.08), transparent 60%),
        radial-gradient(800px 400px at -10% 30%, rgba(76, 176, 80, 0.06), transparent 60%);
}

::selection { background: var(--brand); color: #051006; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: 1240px; padding: 0 22px; margin: 0 auto; }

/* Reusable */
.accent { color: var(--brand); }
em { font-style: normal; }

/* ============ Preloader ============ */
.preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg-0);
    display: grid; place-items: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.leaf-spin {
    width: 68px; height: 68px; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle, var(--brand-soft), transparent 70%);
    color: var(--brand); font-size: 32px;
    animation: spin 1.8s linear infinite;
    margin: 0 auto 14px;
}
.preloader-inner span {
    font-family: var(--ff-head); font-weight: 700; letter-spacing: 3px;
    color: var(--text-mute); font-size: 14px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============ Cursor glow ============ */
.cursor-glow {
    position: fixed; width: 380px; height: 380px; pointer-events: none;
    border-radius: 50%; z-index: 1;
    background: radial-gradient(circle, rgba(76, 176, 80, 0.12), transparent 65%);
    filter: blur(30px); transform: translate(-50%, -50%);
    transition: opacity 0.3s; opacity: 0;
}
@media (hover:hover) { .cursor-glow { opacity: 1; } }

/* ============ Header ============ */
.desktop-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 42px;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(0px);
}
.desktop-header.scrolled {
    background: rgba(5, 11, 7, 0.85);
    backdrop-filter: blur(18px);
    padding: 12px 42px;
    border-bottom: 1px solid var(--border);
}
.logo-part a { display: flex; align-items: center; gap: 12px; }
.logo-part a img
{ 
    width: 100%;
    max-width: 100px;
    filter: brightness(0) invert(1) contrast(120%);
}
.logo-mark {
    width: 44px; height: 44px; border-radius: 12px;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--brand), #2a6b2d);
    color: #051006; font-size: 20px;
    box-shadow: 0 8px 24px -8px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.logo-text {
    font-family: var(--ff-head); font-weight: 700;
    font-size: 20px; line-height: 1; color: var(--text);
    display: flex; flex-direction: column; gap: 2px;
}
.logo-text b { color: var(--brand); font-weight: 800; letter-spacing: 1px; display: inline; }
.logo-text em { font-family: var(--ff-body); font-size: 10px; letter-spacing: 2.4px; color: var(--text-dim); text-transform: uppercase; font-weight: 500; }

.nav-bar-sect ul { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-bar-sect a {
    padding: 10px 18px; border-radius: 999px;
    font-size: 14px; font-weight: 500; color: var(--text-mute);
    position: relative; transition: color 0.3s;
}
.nav-bar-sect a::before {
    content: ''; position: absolute; inset: 0; border-radius: 999px;
    background: var(--brand-soft); opacity: 0;
    transform: scale(0.8); transition: opacity 0.3s, transform 0.3s;
}
.nav-bar-sect a:hover { color: var(--text); }
.nav-bar-sect a:hover::before { opacity: 1; transform: scale(1); }
.nav-bar-sect a.active-nav {
    color: var(--brand); background: var(--brand-soft);
    box-shadow: inset 0 0 0 1px var(--border-strong);
}

.login-btn  {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px 10px 12px; border-radius: 999px;
    background: transparent; color: var(--text);
    border: 1px solid var(--border-strong);
    font-size: 14px; font-weight: 600;
    transition: all 0.35s var(--ease); position: relative;
}
.login-btn  i {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--brand); color: #051006;
    transition: transform 0.35s var(--ease);
}
.login-btn:hover { background: var(--brand); color: #051006; border-color: var(--brand); }
.login-btn:hover i { background: #051006; color: var(--brand); transform: rotate(360deg); }

.mobile-login-btn
{
    width: 100%;
    max-width: 150px;
    background: #4cb05014;
    margin: 10px 2rem;
    text-align: center;
    border: 1px solid white;
    border-radius: 30px;

}

/* Mobile */
.mobile-header {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 14px 20px; align-items: center; justify-content: space-between;
    background: rgba(5, 11, 7, 0.92); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.mobile-header .logo-text { font-size: 16px; }
.menu-button {
    width: 42px; height: 42px; border-radius: 12px;
    display: grid; place-items: center; color: var(--brand);
    background: var(--brand-soft); border: 1px solid var(--border-strong);
    transition: all 0.3s;
}
.menu-button:hover { background: var(--brand); color: #051006; }

.mobile-nav-list {
    position: fixed; top: 50px; right: -100%; bottom: 0; width: min(320px, 85%);
    background: linear-gradient(180deg, #0a1710, #050b07);
    z-index: 99; padding: 90px 26px 32px;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--border);
}
.mobile-nav-list.open { right: 0; }
.mobile-nav-list ul { list-style: none; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list a {
    display: block; padding: 16px 4px; font-weight: 500;
    color: var(--text); font-size: 16px;
}
.mobile-nav-list .auth-sect { margin-top: 24px; }



/* ============ Hero ============ */
.hero-section {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden; padding-top: 100px;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('../images/hero-img.jpg') center/cover no-repeat;
    filter: brightness(0.55) saturate(1.1);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    to { transform: scale(1.15); }
}
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(115deg, rgba(5, 11, 7, 0.94) 0%, rgba(10, 23, 16, 0.7) 50%, rgba(10, 23, 16, 0.4) 100%),
        radial-gradient(700px 500px at 20% 60%, rgba(76, 176, 80, 0.15), transparent);
}
.hero-content { position: relative; z-index: 2; }

.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 999px;
    background: rgba(255,255,255,0.04); backdrop-filter: blur(14px);
    border: 1px solid var(--border-strong);
    color: var(--text-mute); font-size: 13px; font-weight: 500;
    letter-spacing: 0.5px; margin-bottom: 26px;
}
.hero-tag .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand); box-shadow: 0 0 0 6px rgba(76,176,80,0.18);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    50% { box-shadow: 0 0 0 12px rgba(76,176,80,0); }
}

.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2.6rem, 6vw, 5.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .accent {
    background: linear-gradient(120deg, #4cb050 0%, #7ee27e 40%, #b6ff8f 80%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    font-family: var(--ff-accent); font-style: italic; font-weight: 700;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--text-mute); max-width: 560px; margin-bottom: 34px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }

.primary-btn, .secondary-btn, .ghost-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 15px 28px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.primary-btn {
    background: linear-gradient(120deg, var(--brand) 0%, #2f8033 100%);
    color: #051006;
    box-shadow: 0 12px 30px -12px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.primary-btn::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, #7ee27e, #4cb050);
    opacity: 0; transition: opacity 0.4s;
}
.primary-btn > * { position: relative; z-index: 1; }
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -12px var(--brand-glow); }
.primary-btn:hover::after { opacity: 1; }
.primary-btn i { transition: transform 0.3s; }
.primary-btn:hover i { transform: translateX(4px); }
.primary-btn.full { width: 100%; justify-content: center; }

.secondary-btn {
    background: rgba(255,255,255,0.04);
    color: var(--text); border: 1px solid var(--border-strong);
    backdrop-filter: blur(14px);
}
.secondary-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--brand); }
.secondary-btn .play-ico {
    width: 26px; height: 26px; border-radius: 50%; background: var(--brand);
    color: #051006; display: grid; place-items: center; font-size: 10px;
}

.ghost-btn {
    padding: 12px 20px; border: 1px solid var(--border-strong);
    color: var(--text); font-size: 13px; background: transparent;
}
.ghost-btn:hover { border-color: var(--brand); color: var(--brand); }

/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 18px; }
.avatars { display: flex; }
.avatars img {
    width: 42px; height: 42px; border-radius: 50%;
    border: 3px solid var(--bg-1); margin-left: -12px; object-fit: cover;
}
.avatars img:first-child { margin-left: 0; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; }
.trust-text span { font-size: 12px; color: var(--text-mute); }
.trust-text i { color: #ffb84a; margin-right: 4px; }

/* Hero card stack */
.hero-card-stack { position: relative; height: 500px; }
.hc-card {
    position: absolute; padding: 24px;
    background: linear-gradient(160deg, rgba(20, 37, 26, 0.9), rgba(15, 30, 22, 0.85));
    border: 1px solid var(--border-strong); border-radius: var(--radius);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
    width: 240px;
}
.hc-card-1 { top: 20px; left: 20px; }
.hc-card-2 { top: 190px; right: -10px; }
.hc-card-3 { bottom: 30px; left: 60px; }
.hc-ico {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; background: var(--brand-soft);
    color: var(--brand); font-size: 20px; margin-bottom: 14px;
    border: 1px solid var(--border-strong);
}
.hc-card h4 { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.hc-card p { font-size: 13px; color: var(--text-mute); margin: 0; }
.float-a { animation: floatA 6s ease-in-out infinite; }
.float-b { animation: floatB 7s ease-in-out infinite; }
@keyframes floatA { 50% { transform: translateY(-14px); } }
@keyframes floatB { 50% { transform: translateY(-10px) translateX(6px); } }

/* Floating leaves */
.floating-leaves { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.leaf {
    position: absolute; color: rgba(126, 226, 126, 0.25);
    font-size: 22px; animation: leafDrift 14s linear infinite;
}
.l1 { top: 15%; left: 8%; animation-duration: 13s; }
.l2 { top: 60%; left: 3%; animation-duration: 17s; font-size: 30px; }
.l3 { top: 30%; left: 45%; animation-duration: 15s; font-size: 18px; }
.l4 { top: 75%; left: 30%; animation-duration: 19s; }
.l5 { top: 20%; left: 55%; animation-duration: 16s; font-size: 26px; }
.l6 { top: 55%; left: 60%; animation-duration: 20s; color: rgba(126,226,126,0.35); font-size: 32px; }
@keyframes leafDrift {
    0% { transform: translate(0,0) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(60px, -180px) rotate(320deg); opacity: 0; }
}

/* Scroll cue */
.scroll-cue {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; gap: 3px; align-items: center;
}
.scroll-cue span {
    width: 12px; height: 12px; border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
    transform: rotate(45deg); opacity: 0.3; animation: scrollCue 1.8s infinite;
}
.scroll-cue span:nth-child(2) { animation-delay: 0.15s; }
.scroll-cue span:nth-child(3) { animation-delay: 0.3s; }
@keyframes scrollCue { 50% { opacity: 1; } }

/* ============ Marquee ============ */
.marquee-band {
    background: linear-gradient(90deg, var(--brand) 0%, #2f8033 50%, var(--brand) 100%);
    padding: 20px 0; overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.15); border-bottom: 1px solid rgba(0,0,0,0.2);
}
.marquee-track {
    display: flex; align-items: center; gap: 40px;
    white-space: nowrap; animation: marquee 30s linear infinite;
    color: #051006; font-family: var(--ff-head); font-weight: 800;
    font-size: 22px; letter-spacing: 1px; text-transform: uppercase;
}
.marquee-track i { font-size: 14px; opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Section common ============ */
section { padding: 110px 0; position: relative; }
.section-heading { margin-bottom: 60px; max-width: 780px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.heading-row {
    max-width: none; display: flex; justify-content: space-between; align-items: flex-end;
    gap: 30px; flex-wrap: wrap; margin-bottom: 60px;
}
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 999px;
    background: var(--brand-soft); border: 1px solid var(--border-strong);
    color: var(--brand); font-size: 12px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.section-tag .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
    box-shadow: 0 0 0 4px rgba(76,176,80,0.2);
}
.section-title {
    font-family: var(--ff-head); font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08;
    letter-spacing: -0.02em; margin-bottom: 22px;
}
.section-title .accent {
    font-family: var(--ff-accent); font-style: italic; font-weight: 700;
    background: linear-gradient(120deg, #4cb050, #7ee27e);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lead { color: var(--text-mute); font-size: 1.05rem; }

/* ============ Stats ============ */
.stats-section { padding: 80px 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    padding: 44px;
    background: linear-gradient(160deg, rgba(20,37,26,0.7), rgba(10,23,16,0.5));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}
.stat-item {
    text-align: center; padding: 12px;
    display: flex; flex-direction: column; align-items: center;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: -12px; top: 20%; bottom: 20%; width: 1px;
    background: var(--border);
}
.stat-item h2, .stat-item span {
    display: inline;
    font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800; color: var(--brand); line-height: 1;
}
.stat-num { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.stat-item p { margin-top: 10px; color: var(--text-mute); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }

/* ============ About ============ */
.about-visual {
    position: relative; padding: 20px;
}
.av-main {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}
.av-main img { width: 100%; height: 480px; object-fit: cover; }
.av-sub {
    position: absolute; bottom: -30px; right: -20px;
    width: 220px; border-radius: var(--radius); overflow: hidden;
    border: 4px solid var(--bg-0);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}
.av-sub img { width: 100%; height: 180px; object-fit: cover; }
.av-badge {
    position: absolute; top: 20px; left: -20px;
    background: linear-gradient(140deg, var(--brand), #2f8033);
    color: #051006; padding: 18px 22px; border-radius: 20px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 20px 40px -10px var(--brand-glow);
    animation: float-b 5s ease-in-out infinite;
}
.av-badge .num { font-family: var(--ff-head); font-size: 36px; font-weight: 800; line-height: 1; }
.av-badge .lbl { font-size: 12px; font-weight: 700; line-height: 1.2; }
.av-glow {
    position: absolute; top: -30px; right: -30px; width: 200px; height: 200px;
    background: radial-gradient(circle, var(--brand-glow), transparent 70%);
    filter: blur(40px); z-index: -1;
}
@keyframes float-b { 50% { transform: translateY(-8px); } }

.about-list { list-style: none; margin: 26px 0 34px; }
.about-list li {
    display: flex; align-items: center; gap: 14px;
    padding: 10px 0; color: var(--text); font-weight: 500;
}
.about-list i {
    color: var(--brand); font-size: 20px;
    filter: drop-shadow(0 0 8px var(--brand-glow));
}
.about-cta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.signature { display: flex; align-items: center; gap: 12px; }
.signature img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); }
.signature strong { display: block; font-size: 14px; }
.signature span { font-size: 12px; color: var(--text-mute); }

/* ============ Services ============ */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
    padding: 34px 28px; border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(20,37,26,0.7), rgba(10,23,16,0.4));
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: transform 0.5s var(--ease), border-color 0.5s;
}
.service-card::before {
    content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(140deg, var(--brand) 0%, transparent 40%);
    opacity: 0; transition: opacity 0.5s; z-index: -1; border-radius: var(--radius);
}
.service-card::after {
    content: ''; position: absolute; top: 0; right: 0; width: 200px; height: 200px;
    background: radial-gradient(circle at top right, var(--brand-glow), transparent 60%);
    opacity: 0; transition: opacity 0.5s;
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.service-card:hover::after { opacity: 1; }
.sc-ico {
    width: 62px; height: 62px; border-radius: 18px;
    display: grid; place-items: center; margin-bottom: 22px;
    background: linear-gradient(140deg, var(--brand-soft), transparent);
    border: 1px solid var(--border-strong);
    color: var(--brand); font-size: 26px;
    transition: transform 0.5s var(--ease), background 0.5s;
}
.service-card:hover .sc-ico {
    background: var(--brand); color: #051006; transform: rotate(-8deg) scale(1.08);
}
.service-card h3 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-mute); font-size: 14px; margin-bottom: 20px; }
.sc-link { color: var(--brand); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.sc-link i { transition: transform 0.3s; }
.sc-link:hover i { transform: translateX(5px); }

/* ============ Property ============ */
.property-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.property-card {
    border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(180deg, rgba(20,37,26,0.7), rgba(10,23,16,0.4));
    border: 1px solid var(--border);
    transition: transform 0.5s var(--ease), border-color 0.5s;
}
.property-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.pc-image { position: relative; overflow: hidden; }
.pc-image img {
    width: 100%; height: 240px; object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.property-card:hover .pc-image img { transform: scale(1.08); }
.pc-tag {
    position: absolute; top: 16px; left: 16px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 999px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.pc-tag.hot { background: #ff6b3d; color: #fff; }
.pc-tag.new { background: var(--brand); color: #051006; }
.pc-tag.premium { background: #ffb84a; color: #3d2600; }
.pc-fav {
    position: absolute; top: 14px; right: 14px;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(5,11,7,0.6); backdrop-filter: blur(10px);
    color: var(--text); font-size: 15px;
    display: grid; place-items: center;
    transition: all 0.3s; border: 1px solid var(--border);
}
.pc-fav:hover { background: var(--brand); color: #051006; }
.pc-fav.active i { color: #ff5a6f; font-weight: 900; }
.pc-body { padding: 22px; }
.pc-loc { color: var(--text-mute); font-size: 12px; margin-bottom: 8px; }
.pc-loc i { color: var(--brand); margin-right: 4px; }
.pc-body h3 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 14px; }
.pc-features {
    list-style: none; display: flex; gap: 12px; flex-wrap: wrap;
    padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px dashed var(--border);
}
.pc-features li { font-size: 12px; color: var(--text-mute); }
.pc-features i { color: var(--brand); margin-right: 4px; }
.pc-footer { display: flex; justify-content: space-between; align-items: center; }
.pc-price { font-family: var(--ff-head); font-size: 22px; font-weight: 800; color: var(--text); }
.pc-price em { font-size: 12px; font-weight: 400; color: var(--text-mute); margin-left: 4px; }
.pc-cta {
    color: var(--brand); font-weight: 600; font-size: 13px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border-strong);
    transition: all 0.3s;
}
.pc-cta:hover { background: var(--brand); color: #051006; border-color: var(--brand); }

/* ============ Why Choose Us ============ */
.why-section { background: linear-gradient(180deg, transparent, rgba(76,176,80,0.03), transparent); }
.why-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.why-visual img { width: 100%; height: 540px; object-fit: cover; }
.why-badge {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    background: rgba(5, 11, 7, 0.85); backdrop-filter: blur(18px);
    border: 1px solid var(--border-strong); padding: 18px 22px; border-radius: var(--radius);
    display: flex; align-items: center; gap: 16px;
}
.why-badge i {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--brand); color: #051006;
    display: grid; place-items: center; font-size: 22px;
    box-shadow: 0 10px 20px -8px var(--brand-glow);
}
.why-badge strong { display: block; font-family: var(--ff-head); font-size: 16px; font-weight: 700; }
.why-badge span { font-size: 12px; color: var(--text-mute); }

.why-list { margin-top: 30px; }
.why-item {
    display: flex; gap: 22px; padding: 22px 0;
    border-bottom: 1px dashed var(--border);
}
.why-item:last-child { border-bottom: 0; }
.wi-num {
    font-family: var(--ff-accent); font-style: italic;
    font-size: 42px; font-weight: 700; color: var(--brand);
    line-height: 1; min-width: 60px;
    opacity: 0.85;
}
.why-item h4 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.why-item p { color: var(--text-mute); font-size: 14px; }

/* ============ Testimonials ============ */
.testimonial-section { background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3)); }
.testi-slider { max-width: 900px; margin: 0 auto; overflow: hidden; }
.testi-track {
    display: flex; transition: transform 0.7s var(--ease);
}
.testi-card {
    min-width: 100%; padding: 40px;
    background: linear-gradient(160deg, rgba(20,37,26,0.7), rgba(10,23,16,0.4));
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    position: relative;
}
.testi-card .quote {
    position: absolute; top: 26px; right: 30px;
    color: var(--brand); font-size: 46px; opacity: 0.25;
}
.testi-card p {
    font-family: var(--ff-accent); font-style: italic; font-weight: 600;
    font-size: clamp(1.1rem, 1.6vw, 1.5rem); color: var(--text);
    line-height: 1.5; margin-bottom: 30px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); }
.testi-author > div:not(.stars) { flex: 1; }
.testi-author strong { display: block; font-family: var(--ff-head); font-size: 15px; }
.testi-author span { font-size: 12px; color: var(--text-mute); }
.stars { color: #ffb84a; font-size: 12px; display: flex; gap: 2px; }

.testi-controls { display: flex; justify-content: center; align-items: center; gap: 22px; margin-top: 34px; }
.ts-btn {
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--brand-soft); border: 1px solid var(--border-strong);
    color: var(--brand); transition: all 0.3s;
}
.ts-btn:hover { background: var(--brand); color: #051006; }
.testi-dots { display: flex; gap: 8px; }
.testi-dots button {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border-strong); transition: all 0.3s;
}
.testi-dots button.active { background: var(--brand); width: 26px; border-radius: 999px; }

/* ============ Blog ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
    border-radius: var(--radius); overflow: hidden;
    background: linear-gradient(180deg, rgba(20,37,26,0.7), rgba(10,23,16,0.4));
    border: 1px solid var(--border);
    transition: transform 0.5s var(--ease), border-color 0.5s;
}
.blog-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.bc-img { position: relative; overflow: hidden; }
.bc-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.8s var(--ease); }
.blog-card:hover .bc-img img { transform: scale(1.08); }
.bc-date {
    position: absolute; top: 16px; left: 16px;
    background: var(--bg-0); color: var(--brand);
    padding: 8px 14px; border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    border: 1px solid var(--border-strong);
}
.bc-body { padding: 24px; }
.bc-cat {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand); font-size: 12px; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.blog-card h3 {
    font-family: var(--ff-head); font-size: 19px; font-weight: 700;
    line-height: 1.3; margin-bottom: 16px;
}
.bc-link { color: var(--brand); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; }
.bc-link i { transition: transform 0.3s; }
.bc-link:hover i { transform: translateX(5px); }

/* ============ Contact ============ */
.contact-section {
    background:
        radial-gradient(600px 400px at 100% 100%, rgba(76,176,80,0.08), transparent),
        radial-gradient(500px 300px at 0% 0%, rgba(76,176,80,0.06), transparent);
}
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-list { list-style: none; margin: 30px 0; }
.contact-list li {
    display: flex; align-items: center; gap: 16px; padding: 14px 0;
    border-bottom: 1px dashed var(--border);
}
.contact-list span {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--brand-soft); border: 1px solid var(--border-strong);
    color: var(--brand); display: grid; place-items: center; font-size: 18px;
}
.contact-list em { display: block; font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.contact-list strong { font-family: var(--ff-head); font-size: 16px; font-weight: 600; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--brand-soft); border: 1px solid var(--border-strong);
    color: var(--text); transition: all 0.35s var(--ease);
}
.socials a:hover { background: var(--brand); color: #051006; transform: translateY(-4px); }

.contact-form {
    padding: 38px 34px; border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(20,37,26,0.7), rgba(10,23,16,0.6));
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
}
.contact-form h3 { font-family: var(--ff-head); font-size: 24px; font-weight: 700; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
    display: block; font-size: 12px; color: var(--text-mute);
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: 14px 18px; border-radius: 12px;
    background: rgba(5,11,7,0.5); color: var(--text);
    border: 1px solid var(--border); font: inherit; font-size: 14px;
    transition: border-color 0.3s, background 0.3s;
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234cb050'%3E%3Cpath d='M5 8l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none; border-color: var(--brand); background: rgba(5,11,7,0.7);
}
.form-note { margin-top: 14px; font-size: 13px; color: var(--brand); text-align: center; min-height: 20px; }

/* ============ Footer ============ */
.site-footer {
    padding: 100px 0 30px; margin-top: 30px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.footer-cta {
    padding: 46px; border-radius: var(--radius-lg);
    background: linear-gradient(140deg, rgba(76,176,80,0.15), rgba(20,37,26,0.5));
    border: 1px solid var(--border-strong);
    display: flex; justify-content: space-between; align-items: center; gap: 30px;
    flex-wrap: wrap; margin-bottom: 60px;
}
.footer-cta h2 {
    font-family: var(--ff-head); font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.01em;
}
.footer-cta h2 .accent {
    font-family: var(--ff-accent); font-style: italic;
    background: linear-gradient(120deg, #7ee27e, #b6ff8f);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-col.brand p { color: var(--text-mute); font-size: 14px; margin: 18px 0; }
.footer-col h5 {
    font-family: var(--ff-head); font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; color: var(--brand);
}
.footer-col ul { list-style: none; padding-left: 0px;}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--text-mute); font-size: 14px; transition: color 0.3s, padding 0.3s; }
.footer-col ul a:hover { color: var(--brand); padding-left: 6px; }
.newsletter {
    display: flex; margin-top: 14px;
    border-radius: 999px; overflow: hidden;
    background: rgba(5,11,7,0.5); border: 1px solid var(--border);
}
.newsletter input {
    flex: 1; padding: 12px 18px; background: transparent;
    border: 0; color: var(--text); font: inherit; font-size: 13px; outline: none;
}
.newsletter button {
    padding: 10px 18px; background: var(--brand); color: #051006;
    display: grid; place-items: center; transition: background 0.3s;
}
.newsletter button:hover { background: var(--brand-light); }
.nl-note { margin-top: 8px; font-size: 12px; color: var(--brand); min-height: 16px; }

.footer-bottom {
    display: flex; justify-content: space-between; padding-top: 24px;
    color: var(--text-dim); font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom i { color: #ff5a6f; }

/* ============ Back to top ============ */
.to-top {
    position: fixed; bottom: 26px; right: 26px; z-index: 90;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--brand); color: #051006;
    display: grid; place-items: center; font-size: 18px;
    box-shadow: 0 12px 28px -8px var(--brand-glow);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-5px); }

/* ============ Reveal animations ============ */
.reveal, .reveal-up {
    opacity: 0; transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-up { transform: translateY(40px); }
.reveal.visible, .reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .desktop-header { display: none; }
    .mobile-header { display: flex; }
    .hero-section { padding-top: 150px; }
    .hero-card-stack { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 30px; }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid, .property-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .why-wrap, .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
    .why-visual img { height: 380px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .av-main img { height: 340px; }
    section { padding: 80px 0; }
}
@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .hero-title { font-size: 2.4rem; }
    .stats-grid { grid-template-columns: 1fr; padding: 22px; }
    .stat-item::after { display: none !important; }
    .services-grid, .property-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-cta { padding: 28px; text-align: center; justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .marquee-track { font-size: 16px; gap: 24px; }
    .footer-bottom { justify-content: center; text-align: center; }
    .hero-trust { flex-wrap: wrap; }
    section { padding: 70px 0; }
    .contact-form { padding: 26px 22px; }
    .av-badge { top: 10px; left: 0; padding: 12px 16px; }
    .av-badge .num { font-size: 26px; }
    .av-sub { width: 140px; right: 0; }
    .av-sub img { height: 120px; }
}

.custom-toast{
    position: fixed;
    top: 25px;
    right: 25px;
    width: 380px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-left: 6px solid #22c55e;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    z-index: 99999;
    animation: slideIn .4s ease;
}

.toast-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon i{
    color:#fff;
    font-size:24px;
}

.toast-content{
    flex:1;
}

.toast-content h6{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#111827;
}

.toast-content p{
    margin:5px 0 0;
    color:#6b7280;
    font-size:14px;
    line-height:1.5;
}

.toast-close{
    width:36px;
    height:36px;
    border:none;
    background:#f3f4f6;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.toast-close:hover{
    background:#ef4444;
    color:#fff;
}

.toast-close i{
    font-size:15px;
}

@keyframes slideIn{
    from{
        opacity:0;
        transform:translateX(100%);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideOut{
    from{
        opacity:1;
        transform:translateX(0);
    }
    to{
        opacity:0;
        transform:translateX(100%);
    }
}

.toast-hide{
    animation:slideOut .35s forwards;
}

/* =============================================================
   SFS Global - Inner Pages CSS (About / Property Detail / Blog Detail)
   Extends style.css — same theme, variables reused from :root
   ============================================================= */

/* ============ Page Hero / Breadcrumb Banner ============ */
.page-hero {
    position: relative;
    padding: 190px 0 90px;
    overflow: hidden;
    background: var(--bg-1);
    border-bottom: 1px solid var(--border);
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(900px 420px at 85% -10%, rgba(76,176,80,0.16), transparent 60%),
                       radial-gradient(700px 360px at -5% 110%, rgba(76,176,80,0.10), transparent 60%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: var(--brand-soft);
    color: var(--brand-light);
    font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 20px;
}
.page-hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.page-hero h1 {
    font-family: var(--ff-head);
    font-size: clamp(32px, 4.4vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    max-width: 760px;
    margin-bottom: 16px;
}
.page-hero h1 .accent { color: var(--brand); font-family: var(--ff-accent); font-style: italic; font-weight: 600; }
.page-hero p.page-hero-lead { color: var(--text-mute); font-size: 1.05rem; max-width: 620px; }
.breadcrumb-nav {
    margin-top: 26px;
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-mute);
}
.breadcrumb-nav a { color: var(--text-mute); transition: color 0.3s; }
.breadcrumb-nav a:hover { color: var(--brand); }
.breadcrumb-nav i { font-size: 10px; color: var(--text-dim); }
.breadcrumb-nav span.current { color: var(--brand); font-weight: 600; }

/* ============ Generic section utilities for inner pages ============ */
.inner-section { padding: 90px 0; }
.inner-section.alt { background: linear-gradient(180deg, transparent, rgba(76,176,80,0.03), transparent); }
.inner-section.tight { padding: 60px 0; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.mission-vision-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.mv-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s var(--ease), border-color 0.4s;
}
.mv-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.mv-ico {
    width: 56px; height: 56px; border-radius: 14px;
    display: grid; place-items: center;
    background: linear-gradient(140deg, var(--brand-soft), transparent);
    border: 1px solid var(--border);
    color: var(--brand); font-size: 22px;
    margin-bottom: 20px;
}
.mv-card h3 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.mv-card p { color: var(--text-mute); font-size: 14px; }

.timeline-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-wrap::before {
    content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
    transform: translateX(-50%);
}
.timeline-item { position: relative; width: 50%; padding: 0 46px 56px; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot {
    position: absolute; top: 4px; width: 16px; height: 16px; border-radius: 50%;
    background: var(--brand); box-shadow: 0 0 0 6px var(--brand-soft), 0 0 0 1px var(--border-strong);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-year { font-family: var(--ff-head); font-size: 26px; font-weight: 800; color: var(--brand); margin-bottom: 6px; }
.timeline-item h4 { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { color: var(--text-mute); font-size: 13.5px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; text-align: center; transition: transform 0.4s var(--ease), border-color 0.4s;
}
.team-card:hover { transform: translateY(-8px); border-color: var(--border-strong); }
.team-photo { position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.8s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.08); }
.team-social {
    position: absolute; inset-inline: 0; bottom: -50px;
    display: flex; justify-content: center; gap: 10px; padding: 14px;
    background: linear-gradient(0deg, rgba(5,11,7,0.85), transparent);
    transition: bottom 0.35s var(--ease);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
    width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.1); color: var(--text); font-size: 13px; transition: 0.3s;
}
.team-social a:hover { background: var(--brand); color: #051006; }
.team-body { padding: 20px; }
.team-body h4 { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.team-body span { color: var(--brand); font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.value-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-item { text-align: center; padding: 26px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-2); }
.value-item i { font-size: 26px; color: var(--brand); margin-bottom: 14px; }
.value-item h5 { font-family: var(--ff-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.value-item p { font-size: 12.5px; color: var(--text-mute); }

/* =========================================================
   PROPERTY DETAIL PAGE
   ========================================================= */
.pd-gallery { display: grid; grid-template-columns: 1.6fr 1fr; gap: 14px; height: 460px; margin-bottom: 40px; }
.pd-gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.pd-gallery-side div { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pd-gallery-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pd-gallery-side div:hover img { transform: scale(1.06); }
.pd-gallery-more {
    position: absolute; inset: 0; display: grid; place-items: center;
    background: rgba(5,11,7,0.55); color: var(--text); font-family: var(--ff-head); font-weight: 700; font-size: 14px;
    opacity: 0; transition: opacity 0.3s;
}
.pd-gallery-side div:hover .pd-gallery-more { opacity: 1; }

.pd-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 44px; align-items: start; }

.pd-top-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.pd-loc { color: var(--brand); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pd-title { font-family: var(--ff-head); font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 6px; }
.pd-badges { display: flex; gap: 10px; }
.pd-badges span {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    padding: 7px 14px; border-radius: 999px;
}
.pd-badges .hot { background: #ff6b3d; color: #fff; }
.pd-badges .verified { background: var(--brand); color: #051006; }

.pd-quick-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    padding: 26px; margin: 26px 0 36px;
    border: 1px solid var(--border); border-radius: var(--radius); background: var(--card);
}
.pd-quick-stats div { text-align: center; border-right: 1px solid var(--border); }
.pd-quick-stats div:last-child { border-right: none; }
.pd-quick-stats i { color: var(--brand); font-size: 20px; margin-bottom: 8px; display: block; }
.pd-quick-stats strong { display: block; font-family: var(--ff-head); font-size: 17px; font-weight: 800; }
.pd-quick-stats span { font-size: 11.5px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 1px; }

.pd-block { margin-bottom: 44px; }
.pd-block h3 { font-family: var(--ff-head); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.pd-block p { color: var(--text-mute); font-size: 14.5px; margin-bottom: 14px; }

.pd-amenities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pd-amenities li {
    list-style: none; display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; color: var(--text-mute);
    padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--card-2);
}
.pd-amenities i { color: var(--brand); }

.pd-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 320px; }
.pd-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

.pd-docs { display: flex; flex-wrap: wrap; gap: 14px; }
.pd-doc-chip {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 18px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    background: var(--card-2); font-size: 13px; color: var(--text-mute);
}
.pd-doc-chip i { color: var(--brand); }

/* Sidebar */
.pd-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 22px; }
.pd-price-card {
    background: var(--card); border: 1px solid var(--border-strong); border-radius: var(--radius);
    padding: 28px; backdrop-filter: blur(10px);
}
.pd-price-card .pd-price { font-family: var(--ff-head); font-size: 32px; font-weight: 800; color: var(--brand-light); }
.pd-price-card .pd-price em { font-size: 13px; font-weight: 400; color: var(--text-mute); }
.pd-price-card ul { list-style: none; margin: 20px 0; }
.pd-price-card ul li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 13.5px; color: var(--text-mute); }
.pd-price-card ul li strong { color: var(--text); font-weight: 600; }

.pd-agent-card {
    background: var(--card-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center;
}
.pd-agent-card img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); margin: 0 auto 14px; }
.pd-agent-card h4 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.pd-agent-card span { font-size: 12px; color: var(--text-mute); display: block; margin-bottom: 16px; }
.pd-agent-actions { display: flex; gap: 10px; }
.pd-agent-actions a {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 10px; border-radius: var(--radius-sm); border: 1px solid var(--border); font-size: 12.5px; font-weight: 600;
    color: var(--text); transition: 0.3s;
}
.pd-agent-actions a:hover { background: var(--brand); color: #051006; border-color: var(--brand); }

.similar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* =========================================================
   BLOG DETAIL PAGE
   ========================================================= */
.blog-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 46px; align-items: start; }

.article-cover { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 34px; height: 420px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-meta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13px; color: var(--text-mute); }
.article-meta .am-author { display: flex; align-items: center; gap: 10px; }
.article-meta .am-author img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); }
.article-meta .am-author strong { color: var(--text); font-size: 13px; }
.article-meta span i { color: var(--brand); margin-right: 6px; }

.article-title { font-family: var(--ff-head); font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }

.article-body { font-size: 15.5px; color: var(--text-mute); line-height: 1.9; }
.article-body p { margin-bottom: 22px; }
.article-body h2, .article-body h3 {
    font-family: var(--ff-head); color: var(--text); font-weight: 700; margin: 34px 0 16px;
}
.article-body h2 { font-size: 24px; }
.article-body h3 { font-size: 19px; }
.article-body ul, .article-body ol { margin: 0 0 22px 20px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
    border-left: 3px solid var(--brand); padding: 18px 24px; margin: 28px 0;
    background: var(--card-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--ff-accent); font-style: italic; font-size: 17px; color: var(--text);
}
.article-body img { border-radius: var(--radius); margin: 10px 0 26px; height: 320px; width: 100%; object-fit: cover; }

.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0; }
.article-tags a {
    padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px;
    color: var(--text-mute); transition: 0.3s;
}
.article-tags a:hover { color: var(--brand); border-color: var(--brand); }

.article-share { display: flex; align-items: center; gap: 14px; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 40px; }
.article-share span { font-size: 13px; color: var(--text-mute); font-weight: 600; }
.article-share a {
    width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
    background: var(--card-2); border: 1px solid var(--border); color: var(--text); transition: 0.3s;
}
.article-share a:hover { background: var(--brand); color: #051006; border-color: var(--brand); }

.author-box {
    display: flex; gap: 20px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
    background: var(--card); margin-bottom: 44px;
}
.author-box img { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); flex-shrink: 0; }
.author-box h4 { font-family: var(--ff-head); font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.author-box span { color: var(--brand); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.author-box p { font-size: 13.5px; color: var(--text-mute); }

/* Comments */
.comments-block h3 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.comment-item { display: flex; gap: 16px; margin-bottom: 26px; }
.comment-item img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--brand); flex-shrink: 0; }
.comment-item .ci-head { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.comment-item strong { font-family: var(--ff-head); font-size: 14px; }
.comment-item .ci-date { font-size: 11.5px; color: var(--text-dim); }
.comment-item p { font-size: 13.5px; color: var(--text-mute); margin-bottom: 6px; }
.comment-item .ci-reply { font-size: 12px; color: var(--brand); font-weight: 600; }
.comment-item.reply { margin-left: 64px; }

.comment-form-block { margin-top: 40px; }
.comment-form-block h3 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* Sidebar (blog) */
.blog-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 30px; }
.side-card {
    border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
    background: var(--card-2);
}
.side-card h4 { font-family: var(--ff-head); font-size: 15px; font-weight: 700; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.side-search { position: relative; }
.side-search input {
    width: 100%; padding: 12px 44px 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--border); background: var(--bg-1); color: var(--text); font-size: 13px;
}
.side-search input:focus { outline: none; border-color: var(--brand); }
.side-search button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--brand); padding: 8px; }

.side-post { display: flex; gap: 14px; margin-bottom: 16px; }
.side-post:last-child { margin-bottom: 0; }
.side-post img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.side-post h5 { font-family: var(--ff-head); font-size: 13.5px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.side-post span { font-size: 11px; color: var(--text-dim); }

.side-cat-list { list-style: none; }
.side-cat-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 13px; color: var(--text-mute); }
.side-cat-list li:last-child { border-bottom: none; }
.side-cat-list a { color: inherit; transition: 0.3s; }
.side-cat-list li:hover a { color: var(--brand); }
.side-cat-list em { background: var(--brand-soft); color: var(--brand-light); font-size: 10.5px; font-style: normal; padding: 2px 8px; border-radius: 999px; }

.side-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.side-tag-cloud a { padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 11.5px; color: var(--text-mute); transition: 0.3s; }
.side-tag-cloud a:hover { color: var(--brand); border-color: var(--brand); }

.side-cta-card {
    text-align: center; padding: 30px 22px;
    background: linear-gradient(160deg, var(--brand-soft), transparent);
}
.side-cta-card i { font-size: 26px; color: var(--brand); margin-bottom: 14px; display: block; }
.side-cta-card h4 { text-transform: none; letter-spacing: 0; font-size: 16px; margin-bottom: 8px; }
.side-cta-card p { font-size: 12.5px; color: var(--text-mute); margin-bottom: 18px; }

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .value-strip { grid-template-columns: repeat(2, 1fr); }
    .timeline-wrap::before { left: 18px; }
    .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 40px 46px; }
    .timeline-item .timeline-dot { left: 10px !important; right: auto !important; }
    .pd-layout, .blog-detail-layout { grid-template-columns: 1fr; }
    .pd-sidebar, .blog-sidebar { position: static; }
    .pd-gallery { grid-template-columns: 1fr; height: auto; }
    .pd-gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; height: 180px; }
    .pd-quick-stats { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .pd-quick-stats div:nth-child(2n) { border-right: none; }
    .pd-amenities { grid-template-columns: repeat(2, 1fr); }
    .similar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
    .page-hero { padding: 150px 0 60px; }
    .team-grid, .value-strip, .pd-amenities, .similar-grid, .pd-quick-stats { grid-template-columns: 1fr; }
    .pd-gallery-side { grid-template-columns: 1fr; height: auto; }
    .article-cover { height: 240px; }
    .author-box { flex-direction: column; }
}

/*==============================
    OUR SERVICES
==============================*/

.our-services-sect{
    position:relative;
    width:100%;
    min-height:55vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:
    radial-gradient(circle at top left, #081f10 0%, transparent 35%), radial-gradient(circle at bottom right, #000000 0%, transparent 40%), linear-gradient(135deg, #08140d, #12281b, #08140d);
    padding:90px 20px;
}

/* Decorative Shapes */

.our-services-sect .shape{
    position:absolute;
    border-radius:50%;
    filter:blur(70px);
    opacity:.35;
    animation:float 8s ease-in-out infinite;
}

.our-services-sect .shape1{
    width:280px;
    height:280px;
    background:#38b26d;
    top:-100px;
    left:-100px;
}

.our-services-sect .shape2{
    width:320px;
    height:320px;
    background:#c8ffb5;
    bottom:-130px;
    right:-120px;
    animation-delay:2s;
}

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(20px);
    }
}

/* Content Box */

.services-content{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
    text-align:center;
    
    border-radius:30px;
    padding:55px;
    
}

.sub-title{
    display:inline-block;
    color:#98ffb3;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.services-content h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    margin-bottom:18px;
    line-height:1.15;
}

.services-content h2 span{
    color:#73ff9b;
}

.services-content p{
    color:#d7d7d7;
    font-size:18px;
    line-height:1.9;
    max-width:720px;
    margin:0 auto;
}

/* Highlights */

.service-highlights{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.service-highlights .item{
    min-width:180px;
    padding:18px 24px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    transition:.4s;
}

.service-highlights .item:hover{
    transform:translateY(-8px);
    background:#1c8d49;
}

.service-highlights i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
    color:#9dffb7;
}

.service-highlights span{
    font-size:16px;
    font-weight:600;
}

/*==============================
    Responsive
==============================*/

@media (max-width:992px){

    .our-services-sect{
        min-height:auto;
        padding:80px 20px;
    }

    .services-content{
        padding:45px 30px;
    }

    .services-content h2{
        font-size:42px;
    }

    .services-content p{
        font-size:17px;
    }

}

@media (max-width:768px){

    .our-services-sect{
        padding: 140px 15px 10px;
    }

    .services-content{
        padding:35px 22px;
        border-radius:22px;
    }

    .services-content h2{
        font-size:34px;
    }

    .services-content p{
        font-size:16px;
        line-height:1.8;
    }

    .service-highlights{
        gap:15px;
    }

    .service-highlights .item{
        width:100%;
        max-width:320px;
    }

}

@media (max-width:480px){

    .services-content{
        padding:30px 18px;
    }

    .sub-title{
        font-size:13px;
    }

    .services-content h2{
        font-size:28px;
    }

    .services-content p{
        font-size:15px;
    }

    .service-highlights i{
        font-size:24px;
    }

}


.faq-section{

padding:100px 8%;
background:linear-gradient(135deg, #111a11, #122216);

}

.faq-heading{
text-align:center;
max-width:750px;
margin:auto  auto 60px;
}

.faq-heading span{

display:inline-block;
padding:8px 22px;
background:#1b5e20;
color:#fff;
border-radius:50px;
font-size:14px;
letter-spacing:2px;
margin-bottom:20px;
}

.faq-heading h2{

font-size:48px;
font-weight:700;
color: #ffffff;
margin-bottom:20px;
}

.faq-heading p{

font-size:17px;
color: #cac9c9;
line-height:30px;
}

.faq-container{

max-width:950px;
margin:auto;

}

.faq-item{

background:#fff;
margin-bottom:20px;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
border:1px solid #e5e5e5;
}

.faq-item:hover{

transform:translateY(-4px);
}

.faq-question{

width:100%;
padding:28px;
border:none;
background: linear-gradient(45deg, #111b12, #0b300e);
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-size:20px;
font-weight:600;
color:#ffffff;
}

.faq-question i{

width:45px;
height:45px;
background:#1b5e20;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
transition:.4s;
flex-shrink:0;
}

.faq-answer{

max-height:0;
overflow:hidden;
transition:.45s ease;
}

.faq-answer p,
.faq-answer ul{

padding:0 30px 30px;
font-size:16px;
line-height:32px;
color:#666;
}

.faq-answer ul{

padding-left:50px;
}

.faq-item.active .faq-answer{

max-height:500px;
}

.faq-item.active .faq-question{

background: #042506;
color:white;
}

.faq-item.active .faq-question i{

background:white;
color:#1b5e20;
transform:rotate(45deg);
}

@media(max-width:768px){

.faq-section{

padding:70px 20px;
}

.faq-heading h2{

font-size:34px;
}

.faq-question{

font-size:17px;
padding:22px;
}

.faq-question i{

width:38px;
height:38px;
}

}


.terms-section{

padding:90px 8%;
/* background:
linear-gradient(135deg,#04120a 0%,#0d2518 30%,#123a24 70%,#08140d 100%); */
position:relative;
overflow:hidden;

}

.terms-section::before{

content:"";
position:absolute;
width:700px;
height:700px;
background:radial-gradient(#27ae6035,transparent 70%);
top:-250px;
left:-250px;
border-radius:50%;

}

.terms-section::after{

content:"";
position:absolute;
width:600px;
height:600px;
background:radial-gradient(#5cff9430,transparent 70%);
right:-250px;
bottom:-250px;
border-radius:50%;

}

.container{

max-width:1350px;
margin:auto;
position:relative;
z-index:2;

}

/*========================*/

.terms-header{

text-align:center;
margin-bottom:70px;

}

.terms-header span{

display:inline-block;
padding:10px 30px;
background: linear-gradient(45deg, #C0CA33, #62af72);
color:#062d18;
font-weight:700;
border-radius:40px;
letter-spacing:2px;
margin-bottom:20px;

}

.terms-header h1{

font-size:55px;
color:#fff;
margin-bottom:20px;
font-weight:700;

}

.terms-header p{

max-width:760px;
margin:auto;
font-size:18px;
line-height:32px;
color:#d6ead9;

}

.update-date{

display:inline-block;
margin-top:25px;
padding:14px 28px;
background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.15);
border-radius:50px;
color:#fff;

}

/*========================*/

.terms-wrapper{

display:grid;
grid-template-columns:repeat(1,1fr);
gap:10px;

}

.terms-card{

position:relative;
padding:35px;
border-radius:25px;
background:rgba(255,255,255,.06);
backdrop-filter:blur(18px);
border:1px solid rgba(255,255,255,.1);
overflow:hidden;
transition:.4s;
box-shadow:
0 25px 45px rgba(0,0,0,.35),
inset 0 1px rgba(255,255,255,.15);

}

.terms-card::before{

content:"";
position:absolute;
left:0;
top:0;
height:100%;
width:6px;
background: linear-gradient(#050b07, #dce775, #1e841f);

}

.terms-card:hover{

transform:translateY(-10px);
box-shadow:
0 35px 60px rgba(0,0,0,.45);

}

.terms-card h2{

font-size:24px;
margin-bottom:20px;
color: #dce775;

}

.terms-card p{

font-size:16px;
line-height:30px;
color:#d7e8db;

}

.terms-card ul{

margin-top:18px;
padding-left:22px;

}

.terms-card li{

margin-bottom:14px;
color:#d7e8db;
line-height:28px;

}

.terms-card li::marker{

color:#67ffb2;

}

/*========================*/

@media(max-width:992px){

.terms-wrapper{

grid-template-columns:1fr;

}

.terms-header h1{

font-size:42px;

}

}

@media(max-width:768px){

.terms-section{

padding:70px 20px;

}

.terms-card{

padding:28px;

}

.terms-header h1{

font-size:34px;

}

.terms-header p{

font-size:16px;

}

}

@media(max-width:480px){

.terms-header span{

font-size:13px;

}

.update-date{

font-size:14px;
padding:12px 18px;

}

.terms-card h2{

font-size:20px;

}

.terms-card p,
.terms-card li{

font-size:15px;
line-height:28px;

}

}


/*============================
PROPERTY DETAIL
=============================*/

.property-detail-section{
    background:#07130d;
    padding:90px 0;
    position:relative;
}

.property-detail-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items: flex-start;
}


/* Gallery */

.main-image{
    overflow:hidden;
    border-radius:25px;
    margin-bottom:18px;
    border:1px solid rgba(255,255,255,.08);
}

.main-image img{
    width:100%;
    height:480px;
    object-fit:cover;
    transition:.5s;
}

.main-image:hover img{
    transform:scale(1.08);
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.gallery-grid img{
    width:100%;
    height:120px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.gallery-grid img:hover{
    transform:translateY(-8px);
}


/* Content */

.property-tag{
    display:inline-block;
    background:#164e3c;
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    margin-bottom:20px;
    font-weight:600;
}

.property-info h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.location{
    color:#9ccbb4;
    margin-bottom:18px;
    font-size:17px;
}

.location i{
    margin-right:8px;
    color:#4cd18a;
}

.price{
    font-size:38px;
    color:#49d88c;
    font-weight:700;
    margin-bottom:20px;
}

.property-info p{
    color:#b9c9c2;
    line-height:1.9;
    margin-bottom:35px;
}


/* Feature Boxes */

.property-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:35px;
}

.feature-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    text-align:center;
    padding:28px;
    transition:.4s;
    backdrop-filter:blur(12px);
}

.feature-box:hover{
    transform:translateY(-8px);
    background:#0f2e22;
}

.feature-box i{
    font-size:28px;
    color:#49d88c;
    margin-bottom:15px;
}

.feature-box h4{
    color:#fff;
    margin-bottom:6px;
}

.feature-box span{
    color:#b8d4c4;
}


/* Amenities */

.amenities h3{
    color:#fff;
    margin-bottom:20px;
}

.amenities ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:0;
    list-style:none;
}

.amenities li{
    color:#bfd7cb;
}

.amenities i{
    color:#49d88c;
    margin-right:8px;
}


/* Buttons */

.property-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.btn-one,
.btn-two{
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.btn-one{
    background:#2cb673;
    color:#fff;
}

.btn-one:hover{
    background:#fff;
    color:#111;
}

.btn-two{
    border:2px solid #2cb673;
    color:#fff;
}

.btn-two:hover{
    background:#2cb673;
}


/*============================
Responsive
=============================*/

@media(max-width:1200px){

.property-detail-wrapper{
grid-template-columns:1fr;
}

.main-image img{
height:420px;
}

}


@media(max-width:768px){

.property-detail-section{
padding:70px 0;
}

.property-info h2{
font-size:32px;
}

.price{
font-size:30px;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.gallery-grid img{
height:110px;
}

.property-features{
grid-template-columns:1fr;
}

.amenities ul{
grid-template-columns:1fr;
}

.property-buttons{
flex-direction:column;
}

.btn-one,
.btn-two{
width:100%;
text-align:center;
}

}


@media(max-width:576px){

.main-image img{
height:260px;
}

.property-info h2{
font-size:26px;
}

.price{
font-size:26px;
}

.gallery-grid img{
height:90px;
}

.feature-box{
padding:22px;
}

}

.blog-detail-section{

    background:#07130d;
    padding:90px 0;

}

.blog-detail-card{

    max-width:950px;
    margin:auto;
    background:#0d1d16;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 50px rgba(0,0,0,.35);

}

.blog-image{

    overflow:hidden;

}

.blog-image img{

    width:100%;
    height:520px;
    object-fit:cover;
    transition:.5s;

}

.blog-image:hover img{

    transform:scale(1.05);

}

.blog-content{

    padding:50px;

}

.blog-meta{

    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:25px;

}

.blog-meta span{

    color:#95c7aa;
    font-size:15px;

}

.blog-meta i{

    color:#39cf7d;
    margin-right:8px;

}

.blog-content h2{

    color:#fff;
    font-size:42px;
    margin-bottom:25px;
    line-height:1.3;

}

.blog-content p{

    color:#bdd2c5;
    line-height:1.9;
    margin-bottom:25px;
    font-size:17px;

}

.blog-content blockquote{

    background:#133124;
    border-left:5px solid #39cf7d;
    color:#fff;
    padding:30px;
    border-radius:15px;
    margin:40px 0;
    font-size:22px;
    font-style:italic;

}

.blog-tags-share{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:45px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);

}

.tags{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.tags a{

    text-decoration:none;
    background:#1b3b2d;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    transition:.4s;

}

.tags a:hover{

    background:#39cf7d;

}

.share{

    display:flex;
    gap:12px;

}

.share a{

    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    background:#123324;
    color:#fff;
    transition:.4s;

}

.share a:hover{

    background:#39cf7d;
    transform:translateY(-5px);

}


/* Responsive */

@media(max-width:992px){

.blog-content{

padding:35px;

}

.blog-content h2{

font-size:34px;

}

.blog-image img{

height:420px;

}

}

@media(max-width:768px){

.blog-tags-share{

flex-direction:column;
align-items:flex-start;
gap:25px;

}

.blog-content h2{

font-size:28px;

}

.blog-image img{

height:320px;

}

.blog-content{

padding:30px 22px;

}

.blog-content blockquote{

font-size:18px;
padding:20px;

}

}

@media(max-width:576px){

.blog-meta{

gap:12px;

}

.blog-meta span{

font-size:13px;

}

.blog-content h2{

font-size:24px;

}

.blog-image img{

height:240px;

}

.blog-content p{

font-size:15px;

}

}