/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

body {
    background-color: #f4f7f5;
    color: #1f2d27;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: #0a3c28;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 3000;
    text-decoration: none;
    font-weight: 700;
}

.skip-link:focus {
    left: 12px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 98px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(10, 60, 40, 0.2);
    background: #ffffff;
    color: #0a3c28;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(10, 60, 40, 0.16);
    z-index: 980;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.25s ease;
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

input, select, textarea, button {
    font: inherit;
}

/* =========================
   TOP INFO BAR
========================= */
.top-bar {
    background-color: #0a3c28;
    color: #d4af37;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-items: baseline;
    padding: 10px 10%;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 40px;
}
/* Perfect alignment for opening hours */
.top-bar .opening-hours {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Fix top bar text alignment */
.top-bar p,
.top-bar span {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.top-left span {
    margin-right: 20px;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #fff;
}

.phone-link strong {
    color: #d4af37;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(10, 60, 40, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(5, 37, 25, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 8%;
}

.brand-link {
    flex-shrink: 0;
}

.logo,
.footer-logo {
    height: 100px;
    width: auto;
    max-width: min(100%, 260px);
    object-fit: contain;
    display: block;
}

/* =========================
   NAV LINKS
========================= */
nav a {
    margin-left: 0;
    text-decoration: none;
    color: #0a3c28;
    font-weight: 600;
    transition: 0.25s ease;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.site-nav .nav-link {
    position: relative;
    padding: 10px 6px;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.site-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #d4af37, #0a3c28);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.site-nav .nav-link:hover::after {
    transform: scaleX(1);
}

nav a:hover,
.site-nav .nav-link:hover {
    color: #d4af37;
}

.nav-cta {
    background: linear-gradient(135deg, #0a3c28, #126046);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 20px rgba(10, 60, 40, 0.2);
}

.nav-cta:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(10, 60, 40, 0.28);
}

/* =========================
   NAV DROPDOWN
========================= */
.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.dropdown-toggle:hover {
    color: #d4af37;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(10, 60, 40, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(10, 60, 40, 0.12);
    backdrop-filter: blur(10px);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #0a3c28;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f3f7f6;
    color: #d4af37;
    padding-left: 20px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid rgba(10, 60, 40, 0.2);
    background: rgba(255, 255, 255, 0.92);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #0a3c28;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO / LANDING SECTION
========================= */
.hero {
    min-height: 100vh;
    background: #2d7a6a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 60px 40px;
}

.hero-content.hero-center {
    padding: 80px 40px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 50px;
    line-height: 1.6;
    color: #f0f0f0;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: #d4af37;
    margin: 25px auto;
    border-radius: 2px;
}

/* Properties dropdown on properties page */
.properties-hero-dropdown {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}
.properties-dropdown {
    position: relative;
}
.properties-dropdown .dropdown-toggle {
    background: transparent;
    border: none;
    color: #0a3c28;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
}
.properties-dropdown .dropdown-menu {
    position: absolute;
    top: 38px;
    left: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(10,60,40,0.08);
    min-width: 240px;
    padding: 12px;
    display: none;
    z-index: 1000;
}
.properties-dropdown:hover .dropdown-menu { display: block; }
.properties-dropdown .dropdown-section { margin-bottom: 8px; }
.properties-dropdown .dropdown-header { font-weight:700; color:#0a3c28; margin-bottom:6px; }
.properties-dropdown #soldList { display:flex; flex-direction:column; gap:6px; max-height:300px; overflow:auto; }
.properties-dropdown .sold-item { color:#0a3c28; text-decoration:none; padding:6px 8px; border-radius:6px; }
.properties-dropdown .sold-item:hover { background:#f3f7f6; color:#d4af37; padding-left:12px; }
.properties-dropdown .dropdown-loading, .properties-dropdown .dropdown-empty, .properties-dropdown .dropdown-error { color:#6b7280; padding:6px 8px; }

/* =========================
   HERO BUTTONS SECTION
========================= */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================
   ABOUT OVERVIEW SECTION
========================= */
.about-overview-section {
    background: linear-gradient(135deg, #f8fbfa 0%, #e8f3f0 100%);
    padding: 80px 10%;
}

.about-overview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-overview-content h2 {
    font-size: 2.5rem;
    color: #0a3c28;
    margin-bottom: 12px;
    font-weight: 700;
}

.overview-subtitle {
    font-size: 1.2rem;
    color: #2d7a6a;
    margin-bottom: 30px;
    font-weight: 500;
}

.overview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.highlight-item:hover {
    box-shadow: 0 8px 24px rgba(45, 122, 106, 0.15);
    transform: translateY(-5px);
}

.highlight-item h4 {
    font-size: 1.2rem;
    color: #0a3c28;
    margin-bottom: 12px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0;
}

.overview-cta {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 4px solid #2d7a6a;
    text-align: center;
}

.overview-cta p {
    font-size: 1.1rem;
    color: #0a3c28;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-btn {
    padding: 14px 40px;
    font-size: 1rem;
}

.cta-btn.primary {
    background: #0a3c28;
    color: white;
    border: none;
}

.cta-btn.primary:hover {
    background: #2d7a6a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 60, 40, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #0a3c28;
    border: 2px solid #0a3c28;
}

.cta-btn.secondary:hover {
    background: #0a3c28;
    color: white;
    transform: translateY(-2px);
}

/* =========================
   CTA BUTTON
========================= */
.cta-btn {
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-btn.btn-primary {
    background-color: #d4af37;
    color: #0a3c28;
}

.cta-btn.btn-primary:hover {
    background-color: #c9a02d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cta-btn.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

/* =========================
   LAND LISTINGS SECTION
========================= */
.land-listings {
    background: #ffffff;
    padding: 60px 10%;
}

.land-listings h2 {
    text-align: center;
    color: #0a3c28;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 1rem;
}

/* LAND GRID */
.land-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* LAND CARD */
.land-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.land-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.land-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.land-card-image img,
.land-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.land-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d4af37;
    color: #0a3c28;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 10;
}

.land-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.land-card h3 {
    color: #0a3c28;
    font-size: 1.2rem;
    margin: 0 0 8px;
    font-weight: 700;
}

.location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.land-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 16px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: bold;
}

.land-meta span {
    font-size: 0.9rem;
    color: #555;
}

.price {
    color: #0a3c28;
    font-size: 1.1rem;
    font-weight: 700;
}

.land-actions {
    display: flex;
    gap: 12px;
}

.btn-whatsapp {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-details {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-details:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================
    LEGAL GUIDES STYLES
    (cards, hero, responsive grid)
======================== */
.guides-hero {
     background: linear-gradient(135deg,#0a3c28 0%,#1a5c48 100%);
     color: #fff;
     padding: 54px 10%;
}
.guides-hero-inner { max-width:1100px; margin:0 auto; }
.guides-hero h1 { font-size:2.4rem; margin-bottom:8px; }
.guides-hero .lead { color: rgba(255,255,255,0.9); margin-top:6px; }

.guides-list.container { padding:40px 10%; max-width:1400px; margin:0 auto; }
.input-search { padding:10px 12px; border:1px solid #e5e7eb; border-radius:6px; width:320px; }
.select-filter { padding:10px 12px; border:1px solid #e5e7eb; border-radius:6px; }
.empty-state { text-align:center; color:#6b7280; padding:30px 0; display:none; }

.guides-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.guide-card { background:#fff; border-radius:10px; overflow:hidden; box-shadow:0 8px 24px rgba(10,60,40,0.06); display:flex; flex-direction:column; }
.guide-thumb { width:100%; height:180px; background-size:cover; background-position:center; }
.guide-card-body { padding:18px; display:flex; flex-direction:column; flex:1; }
.guide-meta { display:flex; justify-content:space-between; align-items:center; color:#6b7280; font-size:0.9rem; margin-bottom:8px; }
.guide-category { background:#f3f7f6; color:#0a3c28; padding:4px 8px; border-radius:6px; font-weight:700; font-size:0.8rem; }
.guide-title { margin:6px 0 8px 0; font-size:1.1rem; }
.guide-title a { color:#0a3c28; text-decoration:none; }
.guide-excerpt { color:#4b5563; font-size:0.95rem; line-height:1.6; margin-bottom:12px; flex:1; }
.guide-actions { text-align:right; }
.read-more { color:#0a3c28; font-weight:700; text-decoration:none; }

/* Detail view styles for guides */
.guide-detail-page {
    background: #fff;
}

.guide-detail-hero {
    background: #f9fafb;
    padding: 48px 10%;
    border-bottom: 1px solid #e5e7eb;
}

.guide-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-back-link {
    display: inline-block;
    color: #0a3c28;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.guide-back-link:hover {
    color: #d4af37;
}

.guide-detail-title {
    font-size: 2.2rem;
    color: #0a3c28;
    margin: 12px 0 20px 0;
    line-height: 1.3;
    font-weight: 700;
}

.guide-detail-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.meta-badge {
    background: #fff;
    color: #4b5563;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.meta-badge i {
    color: #d4af37;
}

.guide-featured-image-container {
    padding: 40px 10%;
    background: #f9fafb;
}

.guide-featured-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(10, 60, 40, 0.08);
}

.guide-content-area {
    padding: 40px 10%;
    background: #fff;
}

.guide-content-container {
    max-width: 900px;
    margin: 0 auto;
}

.guide-summary-section {
    background: #fffbf0;
    border-left: 4px solid #d4af37;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.summary-label {
    color: #7c6b2c;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px 0;
}

.guide-excerpt-text {
    color: #374151;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.guide-body {
    color: #333;
    line-height: 1.8;
    font-size: 1rem;
    white-space: pre-wrap;
}

/* Related Guides Section */
.related-guides {
    padding: 50px 10%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f7f6 100%);
}

.related-guides-container {
    max-width: 1200px;
    margin: 0 auto;
}

.related-title {
    font-size: 1.8rem;
    color: #0a3c28;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.related-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(10, 60, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 60, 40, 0.12);
}

.related-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.related-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-category {
    background: #f3f7f6;
    color: #0a3c28;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
    width: fit-content;
}

.related-heading {
    font-size: 1.1rem;
    color: #0a3c28;
    margin: 8px 0;
    font-weight: 700;
    line-height: 1.4;
}

.related-meta {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 12px 0;
    flex: 1;
}

.related-link {
    color: #0a3c28;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 12px;
}

.related-link:hover {
    color: #d4af37;
}

@media (max-width:800px){
  .guides-hero { padding:40px 6%; }
  .input-search { width:160px; }
}

/* =========================
    STATS / TRUST SECTION
======================== */
.stats-section {
    background: linear-gradient(135deg, #d4af37 0%, #c49d2e 100%);
    padding: 40px 10%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.stat {
    padding: 12px;
}

.stat h3 {
    font-size: 2rem;
    color: #0a3c28;
    margin: 0 0 6px;
    font-weight: 700;
}

.stat p {
    margin: 0;
    font-weight: 600;
    color: #0a3c28;
    font-size: 0.9rem;
}

/* =========================
   FEATURES / ABOUT
========================= */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px 10%;
    background: #ffffff;
}

.feature {
    text-align: center;
    padding: 15px 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.feature h3 {
    color: #0a3c28;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.feature p {
    color: #555;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section {
    padding: 50px 10%;
    background: linear-gradient(135deg, #f4f7f5 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.testimonials-section h2 {
    font-size: 32px;
    color: #0a3c28;
    margin-bottom: 12px;
}

.testimonials-section .section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* TESTIMONIALS CAROUSEL CONTAINER */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 30px;
    position: relative;
}

/* Single testimonial carousel mode */
.testimonials-grid.carousel-mode {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonials-grid.carousel-mode .testimonial-card {
    min-width: 50%;
    transition: transform 0.5s ease-in-out;
    flex: 0 0 50%;
    padding: 12px;
    box-sizing: border-box;
}

.testimonial-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-card .stars {
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 3px;
    display: inline-block;
}

.testimonial-card .testimonial-text {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #e0e0e0;
}

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #d4af37;
    color: #0a3c28;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.testimonial-author-info {
    flex-grow: 1;
}

.testimonial-author strong {
    color: #0a3c28;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-author p {
    color: #999;
    font-size: 12px;
    margin: 0;
}

/* CAROUSEL NAVIGATION BUTTONS */
.testimonials-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonials-nav-btn {
    background: #0a3c28;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 60, 40, 0.2);
}

.testimonials-nav-btn:hover {
    background: #d4af37;
    color: #0a3c28;
    transform: scale(1.1);
}

.testimonials-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.testimonials-counter {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.footer-main {
    background-color: #0a3c28;
    color: #ffffff;
    margin-top: 100px;
}

.footer-top {
    padding: 80px 10% 60px 4%;
    border-bottom: 3px solid #d4af37;
}

.footer-container {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
    gap: 60px !important;
    grid-auto-flow: row !important;
}
.footer-container > div {
    display: flex;
    flex-direction: column;
}

/* Pull Opening Hours closer to Get In Touch */
.footer-hours {
    margin-left: -80px;
}

/* Tighten Company ↔ Get In Touch spacing */
.footer-contact {
    margin-left: -80px;
}

/* =========================
   FOOTER COLUMN CONTENT ALIGNMENT FIX
========================= */
/* =========================
   FOOTER CONTENT PULL-UP
========================= */

/* Remove uneven margins that cause misalignment */
.footer-links a {
    margin-bottom: 0;
}

.contact-item {
    margin-bottom: 0;
}

.hour-row span {   /* Monday - Friday */
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.hour-row p {      /* 9:00 AM - 6:00 PM */
    font-size: 0.8rem;
    white-space: nowrap;
}
.footer-hours .hours-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-hours .hour-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.footer-hours .hour-row span,
.footer-hours .hour-row p {
    margin: 0;
    line-height: 1.4;
}

.footer-about {
    display: flex !important;
    flex-direction: column !important;
}



.footer-logo {
    margin-bottom: clamp(16px, 4vw, 32px);
}

.footer-about > p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: #d4af37;
    color: #0a3c28;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-hours h4 {
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #d4d4d4;
    text-decoration: none;
    margin-bottom: 14px;
    transition: 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    color: #d4d4d4;
    font-size: 0.85rem;
}

.contact-item i {
    color: #d4af37;
    width: 18px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-item strong {
    color: #ffffff;
    display: inline;
}

.hours-list {
    color: #d4d4d4;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.hour-row span {
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
    white-space: nowrap;
}

.hour-row p {
    margin: 0;
    color: #d4d4d4;
    text-align: right;
}

.footer-bottom {
    background: linear-gradient(90deg, #062820 0%, #0a3c28 100%);
    padding: 20px 10%;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #d4d4d4;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #d4af37;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .nav-container {
        padding: 12px 6%;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 6%;
        right: 6%;
        margin-left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(10, 60, 40, 0.12);
        box-shadow: 0 18px 38px rgba(10, 60, 40, 0.18);
        backdrop-filter: blur(14px);
    }

    .navbar.nav-open .site-nav {
        display: flex;
    }

    .site-nav .nav-link,
    .dropdown-toggle {
        width: 100%;
        padding: 10px 8px;
    }

    .nav-dropdown {
        width: 100%;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: rgba(243, 247, 246, 0.95);
        margin-top: 4px;
        border-radius: 8px;
        overflow: hidden;
        display: none;
    }

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

    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }

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

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 6%;
    }

    .top-bar .opening-hours {
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo,
    .footer-logo {
        height: 72px;
        max-width: min(100%, 220px);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .footer-about {
        align-items: center;
    }

    .scroll-top-btn {
        right: 16px;
        bottom: 88px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================
   ABOUT HERO
========================= */
.about-hero {
    position: relative;
    min-height: 70vh;
    background: url("../images/about-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 40, 0.78);
}

.about-hero-content {
    position: relative;
    max-width: 700px;
    color: #ffffff;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #f0f0f0;
}

/* =========================
   MISSION / VISION / VALUES
========================= */
.mv-section {
    padding: 80px 10%;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    position: relative;
    background: #f4f7f5;
    border-left: 5px solid #0a3c28;
}

.mv-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #0a3c28;
    font-size: 1.4rem;
}

.mv-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.mv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0a3c28;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
}

.mv-card.mission-card {
    border-left: 5px solid #0a3c28;
}

.mv-card.vision-card {
    border-left: 5px solid #0a3c28;
}

.mv-card.values-card {
    border-left: 5px solid #0a3c28;
}

.values-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.values-list li {
    margin-bottom: 10px;
    color: #0a3c28;
    font-weight: 500;
}

/* =========================
   EXPLORE ALL BUTTON
========================= */
.explore-all-container {
    text-align: center;
    padding: 40px 10%;
    background: #ffffff;
}

.explore-all-btn {
    display: inline-block;
    background: #0a3c28;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #0a3c28;
}

.explore-all-btn:hover {
    background: #d4af37;
    color: #0a3c28;
    border-color: #d4af37;
}

/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-choose-section {
    padding: 80px 10%;
    background: #ffffff;
    text-align: center;
}

.why-choose-section h2 {
    font-size: 2.2rem;
    color: #0a3c28;
    margin-bottom: 15px;
}

.why-choose-section .section-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 50px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: #f4f7f5;
    padding: 35px 30px;
    border-radius: 12px;
    border-top: 4px solid #0a3c28;
    transition: all 0.3s ease;
}

.why-card:hover {
    box-shadow: 0 15px 35px rgba(10, 60, 40, 0.15);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #0a3c28;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.why-card h4 {
    color: #0a3c28;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================
   WHY CHOOSE (OLD)
========================= */
.why-choose {
    padding: 80px 10%;
    background: #fff;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: left;
}

.why-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
    background: linear-gradient(135deg, #0a5240 0%, #0f6a4a 100%);
    color: #ffffff;
    padding: 100px 10%;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #d4af37;
    color: #0a3c28;
    padding: 16px 45px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.cta-primary:hover {
    background: #b8962e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #0a3c28;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    margin: 0;
    padding: 0;
}

.page-title {
    text-align: center;
    margin-bottom: 30px;
}

/* =========================
   PROPERTIES PAGE
========================= */
/* Center page & prevent over-wide stretch */
.properties-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

/* Force 3 properties per row */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Property card */
.property-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.property-card:hover {
    transform: translateY(-6px);
}

/* IMAGE CONTAINER */
.property-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

/* Image styling - maintains aspect ratio */
.property-card img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;   /* locks height */
    object-fit: cover;     /* crops tall images */
    object-position: center;
    display: block;
}

.property-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Card content spacing */
.property-details {
    padding: 14px 16px;
}

/* Price */
.property-price {
    font-size: 17px;
    font-weight: 700;
    color: #d99000;
}

/* Button */
.property-btn {
    display: inline-block;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   SHARED PROPERTY WIDTH CONTAINER
========================= */
.property-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10%;
}

/* =========================
   PROPERTY DETAILS HEADER
========================= */
/* =========================
   PROPERTY DETAILS IMAGE
========================= */
.property-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.property-header {
    margin: 40px 0 20px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .current {
    color: #111827;
    font-weight: 500;
}

.property-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

.property-location {
    font-size: 0.95rem;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.property-location i {
    display: none;
}

.property-location img {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* BADGES */
.property-badges {
    display: flex;
    gap: 10px;
}

.badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}

.badge.featured {
    background: #22c55e;
    color: #ffffff;
}

.badge.available {
    background: #111827;
    color: #ffffff;
}

/* =========================
   NEWS PAGE HERO
========================= */
.news-hero {
    background: linear-gradient(135deg, #5a7c8f 0%, #4a6f87 50%, #3a6279 100%);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    position: relative;
    overflow: hidden;
}

.news-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 40, 0.4);
    z-index: 1;
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 40, 0.4);
    z-index: 1;
}

.news-hero-content {
    position: relative;
    z-index: 2;
}

.news-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.curve-divider {
    background: #0a3d2c;
    height: 80px;
    border-bottom-left-radius: 100% 40px;
    border-bottom-right-radius: 100% 40px;
}

/* =========================
   FEATURED ARTICLES
========================= */
.featured-articles {
    padding: 60px 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.section-title img {
    width: 24px;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

    max-width: 1200px;   /* 🔑 controls width like 2nd screenshot */
    margin: 0 auto;      /* 🔑 centers the grid */
    padding: 0 20px;     /* 🔑 prevents edge sticking */
}
.articles-grid {
    grid-auto-rows: auto;
    align-items: start;
    justify-items: stretch;
}

/* Ensure each card fills its grid cell and shows full content */
.articles-grid > .blog-card {
    box-sizing: border-box !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
}

.articles-grid .blog-card .article-image {
    height: 200px !important;
}

.articles-grid .blog-card .blog-content {
    flex: 1 1 auto !important;
    min-height: 120px !important;
}

/* 🔥 FORCE GRID ITEMS TO STAY IN COLUMNS */
.articles-grid > * {
    grid-column: auto !important;
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

.articles-grid > .blog-card {
    width: 100% !important;
    align-self: stretch !important;
}

    .blog-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }
    .article-image, .blog-card img {
        width: 100% !important;
        height: 240px !important;
        object-fit: cover !important;
    }

/* Strong overrides to prevent side-by-side image/content inside each card */
.articles-grid .blog-card {
    display: flex !important;
    /* Keep vertical card: image on top, content below */
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    overflow: hidden !important;
}

.articles-grid .blog-card .article-image {
    width: 100% !important;
    height: 240px !important;
    flex: 0 0 auto !important;
    border-top-left-radius: 12px !important;
    border-top-right-radius: 12px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    overflow: hidden !important;
}

.articles-grid .blog-card .blog-content {
    background: #ffffff !important;
    padding: 20px !important;
    flex: 1 1 auto !important;
    border-bottom-left-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

/* Make sure images inside placeholders behave */
.articles-grid .blog-card .article-image img,
.articles-grid .blog-card img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

    /* Mobile: stack vertically with image on top */
    .articles-grid .blog-card {
        flex-direction: column !important;
    }
    .articles-grid .blog-card .article-image {
        width: 100% !important;
        height: 200px !important;
        flex: 0 0 auto !important;
        border-top-right-radius: 12px !important;
        border-bottom-right-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    .articles-grid .blog-card .blog-content {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 12px !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 12px !important;
    }

.container {
     width: 100%;
     margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #d9a91a;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
}

.blog-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.metadata {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
}

.category-tag {
    background: #0a3d2c;
    color: white;
    padding: 6px 14px;
    border: none;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: default;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.blog-content h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.author {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.read-more {
    color: #d9a91a;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0a3d2c;
}
/* =========================
   NEWSLETTER SECTION
========================= */
.newsletter-section {
    background: linear-gradient(135deg, #0a3c28 0%, #0f4f36 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content {
    padding: 0 20px;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.newsletter-section > .newsletter-container > .newsletter-content > p:first-of-type {
    font-size: 1.05rem;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.6;
}

.newsletter-section p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.newsletter-form input {
    padding: 14px 18px;
    width: 300px;
    max-width: 90%;
    border: none;
    border-radius: 6px;
    font-size: 15px;
}

.newsletter-form button {
    background: #d9a91a;
    color: #1f2d27;
    padding: 14px 26px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #c79a16;
}

.sub-count {
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.9;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background: #1fbb5a;
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* WhatsApp contact on property details */
.side-whatsapp-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 500;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.whatsapp-btn:hover {
    background: #1fbb5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================
   BLOG ARTICLE DETAIL PAGE
========================================== */
.article-details {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-hero-image {
    width: 100%;
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.article-meta {
    color: #4a4a4a;
    font-size: 15px;
    margin: 8px 0 10px;
}

.badge {
    display: inline-block;
    background-color: #D4A617; /* gold */
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.category-tag {
    background-color: #0a3c2f; /* dark green */
    color: white;
    border: none;
    padding: 6px 14px;
    margin: 10px 0 20px;
    border-radius: 6px;
    font-size: 14px;
}

.article-details h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: #0a3c2f;
}

.article-details h2 {
    margin-top: 28px;
    font-size: 24px;
    color: #0a3c2f;
}

.article-details .author {
    font-size: 15px;
    margin-bottom: 25px;
    color: #444;
}

.article-body {
    margin-top: 20px;
}

.article-body p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 18px;
    color: #1f2d27;
}

.article-body ul {
    margin: 10px 0 20px 25px;
}

.article-body li {
    margin: 6px 0;
    font-size: 17px;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .article-details h1 {
        font-size: 27px;
    }

    .article-details h2 {
        font-size: 20px;
    }

    .article-body p {
        font-size: 16px;
    }
}
/* ==========================================
   BLOG ARTICLE DETAIL PAGE
========================================== */

.article-details {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-hero-image {
    width: 100%;
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.article-meta {
    color: #4a4a4a;
    font-size: 15px;
    margin: 8px 0 10px;
}

.badge {
    display: inline-block;
    background-color: #D4A617; /* gold */
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.category-tag {
    background-color: #0a3c2f; /* dark green */
    color: white;
    border: none;
    padding: 6px 14px;
    margin: 10px 0 20px;
    border-radius: 6px;
    font-size: 14px;
}

.article-details h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: #0a3c2f;
}

.article-details h2 {
    margin-top: 28px;
    font-size: 24px;
    color: #0a3c2f;
}

.article-details .author {
    font-size: 15px;
    margin-bottom: 25px;
    color: #444;
}

.article-body {
    margin-top: 20px;
}

.article-body p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 18px;
    color: #1f2d27;
}

.article-body ul {
    margin: 10px 0 20px 25px;
}

.article-body li {
    margin: 6px 0;
    font-size: 17px;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .article-details h1 {
        font-size: 27px;
    }

    .article-details h2 {
        font-size: 20px;
    }

    .article-body p {
        font-size: 16px;
    }
}
/* ==========================================
   BLOG ARTICLE DETAIL PAGE
========================================== */

.article-details {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.article-hero-image {
    width: 100%;
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}

.article-meta {
    color: #4a4a4a;
    font-size: 15px;
    margin: 8px 0 10px;
}

.badge {
    display: inline-block;
    background-color: #D4A617; /* gold */
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.category-tag {
    background-color: #0a3c2f; /* dark green */
    color: white;
    border: none;
    padding: 6px 14px;
    margin: 10px 0 20px;
    border-radius: 6px;
    font-size: 14px;
}

.article-details h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 15px;
    color: #0a3c2f;
}

.article-details h2 {
    margin-top: 28px;
    font-size: 24px;
    font-weight: 600;
    color: #0a3c2f;
}

.article-details .author {
    font-size: 15px;
    margin-bottom: 25px;
    color: #4a4a4a;
}

.article-body {
    margin-top: 20px;
}

.article-body p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 18px;
    color: #1f2d27;
}

.article-body ul {
    margin: 10px 0 20px 25px;
    color: #1f2d27;
}

.article-body li {
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.7;
}

/* Mobile Styling */
@media (max-width: 768px) {
    .article-details h1 {
        font-size: 27px;
    }

    .article-details h2 {
        font-size: 20px;
    }

    .article-body p {
        font-size: 16px;
    }
}

/* =========================
   CONTACT HERO
========================= */
.contact-hero {
    background: linear-gradient(135deg, #5a7c8f 0%, #4a6f87 50%, #3a6279 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 60, 40, 0.3);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* =========================
   CONTACT INFO CARDS
========================= */
.contact-info-section {
    padding: 70px 5% 70px 2%;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
}

.info-card {
    text-align: center;
    padding: 35px 25px;
    background: #f4f7f5;
    border-radius: 16px;
    transition: all 0.3s ease;
    border-top: 4px solid #0a3c28;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #0a3c28;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #d4af37;
    font-size: 1.8rem;
}

.info-card h3 {
    color: #0a3c28;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card > p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-highlight {
    margin: 0;
}

.info-highlight a {
    color: #0a3c28;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.info-highlight a:hover {
    color: #d4af37;
}

/* =========================
   CONTACT CONTENT SECTION
========================= */
.contact-content-section {
    padding: 80px 10% 40px 10% !important;
    background: #f4f7f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 40px 40px 0 40px !important;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 0 !important;
}

.contact-form-wrapper h2 {
    color: #0a3c28;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.alert {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #b91c1c;
}

.alert i {
    font-size: 1.3rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.form-group label {
    color: #0a3c28;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0a3c28;
    box-shadow: 0 0 0 3px rgba(10, 60, 40, 0.1);
}

.btn-submit-contact {
    background: #0a3c28 !important;
    color: white !important;
    border: none !important;
    padding: 14px 30px !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-bottom: 14px !important;
}

.btn-submit-contact:hover {
    background: #062a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 60, 40, 0.2);
}

.btn-submit-contact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* CONTACT INFO SIDEBAR */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #0a3c28 0%, #0f5236 100%);
    color: white;
}

.sidebar-card h3 {
    color: #0a3c28;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card.highlight h3 {
    color: white;
}

.sidebar-card h3 i {
    font-size: 1.3rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.offer-list i {
    color: #0a3c28;
    font-weight: 700;
}

.sidebar-card.highlight .offer-list li {
    color: white;
}

.sidebar-card.highlight .offer-list i {
    color: #4ade80;
}

.sidebar-card.highlight p {
    color: white;
    line-height: 1.6;
}

.hours-info {
    margin-bottom: 15px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #333;
    font-size: 0.95rem;
    gap: 15px;
}

.hour-row .day {
    font-weight: 600;
    color: #0a3c28;
}

.hour-row .time {
    color: #666;
    text-align: right;
}

.support-info {
    color: #0a3c28;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* =========================
   FAQ SECTION
========================= */
.contact-faq-section {
    padding: 80px 10%;
    background: white;
}

.contact-faq-section h2 {
    text-align: center;
    color: #0a3c28;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: #f4f7f5;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e7e1;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 4px 12px rgba(10, 60, 40, 0.1);
    border-color: #0a3c28;
    transform: translateY(-4px);
}

.faq-card h4 {
    color: #0a3c28;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-content-section {
        padding: 50px 5%;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-sidebar {
        gap: 20px;
    }

    .sidebar-card {
        padding: 20px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .contact-faq-section {
        padding: 50px 5%;
    }

    .contact-faq-section h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

.form-group label {
    color: #0a3c28;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #d4d4d4;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 70px;
}

.btn-submit-contact {
    padding: 16px 32px;
    background: #0a3c28;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background: #d4af37;
    color: #0a3c28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-submit-contact:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================
   CONTACT INFO SIDEBAR
========================= */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
    color: #0a3c28;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: #d4af37;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.hour-row .day {
    font-weight: 600;
    color: #0a3c28;
}

.hour-row .time {
    color: #666;
}

.support-info {
    color: #d4af37;
    font-weight: 600;
    text-align: center;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin: 0;
    font-size: 0.9rem;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-list li {
    color: #0a3c28;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.offer-list i {
    color: #d4af37;
    font-weight: bold;
}

.sidebar-card.highlight {
    background: linear-gradient(135deg, #f4f7f5 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 4px solid #d4af37;
}

.sidebar-card.highlight p {
    color: #0a3c28;
    line-height: 1.6;
    margin: 0;
}

/* =========================
   CONTACT FAQ SECTION
========================= */
.contact-faq-section {
    padding: 80px 10%;
    background: #ffffff;
}

.contact-faq-section h2 {
    text-align: center;
    color: #0a3c28;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: #f4f7f5;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #0a3c28;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    transform: translateX(5px);
}

.faq-card h4 {
    color: #0a3c28;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* =========================
   CONTACT HEADER (OLD)
========================= */
.contact-header {
    background-color: #0a3d34;
    color: white;
    padding: 90px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: gold;
}

.contact-header p {
    font-size: 18px;
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
    background-color: #f4f7f5;
    padding: 70px 0;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 90%;
    margin: auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: #0a3d34;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-form textarea {
    height: 150px;
    resize: none;
}

.btn-contact {
    background-color: #0a3d34;
    color: gold;
    border: none;
    padding: 14px 25px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

.btn-contact:hover {
    background-color: #0c4a3f;
}

/* =========================
   CONTACT INFO CARDS (APPENDED)
========================= */

.contact-cards {
    width: 75%;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-cards .card {
    background: #ffffff;
    border: 1.5px solid #e6e6e6;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

.contact-cards .card-icon {
    width: 65px;
    height: 65px;
    background-color: #0a3d34;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cards .card-icon span {
    font-size: 28px;
    color: gold;
}

.contact-cards h3 {
    margin: 0;
    font-size: 22px;
    color: #0a3d34;
    font-weight: 700;
}

.contact-cards p {
    margin: 2px 0;
    color: #1f2d27;
    font-size: 15px;
}

.contact-cards .contact-highlight {
    color: #d4af37;
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
}
/* =========================
   CONTACT FORM FULL SECTION
========================= */
.contact-form-section {
    width: 75%;
    margin: 30px auto;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 18px;
    padding: 30px 35px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    color: #0a3d34;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.form-wrapper p {
    margin-bottom: 20px;
    color: #444;
    font-size: 13px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.form-field {
    flex: 1;
}

.form-field label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
    color: #0a3d34;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1.6px solid #c3c3c3;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #0a3d34;
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 61, 52, 0.12);
}

.form-field textarea {
    height: 90px;
    resize: none;
}

.send-btn {
    background: #d4af37;
    border: none;
    color: #0a3d34;
    font-size: 15px;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 12px;
}

.send-btn:hover {
    background: #bd982f;
}
/* =========================
   OPERATING HOURS SECTION
========================= */
.operating-hours {
    width: 75%;
    margin: 40px auto;
    background: #0a3d34;
    color: white;
    border-radius: 18px;
    padding: 35px 45px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.operating-hours h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #ffd86b;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.hours-row:last-child {
    border-bottom: none;
}
/* =========================
   QUICK RESPONSE GUARANTEE
========================= */
.response-guarantee {
    width: 75%;
    margin: 40px auto;
    background: #d4af37;
    color: #0a3c28;
    border-radius: 18px;
    padding: 35px;
}
.response-guarantee h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.response-guarantee p {
    margin-bottom: 18px;
}

.response-guarantee ul {
    list-style: none;
    padding: 0;
}

.response-guarantee li {
    margin-bottom: 10px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* =========================
   FIND US SECTION
========================= */
.find-us {
    width: 75%;
    margin: 40px auto 80px;
}

.find-us h2 {
    text-align: center;
    margin-bottom: 22px;
    color: #0a3d34;
}

.location-box {
    background: #0a3d34;
    border-radius: 18px;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.location-icon {
    font-size: 60px;
    color: #d4af37;
    margin-bottom: 10px;
}

.location-box h3 {
    font-size: 22px;
    font-weight: 700;
}

.location-box p {
    margin: 8px 0 22px;
    color: #f0f0f0;
}

.directions-btn {
    background: #d4af37;
    color: #0a3c28;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.directions-btn:hover {
    background: #b8952d;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

/* =========================
   PROPERTY DETAILS PAGE - EXACT LAYOUT
========================= */

.property-details-container {
    background: #f9f9f9;
    padding: 30px 20px;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
}

.detail-breadcrumb {
    max-width: 1200px;
    margin: 0 auto 30px;
    font-size: 0.9rem;
    color: #666;
}

.detail-breadcrumb a {
    color: #0066cc;
    text-decoration: none;
}

.detail-breadcrumb a:hover {
    text-decoration: underline;
}

.detail-breadcrumb span {
    margin: 0 8px;
}

/* MAIN WRAPPER */
.detail-main-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;

    max-width: 1200px;
    margin: 0 auto;
}

/* TOP SECTION: FORM + IMAGE SIDE BY SIDE */
.detail-top-section {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr;
    gap: 10px;
    margin-bottom: 8px;
    align-items: start;
}

/* FORM SECTION LEFT */
.detail-left-column-form {
    width: 100%;
    padding: 6px;
    background: white;
    border-radius: 3px;
    max-height: fit-content;
    min-width: 0;
    max-width: 650px;
}

/* IMAGE SECTION */
.detail-image-section {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
}

/* RIGHT COLUMN */
.detail-right-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: fit-content;
}

/* HEADER TOP */
.detail-header-top {
    margin-bottom: 15px;
    padding: 0;
}

.detail-header-top h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.detail-location {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.detail-badges {
    display: flex;
    gap: 10px;
}

.detail-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
}

.detail-badge.featured {
    background: #4CAF50;
    color: white;
}

.detail-badge.available {
    background: #333;
    color: white;
}

/* LEFT COLUMN - MAIN CONTENT */
.detail-left-column {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    max-width: 700px;
}

/* IMAGE CAROUSEL */
.detail-image-carousel {
    position: relative;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
    background: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-image-container video {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(100, 100, 255, 0.7);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-nav.prev {
    left: 15px;
}

.carousel-nav.next {
    right: 15px;
}

.carousel-nav:hover {
    background: rgba(100, 100, 255, 0.9);
}

.thumbnail-images {
    display: flex;
    gap: 8px;
    padding: 8px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
}

.thumbnail {
    width: 100px;
    height: 70px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail.active {
    border-color: #4CAF50;
}
/* DETAIL SECTIONS */
.detail-section {
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    margin: 0 0 12px 0;
}
/* Remove divider look */
.detail-section:last-child {
    margin-bottom: 0;
}

/* ADDRESS SECTION – COMPACT SIZE FIX */
.property-address {
    padding: 16px 20px;
    margin-bottom: 20px;
}

/* ADDRESS GRID */
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 12px;
}

.detail-section:last-child {
    border-bottom: none;
}
.detail-section h2 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111827;
}

.detail-section h3 {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.detail-section p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.6;
}
/* PROPERTY TYPE ROW */
.detail-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.detail-col {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 2px;
}

.detail-col strong {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 5px;
}

.detail-col p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* FEATURES BULLETS */
.features-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-bullets li {
    padding: 8px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-bullets li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #222;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

/* ADDRESS GRID */
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* compact 2 columns */
    column-gap: 40px;
    row-gap: 12px;                  /* 🔑 reduce vertical spacing */
}

.address-grid div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.address-grid strong {
    color: #222;
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 100px;
}

.address-grid p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    text-align: right;
}

.btn-google-maps {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-google-maps:hover {
    background: #002244;
}

/* DETAILS BOXES */
.details-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 14px;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
}

.detail-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.detail-box strong {
    color: #999;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-box span {
    color: #222;
    font-weight: 700;
    font-size: 1.1rem;
}

.detail-price {
    color: #d4a000 !important;
    font-size: 1.2rem !important;
}

.status-badge {
    color: #4CAF50 !important;
}

/* FEATURES CHECKLIST */
.features-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    font-size: 0.95rem;
}

.checkmark {
    color: #4CAF50;
    font-weight: bold;
}

/* CONTACT CARD */
.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 2px;
}

.contact-avatar {
    width: 60px;
    height: 60px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.contact-details {
    flex: 1;
}

.contact-company {
    display: block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 8px;
}

.btn-contact-listings {
    display: inline-block;
    background: #003366;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 2px;
}

.btn-contact-listings:hover {
    background: #002244;
}

/* ENQUIRE FORM */
.enquire-form {
    margin-top: 8px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: inherit;
    font-size: 0.8rem;
    color: #333;
    background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.form-footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.form-footer-info small {
    color: #666;
    font-size: 0.85rem;
}

.form-footer-info a {
    color: #0066cc;
    text-decoration: none;
}

.btn-submit-form {
    background: #4CAF50;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-submit-form:hover {
    background: #45a049;
}

/* =====================================
   FINAL FIX – SIDE ENQUIRY FORM
   ===================================== */

/* Make right column independent of grid scroll */
.detail-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Side form card styling */
.side-form-card {
    background: white;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    width: 100%;
    z-index: 50;
}

/* Prevent overlap on smaller screens */
@media (max-width: 1200px) {
    .side-form-card {
        width: 100%;
    }
}

.side-contact-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.side-avatar {
    width: 40px;
    height: 40px;
    background: #c0c0c0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.side-company {
    color: #d4a000;
    font-weight: 700;
    margin: 0;
    font-size: 0.85rem;
}

.side-view-link {
    display: inline-block;
    color: #003366;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 2px;
}

.side-quick-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-quick-form input,
.side-quick-form select,
.side-quick-form textarea {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.8rem;
    color: #333;
    background: white;
}

.side-quick-form input::placeholder,
.side-quick-form textarea::placeholder {
    color: #aaa;
}

.side-quick-form input:focus,
.side-quick-form select:focus,
.side-quick-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
}

.form-footer-side {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 3px;
}

.form-footer-side small {
    color: #555;
    font-size: 0.7rem;
    line-height: 1.3;
}

.form-footer-side a {
    color: #0066cc;
    text-decoration: none;
}

.btn-send-email {
    background: #7ec844;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    width: 100%;
    transition: background 0.3s ease;
}

.btn-send-email:hover {
    background: #6bb535;
}

/* FLOATING CHAT */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-bubble {
    background: #003366;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    background: #002244;
    transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .detail-top-section,
    .detail-main-wrapper {
        grid-template-columns: 1fr;
    }
    
    .side-form-card {
        position: sticky;
        right: auto;
        width: 100%;
        top: 20px;
        max-height: none;
    }
    
    .details-boxes {
        grid-template-columns: 1fr;
    }
    
    .features-checklist {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .property-details-container {
        padding: 10px;
    }
    
    .detail-header-top {
        margin-bottom: 20px;
    }
    
    .detail-header-top h1 {
        font-size: 1.5rem;
    }
    
    .detail-top-section {
        margin-bottom: 20px;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .detail-section {
        padding: 20px;
    }
    
    .detail-row,
    .address-grid,
    .form-row-2,
    .features-checklist {
        grid-template-columns: 1fr;
    }
    
    .form-footer-info {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .btn-submit-form {
        width: 100%;
    }
    
    .floating-chat {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .logo,
    .footer-logo {
        height: 60px;
        max-width: min(100%, 180px);
    }

    .detail-header-top h1 {
        font-size: 1.3rem;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* =========================
   RESPONSIVE GRID FIXES
========================= */
@media (max-width: 1200px) {
    .land-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
  
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .land-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        padding: 40px 10%;
    }
    
    .footer-about > p {
        font-size: 0.8rem;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .contact-item {
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .hour-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hour-row p {
        text-align: left;
    }
}

/* =====================
   VERIFIED BADGES STRIP
   ===================== */
.verified-badges-strip {
    display: flex;
    gap: 15px;
    margin: 25px 0 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.verified-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.verified-badge i {
    font-size: 1rem;
}

/* =====================
   ARTICLES SECTION
   ===================== */

.article-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: #667eea;
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-placeholder {
    font-size: 48px;
    color: white;
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    display: inline-block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 8px;
}

.article-content h3 {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #333;
    line-height: 1.4;
}

.article-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 12px 0;
    line-height: 1.5;
}

.read-more {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #764ba2;
}

    .latest-articles-section {
        padding: 50px 5%;
    }

    .verified-badges-strip {
        flex-direction: column;
    }

/* =====================
   NEWSLETTER SECTION
   ===================== */
.newsletter-section {
    background: linear-gradient(135deg, #0a3c28 0%, #1a5c42 100%);
    padding: 80px 10%;
    color: white;
    margin: 60px 0;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    background: white;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-btn {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    color: #333;
    border: none;
    padding: 14px 35px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 180px;
}

.newsletter-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.newsletter-alert i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 50px 5%;
        margin: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-btn {
        min-width: 100%;
        width: 100%;
    }
}

/* =====================
   LANDING PAGE STYLES
   ===================== */
.landing-page {
    width: 100%;
}

.landing-hero {
    background: linear-gradient(135deg, #2d7a6a 0%, #1a4a3a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn.btn-primary {
    background: #d4af37;
    color: #0a3c28;
    border: 2px solid #d4af37;
}

.cta-btn.btn-primary:hover {
    background: #c29428;
    border-color: #c29428;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cta-btn.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-3px);
}

/* Featured Preview Section */
.featured-preview-section {
    padding: 100px 10%;
    background: #ffffff;
}

.featured-preview-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-preview-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.featured-preview-section h2 {
    font-size: 2.8rem;
    color: #0a3c28;
    margin-bottom: 15px;
    font-weight: 700;
}

.featured-preview-section .section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.featured-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.featured-property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.featured-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.featured-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.featured-image img,
.featured-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-property-card:hover .featured-image img,
.featured-property-card:hover .featured-image video {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #0a3c28;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
}

.featured-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-info h3 {
    color: #0a3c28;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-location,
.featured-area {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.featured-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
}

.btn-view-details {
    background: #0a3c28;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background: #d4af37;
    color: #0a3c28;
}

.featured-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-block;
    background: #d4af37;
    color: #0a3c28;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #c29428;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f4f7f5 0%, #ffffff 100%);
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.features-container h2 {
    font-size: 2.8rem;
    color: #0a3c28;
    margin-bottom: 15px;
    font-weight: 700;
}

.features-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 70px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #d4af37;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0a3c28 0%, #1a5c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    color: #d4af37;
    flex-shrink: 0;
}

.feature-card h3 {
    color: #0a3c28;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Section */
.testimonials-landing-section {
    padding: 100px 10%;
    background: #ffffff;
    text-align: center;
}

.testimonials-landing-section h2 {
    font-size: 2.8rem;
    color: #0a3c28;
    margin-bottom: 15px;
    font-weight: 700;
}

.testimonials-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.testimonial-slide {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.testimonial-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    font-size: 1.3rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a3c28;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: #0a3c28;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info p {
    color: #999;
    font-size: 0.85rem;
    margin: 0;
}

/* Landing CTA Section */
.landing-cta-section {
    padding: 100px 10%;
    background: linear-gradient(135deg, #0a3c28 0%, #1a5c42 100%);
    text-align: center;
    color: white;
}

.landing-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.landing-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons-large {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large.btn-primary {
    background: #d4af37;
    color: #0a3c28;
    border: 2px solid #d4af37;
}

.btn-large.btn-primary:hover {
    background: #c29428;
    border-color: #c29428;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-large.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-large.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #d4af37;
    transform: translateY(-3px);
}

/* Properties Filters */
.properties-hero {
    background: linear-gradient(135deg, #5a7c8f 0%, #4a6f87 50%, #3a6279 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.properties-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.properties-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.properties-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.properties-filters {
    background: #ffffff;
    padding: 30px 10%;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-container {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    color: #0a3c28;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.filter-input {
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: #d4af37;
}

.btn-search-filters {
    background: #0a3c28;
    border: 2px solid #0a3c28;
    padding: 10px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.btn-search-filters:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #0a3c28;
}

.btn-reset-filters {
    background: #f4f4f4;
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #0a3c28;
    transition: all 0.3s ease;
}

.btn-reset-filters:hover {
    background: #e8e8e8;
    border-color: #0a3c28;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.property-btn {
    background: #0a3c28;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.property-btn:hover {
    background: #d4af37;
    color: #0a3c28;
}
    .featured-preview-section,
    .why-us-section,
    .testimonials-landing-section,
    .landing-cta-section {
        padding: 60px 5%;
    }
    
    .featured-preview-section h2,
    .features-container h2,
    .testimonials-landing-section h2,
    .landing-cta-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons-large {
        flex-direction: column;
    }
    
    .cta-btn,
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features-subtitle,
    .testimonials-subtitle {
        font-size: 0.95rem;
    }

/* ========================= 
   INQUIRY FORM SECTION 
========================= */
.inquiry-form-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 60px 5%;
    border-top: 1px solid #e0e0e0;
}

.inquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-form-section h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.inquiry-subtitle {
    text-align: center;
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.inquiry-form-full {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fafafa;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding-top: 8px;
}

.form-footer small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.form-footer small a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.form-footer small a:hover {
    text-decoration: underline;
}

.btn-send-inquiry {
    background: #7ec844;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
    min-width: 250px;
}

.btn-send-inquiry:hover {
    background: #6bb535;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 181, 53, 0.3);
}

.btn-send-inquiry:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .inquiry-form-full {
        padding: 30px;
    }
    
    .inquiry-form-section h2 {
        font-size: 1.5rem;
    }
    
    .inquiry-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-send-inquiry {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .inquiry-form-section {
        padding: 40px 5%;
    }
    
    .inquiry-form-full {
        padding: 20px;
    }
    
    .inquiry-form-section h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}

/* ========================= 
   ADDITIONAL CONTACT SECTION 
========================= */
.additional-contact-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #f5f5f5 100%);
    padding: 60px 5%;
    border-top: 1px solid #e0e0e0;
}

.contact-section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-option {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.contact-option h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-option p {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.whatsapp-btn-large:hover {
    background: #1fbb58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.trust-section h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: #7ec844;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.trust-item strong {
    color: #333;
    font-size: 1rem;
    display: block;
    margin-bottom: 4px;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .contact-section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .additional-contact-section {
        padding: 40px 5%;
    }
    
    .contact-option {
        padding: 30px;
    }
    
    .contact-option h3 {
        font-size: 1.3rem;
    }
    
    .trust-section h3 {
        font-size: 1.3rem;
    }
    
    .trust-item {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .additional-contact-section {
        padding: 30px 5%;
    }
    
    .contact-option {
        padding: 20px;
    }
    
    .contact-option h3,
    .trust-section h3 {
        font-size: 1.2rem;
    }
    
    .trust-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .whatsapp-btn-large {
        width: 100%;
        justify-content: center;
    }
}
/* =====================================
   FIX SIDE ENQUIRY FORM VISIBILITY
   ===================================== */

/* Ensure parent allows sticky to work */
.detail-right-column {
    align-self: flex-start;
    overflow: visible !important;
}

/* Make the form sticky but stop footer overlap */
.side-form-card {
    position: sticky;
    top: 100px;              /* stays visible under navbar */
    max-height: none;        /* ❌ remove internal scroll */
    overflow: visible;       /* ❌ remove internal scroll */
}

/* Ensure no child forces scrolling */
.side-quick-form,
.side-quick-form textarea,
.side-quick-form input,
.side-quick-form select {
    overflow: visible;
}

/* Prevent footer from covering sticky form */
.footer-main {
    position: relative;
    z-index: 1;
}
/* =====================================
   FORCE SIDE ENQUIRY FORM VISIBILITY
   ===================================== */

/* CRITICAL: allow sticky to work */
.detail-main-wrapper,
.detail-right-column,
.property-details-container {
    overflow: visible !important;
}

/* Sticky form */
.side-form-card {
    position: sticky !important;
    top: 110px;                /* below navbar */
    max-height: none !important;
    overflow: visible !important;
}

/* Remove internal scrolling completely */
.side-quick-form,
.side-quick-form textarea,
.side-quick-form input,
.side-quick-form select {
    overflow: visible !important;
}

/* Ensure footer does not overlay */
.footer-main {
    position: relative;
    z-index: 1;
}

/* =========================
   SITE VISIT BOOKING MODAL
========================= */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.booking-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.booking-modal-header h2 {
    font-size: 1.5rem;
    color: #0a3c28;
    margin: 0;
}

.booking-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.booking-close-btn:hover {
    color: #0a3c28;
}

.booking-form-group {
    margin-bottom: 18px;
}

.booking-form-group label {
    display: block;
    margin-bottom: 6px;
    color: #0a3c28;
    font-weight: 600;
    font-size: 0.9rem;
}

.booking-form-group input,
.booking-form-group textarea,
.booking-form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.booking-form-group input:focus,
.booking-form-group textarea:focus,
.booking-form-group select:focus {
    outline: none;
    border-color: #0a3c28;
    box-shadow: 0 0 0 3px rgba(10, 60, 40, 0.1);
}

.booking-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-group input::placeholder,
.booking-form-group textarea::placeholder {
    color: #aaa;
}

.booking-form-footer {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.booking-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.booking-btn-submit {
    background: #0a3c28;
    color: white;
}

.booking-btn-submit:hover {
    background: #d4af37;
    color: #0a3c28;
}

.booking-btn-cancel {
    background: #f4f4f4;
    color: #0a3c28;
    border: 2px solid #e0e0e0;
}

.booking-btn-cancel:hover {
    background: #e8e8e8;
}

/* =========================
   FOOTER V2
========================= */
.footer-v2 {
    margin-top: 72px;
    background: radial-gradient(circle at top right, #0f4b34 0%, #0a3c28 58%, #082d1f 100%);
    color: #e7f1ec;
    border-top: 1px solid rgba(214, 233, 224, 0.2);
}

.footer-v2-inner {
    width: min(1300px, 94%);
    margin: 0 auto;
    padding: 48px 0 18px;
}

.footer-v2-top {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr 1.2fr;
    gap: 16px;
}

.footer-v2-brand,
.footer-v2-links,
.footer-v2-contact,
.footer-v2-newsletter {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(219, 235, 227, 0.14);
    border-radius: 14px;
    padding: 16px;
}

.footer-v2-brand p {
    color: rgba(231, 244, 237, 0.86);
    line-height: 1.75;
    font-size: 0.88rem;
}

.footer-v2-badges {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-v2-badges span {
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #eaf6f0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(227, 241, 234, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-v2 h4 {
    font-family: "Sora", "Manrope", sans-serif;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-v2-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-v2-links a {
    color: rgba(235, 247, 241, 0.88);
    text-decoration: none;
    font-size: 0.86rem;
}

.footer-v2-links a:hover {
    color: #d4af37;
}

.footer-v2-contact a,
.footer-v2-contact p {
    margin: 0 0 8px;
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: rgba(235, 247, 241, 0.88);
    font-size: 0.86rem;
    line-height: 1.65;
}

.footer-v2-contact i {
    color: #d4af37;
    margin-top: 2px;
}

.footer-v2-newsletter p {
    color: rgba(235, 247, 241, 0.85);
    line-height: 1.68;
    font-size: 0.84rem;
    margin-bottom: 10px;
}

#footerNewsletterForm {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

#footerNewsletterForm input {
    border-radius: 10px;
    border: 1px solid rgba(225, 241, 233, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 9px 10px;
}

#footerNewsletterForm input::placeholder {
    color: rgba(234, 246, 239, 0.66);
}

#footerNewsletterForm button {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #e4c772, #d4af37);
    color: #0a3c28;
    font-weight: 800;
    padding: 9px 12px;
    cursor: pointer;
}

.footer-newsletter-msg {
    min-height: 17px;
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-v2-trust {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.footer-v2-trust div {
    border: 1px solid rgba(220, 238, 230, 0.16);
    border-radius: 10px;
    padding: 9px 10px;
    font-size: 0.78rem;
    color: rgba(234, 246, 239, 0.89);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-v2-trust i {
    color: #d4af37;
}

.footer-v2-bottom {
    margin-top: 14px;
    border-top: 1px solid rgba(219, 235, 227, 0.14);
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.footer-v2-bottom p {
    color: rgba(224, 240, 231, 0.78);
    font-size: 0.8rem;
}

.footer-v2-bottom .footer-legal {
    display: flex;
    gap: 12px;
}

.footer-v2-bottom .footer-legal a {
    color: rgba(235, 247, 241, 0.88);
    text-decoration: none;
    font-size: 0.8rem;
}

.footer-v2-bottom .footer-legal a:hover {
    color: #d4af37;
}

@media (max-width: 1200px) {
    .footer-v2-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-v2-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .footer-v2-inner {
        width: 94%;
        padding-top: 28px;
    }

    .footer-v2-top,
    .footer-v2-trust {
        grid-template-columns: 1fr;
    }

    #footerNewsletterForm {
        grid-template-columns: 1fr;
    }

    .footer-v2-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
