/* 
   vsamrealestate - Design System & Stylesheet
   Theme: Premium, Light, Warm, Airy, Land-focused Real Estate
*/

@import url('https://fonts.googleapis.com/css2?family=Anek+Tamil:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Hind+Madurai:wght@300;400;500;600;700&family=Mukta+Malar:wght@400;500;600;700;800&family=Noto+Sans+Tamil:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties (Design Tokens) --- */
:root {
    --bg-primary: #FCFAF7;         /* Warm off-white */
    --bg-secondary: #F6F3EC;       /* Creamy sand */
    --bg-warm-sand: #F1EADF;       /* Rich warm sand */
    --bg-card: #FFFFFF;
    --text-primary: #2D2B2A;       /* Soft charcoal */
    --text-secondary: #6B6560;     /* Muted warm grey */
    --text-light: #8E8780;
    
    /* Accents */
    --color-accent: #CBB393;        /* Soft sand/tan */
    --color-accent-hover: #BCA386;  /* Deepened tan */
    --color-sage: #6E8268;          /* Primary land brand color (Sage Green) */
    --color-sage-light: #E5EDE2;    /* Soft sage tint */
    --color-sage-hover: #5A6D55;
    --color-gold: #C5A059;          /* Muted gold for micro highlights */
    --color-gold-light: #F7F1E3;    
    --color-border: #EAE6DF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1240px;
    --header-height: 80px;
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 20px rgba(45, 43, 42, 0.02);
    --shadow-md: 0 12px 30px rgba(45, 43, 42, 0.05);
    --shadow-lg: 0 20px 40px rgba(110, 130, 104, 0.08); /* Soft sage-tinted shadow */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Animation speed */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* --- Base & Resets --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.section-bg {
    background-color: var(--bg-secondary);
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-sage);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 4rem auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.flex { display: flex; }
.grid { display: grid; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* --- Navigation Bar --- */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(252, 250, 247, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(234, 230, 223, 0.8);
}

.header-nav.scrolled {
    background-color: rgba(252, 250, 247, 0.9);
    backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

.header-nav .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo span {
    color: var(--color-sage);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-item a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--color-sage);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-sage);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-sage), #4a6644);
    color: #FFFFFF !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(110, 130, 104, 0.4);
    border: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
    transform: skewX(-20deg);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 130, 104, 0.6);
    background: linear-gradient(135deg, #4a6644, var(--color-sage));
    color: #FFFFFF !important;
}

.nav-cta:hover::after {
    left: 150%;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* --- Mobile Navigation Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(251, 250, 248, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-container {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mobile-nav-overlay.open .mobile-nav-container {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links .active a {
    color: var(--color-sage);
}

.header-nav {
    z-index: 1000;
}

/* --- Hero Section --- */
.hero-sec {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--bg-secondary);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.hero-bg-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-secondary) 0%, rgba(246, 243, 236, 0.5) 30%, transparent 100%);
    z-index: 2;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
}

.hero-sec .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 55% 45%;
    height: 100%;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-tag {
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.hero-title span {
    font-style: italic;
    color: var(--color-sage);
    font-weight: 300;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-sage);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--color-sage-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--color-accent);
}

.btn-secondary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--color-accent-hover);
    transform: translateY(-3px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-sage);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-text::after {
    content: '→';
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--color-sage-hover);
}

.btn-text:hover::after {
    transform: translateX(5px);
}

/* --- Quick Search Bar --- */
.quick-search {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    margin-top: -3rem;
    position: relative;
    z-index: 100;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-field label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.search-field select, 
.search-field input {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-field select:focus, 
.search-field input:focus {
    border-bottom-color: var(--color-sage);
}

/* --- Cards (Listing Cards) --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.listing-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.card-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.listing-card:hover .card-img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-sage);
    color: #FFFFFF;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

/* Land cards have a different colored badge to represent premium offering */
.listing-card.land-card .card-tag {
    background-color: var(--color-sage);
}

.listing-card.house-card .card-tag {
    background-color: var(--color-accent);
}

.card-price {
    display: none !important;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-location {
    font-size: 0.8rem;
    color: var(--color-sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.card-details {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 1rem;
    margin-top: auto;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
    fill: none;
}

/* Feature Spotlight Card for Landing page primary land */
.land-spotlight {
    display: grid;
    grid-template-columns: 50% 50%;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-bottom: 4rem;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.land-spotlight:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sage-light);
}

.spotlight-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.land-spotlight:hover .spotlight-img {
    transform: scale(1.04);
}

.spotlight-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spotlight-badge::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 1px;
    background-color: var(--color-gold);
}

.spotlight-title {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.spotlight-desc {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.spotlight-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}

.spotlight-stat-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.spotlight-stat-val {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-sage);
    line-height: 1.25;
}

.spotlight-stat-val.text-val {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
}

.spotlight-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* --- About Intro Block --- */
.about-teaser {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.teaser-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--color-border);
}

.teaser-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teaser-content {
    padding-right: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--color-sage);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* --- Services Showcase --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-sage);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-sage-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-sage);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background-color: var(--color-sage);
    color: #FFFFFF;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.925rem;
    font-weight: 300;
    line-height: 1.6;
}

/* --- Call To Action (CTA) --- */
.cta-sec {
    background-color: var(--color-sage);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec .section-title {
    color: #FFFFFF;
}

.cta-sec .section-desc {
    color: rgba(255, 255, 255, 0.85);
}

.cta-sec::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-btn {
    background-color: #FFFFFF;
    color: var(--color-sage);
}

.cta-btn:hover {
    background-color: var(--bg-primary);
    color: var(--color-sage-hover);
}

/* --- Floating Call to Action --- */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: var(--color-sage);
    color: #FFFFFF;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(110, 130, 104, 0.35);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-smooth);
}

.floating-cta svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
}

.floating-cta:hover {
    transform: translateY(-5px) scale(1.03);
    background-color: var(--color-sage-hover);
    box-shadow: 0 12px 35px rgba(110, 130, 104, 0.45);
}

/* --- Scroll to Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 15px rgba(45, 43, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease, background-color 0.3s ease, color 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--color-sage);
    color: #FFFFFF;
    border-color: var(--color-sage);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(110, 130, 104, 0.3);
}

/* --- Footer --- */
.site-footer {
    background-color: #1E271D;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 5rem 0 2rem 0;
    color: #E3ECE1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about-text {
    color: rgba(227, 236, 225, 0.75);
    font-size: 0.95rem;
    font-weight: 300;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
    color: #E3ECE1;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-sage);
    color: #FFFFFF;
    border-color: var(--color-sage);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: #FFFFFF;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background-color: var(--color-accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(227, 236, 225, 0.75);
    font-weight: 300;
}

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

.footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-info li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(227, 236, 225, 0.75);
    font-weight: 300;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--color-accent);
    fill: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(227, 236, 225, 0.45);
}

/* --- Inner Page Banner --- */
.page-banner {
    background-color: var(--bg-secondary);
    padding: 10rem 0 5rem 0;
    position: relative;
    border-bottom: 1px solid var(--color-border);
}

.banner-content {
    max-width: 800px;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.banner-breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.banner-breadcrumbs a:hover {
    color: var(--color-sage);
}

.banner-breadcrumbs span {
    color: var(--text-light);
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 4rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-sage-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-sage);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.contact-lbl {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-val {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-val a:hover {
    color: var(--color-sage);
}

.map-wrapper {
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-panel {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: span 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--bg-primary);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--color-sage);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px var(--color-sage-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Mobile Nav Overlay --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-item a {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 500;
}

.mobile-nav-item a:hover, 
.mobile-nav-item.active a {
    color: var(--color-sage);
}

/* --- Responsive Adaptations --- */
@media (max-width: 1024px) {
    .hero-sec .container {
        grid-template-columns: 100%;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-bg-wrapper {
        width: 100%;
        height: 100%;
        opacity: 0.25;
        right: 0;
        top: 0;
    }
    
    .hero-bg-wrapper::after {
        background: radial-gradient(circle, transparent 30%, var(--bg-secondary) 90%);
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 650px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .search-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .search-form button {
        grid-column: span 2;
    }
    
    .land-spotlight {
        grid-template-columns: 100%;
    }
    
    .spotlight-img-wrapper {
        min-height: 300px;
    }
    
    .about-teaser {
        grid-template-columns: 100%;
        gap: 3rem;
    }
    
    .teaser-img-wrapper {
        aspect-ratio: 16/9;
    }
    
    .contact-grid {
        grid-template-columns: 100%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .header-nav .nav-links {
        display: none;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Animation state for menu button */
    .menu-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .search-form {
        grid-template-columns: 100%;
    }
    
    .search-form button {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 100%;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .form-grid {
        grid-template-columns: 100%;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .contact-form-panel {
        padding: 2rem;
    }
}

/* ==========================================================================
   NEW WEBSITE SECTIONS AND STYLING UPGRADES
   ========================================================================== */

/* --- SECTION 1: Trust Bar Styles --- */
.trust-bar {
    background-color: var(--color-sage);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.65rem 0;
    margin-top: var(--header-height);
    font-size: 0.825rem;
    font-weight: 500;
    color: #FFFFFF;
    z-index: 99;
    position: relative;
}

.trust-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-icon {
    width: 15px;
    height: 15px;
    stroke: #FFFFFF;
    stroke-width: 2px;
}

.trust-divider {
    color: rgba(255,255,255,0.4);
    font-weight: bold;
}

/* --- SECTION 2: Stats Bar Styles --- */
.stats-bar-sec {
    background-color: var(--color-sage-light);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-bar-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.5rem;
}

.stats-bar-icon-badge {
    width: 56px;
    height: 56px;
    background-color: #FFFFFF;
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.stats-bar-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
}

.stats-bar-info {
    display: flex;
    flex-direction: column;
}

.stats-bar-info .stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-sage);
    line-height: 1.1;
}

.stats-bar-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* --- SECTION 3: Why Land Buyers Trust VSAM Grid --- */
.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.about-trust-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.about-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-sage);
}

.about-trust-icon-badge {
    width: 52px;
    height: 52px;
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.about-trust-icon-badge svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8px;
}

.about-trust-title {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.about-trust-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.6;
}

/* --- SECTION 4: Featured Portfolio Overview --- */
.portfolio-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.portfolio-overview-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.portfolio-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}

.portfolio-overview-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.portfolio-overview-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5px;
}

.portfolio-overview-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-overview-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.portfolio-overview-link {
    margin-top: auto;
}

/* --- SECTION 5: Why Choose Us (6-card grid) --- */
.why-invest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-invest-card {
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-invest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sage);
}

.why-invest-icon-badge {
    width: 56px;
    height: 56px;
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem auto;
}

.why-invest-icon-badge svg {
    width: 26px;
    height: 26px;
    stroke-width: 1.5px;
}

.why-invest-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-invest-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
}

/* --- SECTION 8: Testimonials Carousel --- */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 760px;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3.5rem;
}

.carousel-control-btn {
    width: 44px;
    height: 44px;
    background-color: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.carousel-control-btn:hover {
    background-color: var(--color-sage);
    color: #FFFFFF;
    border-color: var(--color-sage);
    transform: scale(1.05);
}

.carousel-control-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator-dot.active {
    background-color: var(--color-sage);
    transform: scale(1.2);
}

/* --- SECTION 9: Reusable CTA Banner --- */
.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cta-btn-primary {
    background-color: #FFFFFF;
    color: var(--color-sage);
}

.cta-btn-primary:hover {
    background-color: var(--bg-primary);
    color: var(--color-sage-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.4);
}

.cta-btn-secondary:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}

/* --- SECTION 7: Gallery Page Styles --- */
.gallery-filter-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover {
    color: var(--color-sage);
}

.gallery-filter-btn.active {
    background-color: var(--color-sage);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(110, 130, 104, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.gallery-img-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 43, 42, 0.9) 0%, rgba(45, 43, 42, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

.gallery-item-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.gallery-item-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #FFFFFF;
    font-weight: 500;
}

/* --- Responsive Media Queries Override --- */
@media (max-width: 1024px) {
    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .portfolio-overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-invest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-bar {
        margin-top: 70px;
    }
    
    .stats-bar-grid {
        grid-template-columns: 100%;
        gap: 1.25rem;
    }
    
    .about-trust-grid {
        grid-template-columns: 100%;
        gap: 1.5rem;
    }
    
    .why-invest-grid {
        grid-template-columns: 100%;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 100%;
    }
}

/* Solid Backgrounds Rhythm Upgrades */
.logo-bar-sec {
    background-color: var(--bg-secondary) !important;
}

.portfolio-overview-sec {
    background-color: var(--bg-warm-sand) !important;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-invest-dark-sec {
    background-color: #1E271D !important;
    color: #E3ECE1 !important;
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.why-invest-dark-sec .section-title {
    color: #FFFFFF !important;
}

.why-invest-dark-sec .section-desc {
    color: rgba(227, 236, 225, 0.75) !important;
}

.why-invest-dark-sec .why-invest-card {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    color: #E3ECE1 !important;
}

.why-invest-dark-sec .why-invest-card:hover {
    background-color: rgba(255, 255, 255, 0.06) !important;
    border-color: var(--color-accent) !important;
    transform: translateY(-6px) !important;
}

.why-invest-dark-sec .why-invest-title {
    color: #FFFFFF !important;
}

.why-invest-dark-sec .why-invest-desc {
    color: rgba(227, 236, 225, 0.75) !important;
}

.why-invest-dark-sec .why-invest-icon-badge {
    background-color: #FFFFFF !important;
    color: var(--color-sage) !important;
}

.house-listings-sec {
    background-color: var(--color-sage-light) !important;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.valuation-sec {
    background-color: var(--bg-warm-sand) !important;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonials-sec {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* --- Tamil Typography & Regional Property Tables --- */
.tamil-text {
    font-family: 'Hind Madurai', 'Anek Tamil', 'Mukta Malar', 'Noto Sans Tamil', 'Outfit', sans-serif;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
}

.tamil-title {
    font-family: 'Anek Tamil', 'Hind Madurai', 'Mukta Malar', sans-serif;
    font-weight: 700;
}

/* Property Listings Table */
.property-table-container {
    width: 100%;
    overflow-x: auto;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    margin-bottom: 2.5rem;
}

.property-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.property-table th {
    background-color: var(--color-sage);
    color: #FFFFFF;
    font-family: 'Anek Tamil', 'Hind Madurai', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.property-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Hind Madurai', 'Anek Tamil', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
    line-height: 1.6;
}

.property-table tr:last-child td {
    border-bottom: none;
}

.property-table tr:nth-child(even) {
    background-color: #FAF8F5;
}

.property-table tr:hover {
    background-color: var(--color-sage-light);
    transition: var(--transition-fast);
}

.price-badge {
    display: inline-block;
    background: #1E271D;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.price-unit-tag {
    display: block;
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 0.35rem;
}

/* Construction Materials Callout */
.construction-service-box {
    background: linear-gradient(135deg, #FFF9F0 0%, #F5EFEB 100%);
    border: 2px dashed var(--color-gold);
    border-radius: var(--radius-md);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
}

.construction-service-box .icon-wrap {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.construction-service-box h4 {
    font-family: 'Anek Tamil', 'Hind Madurai', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 0.3rem;
}

.construction-service-box p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Hind Madurai', 'Anek Tamil', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
}

/* Prime Locations Grid */
.prime-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.prime-location-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.prime-location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-sage);
}

.prime-location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-sage);
}

.prime-location-card .location-icon {
    width: 48px;
    height: 48px;
    background: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.prime-location-card h3 {
    font-family: 'Anek Tamil', 'Hind Madurai', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.prime-location-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: 'Hind Madurai', 'Anek Tamil', 'Mukta Malar', 'Noto Sans Tamil', sans-serif;
}

/* Region Link Card on Services Page */
.region-feature-card {
    background: linear-gradient(135deg, #1E271D 0%, #2A3628 100%);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: 1px solid rgba(203, 179, 147, 0.3);
    position: relative;
    overflow: hidden;
}

.region-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.region-badge {
    align-self: flex-start;
    background: var(--color-gold);
    color: #1E271D;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.region-feature-card h3 {
    color: #FFFFFF;
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.region-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

/* Luxury Property Table & Tag Enhancements */
.property-table th {
    background: linear-gradient(135deg, #1E271D 0%, #2D3A2B 100%);
    color: #FFFFFF;
    font-size: 1.05rem;
    padding: 1.3rem 1.5rem;
    border-bottom: 3px solid var(--color-gold);
}

.property-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    margin-top: 0.4rem;
}

.tag-green { background: #E5EDE2; color: #35532F; }
.tag-gold { background: #F7F1E3; color: #8A651C; }
.tag-blue { background: #E3F2FD; color: #0D47A1; }
.tag-purple { background: #F3E5F5; color: #4A148C; }

.material-chips-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.material-chip {
    background: #FFFFFF;
    border: 1px solid var(--color-gold);
    color: #4A4036;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.row-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-sage);
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.row-action-btn:hover {
    background: var(--color-sage-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 130, 104, 0.3);
}

.region-matrix-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: #FFFFFF;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.region-matrix-table th {
    background: var(--color-sage);
    color: #FFFFFF;
    padding: 1.1rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
}

.region-matrix-table td {
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.98rem;
    color: var(--text-primary);
}

.region-matrix-table tr:hover {
    background-color: var(--color-sage-light);
}

/* Responsive View Toggles for Mobile Property Display */
.mobile-card-view {
    display: none;
}

@media (max-width: 767px) {
    .desktop-table-view {
        display: none !important;
    }
    .mobile-card-view {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .construction-service-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem 1rem !important; /* Compact 4-side spacing for mobile */
        margin-top: 1.5rem;
    }
    .construction-service-box > .icon-wrap {
        display: none !important; /* Hide large side icon on mobile */
    }
    .construction-service-box h4 {
        font-size: 1.05rem !important;
        line-height: 1.4 !important;
        gap: 0.4rem !important;
    }
    .construction-service-box h4 i {
        width: 20px !important;
        height: 20px !important;
        flex-shrink: 0;
    }
    .construction-service-box p {
        font-size: 0.92rem !important;
        line-height: 1.55 !important;
    }
    .material-chips-wrap {
        gap: 0.4rem !important;
        margin-top: 0.6rem !important;
    }
    .material-chip {
        font-size: 0.8rem !important;
        padding: 0.28rem 0.65rem !important;
    }
    .material-chip i {
        width: 13px !important;
        height: 13px !important;
    }
}

.mobile-property-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--color-sage);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-property-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--color-sage);
}

.mobile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.mobile-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Anek Tamil', 'Hind Madurai', sans-serif;
    line-height: 1.35;
    flex: 1;
}

.mobile-card-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.15rem;
    font-family: 'Hind Madurai', 'Noto Sans Tamil', sans-serif;
}

.mobile-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px dashed var(--color-border);
    padding-top: 0.85rem;
    margin-top: auto;
}

.mobile-card-price-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .prime-locations-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.25rem !important;
    }

    .prime-location-card {
        padding: 1.25rem !important;
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .prime-location-card .location-icon {
        width: 42px !important;
        height: 42px !important;
        flex-shrink: 0;
        margin-bottom: 0 !important;
    }

    .prime-location-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.3rem !important;
        font-family: 'Anek Tamil', 'Hind Madurai', sans-serif;
    }

    .prime-location-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        font-family: 'Hind Madurai', 'Noto Sans Tamil', sans-serif;
    }

    .region-feature-card {
        padding: 1.5rem 1.25rem !important;
    }

    .region-feature-card h3 {
        font-size: 1.35rem !important;
        margin-bottom: 0.5rem !important;
    }

    .region-feature-card p {
        font-size: 0.93rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.25rem !important;
    }

    .region-feature-card .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Mobile Location Cards for Section 2 (சேவை பகுதிகள்) */
.mobile-location-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border-left: 5px solid var(--color-sage);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    transition: var(--transition-smooth);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.mobile-location-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--color-sage);
}

.mobile-location-top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.mobile-location-icon {
    width: 40px;
    height: 40px;
    background: var(--color-sage-light);
    color: var(--color-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.mobile-location-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    flex: 1;
}

.mobile-location-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Anek Tamil', 'Hind Madurai', sans-serif;
    line-height: 1.3;
    margin: 0;
}

.mobile-location-info h3 .en-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-location-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    font-family: 'Hind Madurai', 'Noto Sans Tamil', sans-serif;
    margin: 0;
}

.mobile-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #25D366;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
    margin-top: 0.25rem;
    font-family: 'Hind Madurai', 'Outfit', sans-serif;
}

.mobile-wa-btn:hover, .mobile-wa-btn:active {
    background: #20BA5A;
    color: #FFFFFF;
}

/* Scroll To Top Button Placement & Alignment */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px; /* Placed on bottom-left for perfect symmetry & zero collision with floating CTA */
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1E271D;
    color: var(--color-gold);
    border: 1.5px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.scroll-to-top:hover {
    background-color: var(--color-gold);
    color: #1E271D;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.scroll-to-top svg {
    stroke: currentColor;
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 20px !important;
        left: 15px !important;
        width: 44px !important;
        height: 44px !important;
    }
    .floating-cta span {
        display: none !important;
    }
    .floating-cta {
        bottom: 20px !important;
        right: 15px !important;
        width: 46px !important;
        height: 46px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
        z-index: 1000 !important;
    }
    .floating-cta svg {
        width: 22px !important;
        height: 22px !important;
        margin: 0 !important;
    }
}

/* --- Offcanvas Mobile Navigation Drawer --- */
.offcanvas-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.offcanvas-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.offcanvas-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 84vw;
    max-width: 350px;
    height: 100vh;
    background: #FFFFFF;
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.offcanvas-drawer.open {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    background: #FCFAF7;
}

.offcanvas-close {
    background: transparent;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.offcanvas-close:hover {
    background: var(--color-border);
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
}

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

.offcanvas-nav-list li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.5rem;
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.offcanvas-nav-list li a svg {
    width: 20px;
    height: 20px;
    color: var(--color-sage);
    flex-shrink: 0;
}

.offcanvas-nav-list li.active a,
.offcanvas-nav-list li a:hover {
    background: var(--color-sage-light);
    color: var(--color-sage);
    border-left-color: var(--color-sage);
    font-weight: 600;
}

.badge-hot {
    background: var(--color-gold);
    color: #1E271D;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    margin-left: auto;
}

/* --- Executive Dark Footer (Matching Screenshot Layout) --- */
.site-footer {
    background: #0B0E14 !important;
    color: #94A3B8;
    padding: 4.5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-body);
}

.footer-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 1024px) {
    .footer-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid-4col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo-badge {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-logo-badge img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-brand-desc {
    color: #94A3B8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    color: #FFFFFF !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: 0.02em;
    font-family: var(--font-heading);
}

.footer-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-bullet-list li a {
    color: #94A3B8;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-bullet-list li a .bullet-dot {
    color: var(--color-gold);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-bullet-list li a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-address-box {
    color: #94A3B8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-address-box .company-title {
    color: #E2E8F0;
    font-weight: 700;
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.footer-contact-block p {
    color: #94A3B8;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.footer-contact-block p strong {
    color: #E2E8F0;
    font-weight: 600;
}

.footer-contact-block p a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-block p a:hover {
    color: var(--color-gold);
}

.social-icon-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    transition: all 0.25s ease;
    text-decoration: none;
}

.social-circle-btn svg,
.social-circle-btn i {
    width: 18px !important;
    height: 18px !important;
    stroke: #FFFFFF !important;
    color: #FFFFFF !important;
    display: block !important;
    transition: stroke 0.25s ease, color 0.25s ease;
}

.social-circle-btn:hover {
    background: var(--color-gold) !important;
    border-color: var(--color-gold) !important;
    color: #1E271D !important;
    transform: translateY(-3px);
}

.social-circle-btn:hover svg,
.social-circle-btn:hover i {
    stroke: #1E271D !important;
    color: #1E271D !important;
}


.footer-blogs-widget {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-blog-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.footer-blog-card:hover {
    transform: translateX(4px);
}

.footer-blog-card .blog-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-blog-card .blog-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer-blog-card .blog-title {
    color: #E2E8F0;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-blog-card:hover .blog-title {
    color: var(--color-gold);
}

/* Solid Table Action Button */
.table-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--color-sage);
    color: #FFFFFF !important;
    padding: 0.45rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: 'Hind Madurai', 'Anek Tamil', sans-serif;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(110, 130, 104, 0.25);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.table-action-btn:hover {
    background: #566851;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(110, 130, 104, 0.4);
}

.table-action-btn svg,
.table-action-btn i {
    width: 15px !important;
    height: 15px !important;
    stroke: #FFFFFF !important;
}

/* Service Region CTA Card & Responsive Fixes */
.service-region-cta-card {
    background: var(--bg-card);
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    text-align: left;
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
    overflow: hidden;
}

.service-cta-btn {
    background: var(--color-gold);
    color: #1E271D !important;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Anek Tamil', 'Hind Madurai', sans-serif;
    text-decoration: none !important;
    max-width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background: #b59048;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

@media (max-width: 768px) {
    .service-region-cta-card {
        padding: 1.5rem 1.15rem;
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }
    
    .service-cta-btn span {
        white-space: normal;
        word-break: break-word;
    }
}

/* Construction Feature Card & Badge Responsive Styling */
.construction-feature-card {
    background: linear-gradient(135deg, #1E271D 0%, #2A3629 100%);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    box-sizing: border-box;
}

.construction-badge {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--color-gold);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    font-family: 'Anek Tamil', 'Hind Madurai', sans-serif;
    max-width: 100%;
}

@media (max-width: 768px) {
    .construction-feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .construction-badge {
        display: inline-block;
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
        line-height: 1.4;
    }
}

/* Exclusive Property Portfolio Desktop Table & Mobile Cards Toggle */
.portfolio-table-wrapper {
    display: block;
}

.portfolio-cards-mobile {
    display: none !important;
}

@media (max-width: 768px) {
    .portfolio-table-wrapper {
        display: none !important;
    }
    
    .portfolio-cards-mobile {
        display: flex !important;
        flex-direction: column;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
}











/* Submit button processing spinner */
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
