@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #4A3425;
    --primary-dark: #362517;
    --accent: #B87333;
    --accent-dark: #8B5A2B;
    --bg-light: #FAF8F5;
    --bg-cream: #F5F1EB;
    --brown-light: #C9A881;
    --brown-medium: #8B6F47;
    --gradient-primary: linear-gradient(135deg, #4A3425, #362517);
    --gradient-accent: linear-gradient(135deg, #B87333, #8B5A2B);
    --gradient-brown: linear-gradient(135deg, #C9A881, #B87333);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary); /* 👈 CHANGE THIS */
    background: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary);
}

/* ==================== COMPACT HEADER ==================== */
.header-wrapper {
    position: fixed;
    top: 15px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.header-inner {
    width: 90%;
    max-width: 1150px;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(74, 52, 37, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 115, 51, 0.15);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-wrap img {
  height: 48px;        /* adjust as needed */
  width: auto;
  display: block;
}

.brand-name {
  font-size: 22px;
  font-weight: 600;
  color: #4A3425;         /* black text */
  white-space: nowrap;
}

/* remove link styling */
.logo-wrap,
.logo-wrap:hover,
.logo-wrap:visited,
.logo-wrap:active {
  text-decoration: none;
  color: inherit;
}


.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
    border-radius: 2px;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--accent);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-cta .cta-btn {
    padding: 8px 18px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(184,115,51,0.3);
    transition: all 0.3s ease;
}

.header-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,115,51,0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

@media (max-width: 900px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* ==================== HERO / SLIDESHOW ==================== */
body {
    padding-top: 0;
    margin: 0;
}

/* Container wrapper for all sections */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 0;
}

.slideshow-container {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Optimize image loading */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slide-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184,115,51,0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184,115,51,0.5);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.45);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.prev { left: 25px; }
.next { right: 25px; }

.prev:hover,
.next:hover {
    background: var(--accent);
}

.dots-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.6rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
}

/* ==================== AMENITIES - REFINED ==================== */
.amenities-section {
    background: linear-gradient(135deg, #f8f5f0 0%, #fdfbf7 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(184,115,51,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.amenities-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    color: var(--primary); /* main title */
}

.section-subtitle {
    color: var(--accent); /* small subtitle */
}

.section-description {
    color: #666; /* paragraph text */
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
    align-items: center;
}

.amenity-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184,115,51,0.1);
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--accent);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(184,115,51,0.1), rgba(184,115,51,0.05));
    border-radius: 16px;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.amenity-icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.4s ease;
}

.amenity-card:hover .amenity-icon svg {
    stroke: white;
}

.amenity-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.amenity-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .amenities-section {
        padding: 70px 20px;
    }
}

/* ==================== PROPERTY GALLERY - REFINED ==================== */
.trending,
.plotted-development,
.residential-projects {
    padding: 100px 40px;
    position: relative;
}

@media (max-width: 768px) {
    .trending,
    .plotted-development,
    .residential-projects {
        padding: 70px 20px;
    }
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 3rem;
}

.property-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Optimize loading */
    loading: lazy;
}

.property-card:hover .property-image img {
    transform: scale(1.12);
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
    z-index: 2;
    letter-spacing: 0.5px;
}

.property-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 120px;
}

.property-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.property-details {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
}

.visit-btn {
    width: 100%;
    padding: 14px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 52, 0.3);
}

/* ==================== SEARCH SECTION - MODERN ==================== */
.search-section h1,
.search-section h2,
.search-section h3,
.search-section p {
    color: #ffffff !important;
}

.search-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a4d 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .search-section {
        padding: 70px 20px;
    }
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,115,51,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-box {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.city-select {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid rgba(26,60,52,0.1);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: #fafafa;
}

.city-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(184,115,51,0.1);
    background: white;
}

.search-btn {
    padding: 16px 40px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184,115,51,0.5);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.city-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(74, 52, 37, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(184, 115, 51, 0.1);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(74, 52, 37, 0.25);
}

.city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Optimize loading */
    loading: lazy;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-content {
    padding: 1.8rem;
    text-align: center;
    background: white;
}

.city-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.6rem;
    font-family: 'Cormorant Garamond', serif;
}

.property-count {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.property-type {
    font-size: 0.9rem;
    color: var(--brown-medium);
    line-height: 1.5;
}

/* ==================== CONTACT SECTION - REFINED ==================== */
.contact-section {
    padding: 100px 40px;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 70px 20px;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(184,115,51,0.1), rgba(184,115,51,0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(184,115,51,0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,60,52,0.3);
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==================== POLICY PAGES - REFINED ==================== */
.page-header h1,
.page-header p,
.page-header h2 {
    color: #ffffff !important;
}

.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 140px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,115,51,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.policy-content {
    padding: 80px 40px;
    background: #f8f9fa;
}

.policy-wrapper {
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.policy-section h3 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.policy-section p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section ul li {
    color: #666;
    line-height: 1.9;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 10px;
}

.policy-section ul li::before {
    content: '▸';
    position: absolute;
    left: -15px;
    color: var(--accent);
    font-weight: bold;
}

.policy-section ul li strong {
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .policy-wrapper {
        padding: 2rem;
    }
    .page-header {
        padding: 120px 20px 60px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .policy-content {
        padding: 60px 20px;
    }
}

/* ==================== COMPANY/RCS SECTION - REFINED ==================== */
.company-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8f5f0 0%, #fdfbf7 100%);
}

.company-section .section-header {
    margin-bottom: 60px;
}

.company-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.company-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.company-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(184,115,51,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.company-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-left-color: var(--primary);
}

.company-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
}

.company-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .company-section {
        padding: 70px 20px;
    }
    .company-box-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== FOOTER - ENHANCED BROWN THEME ==================== */
.footer {
    background: var(--gradient-primary);
    color: var(--bg-cream);
    padding: 80px 40px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,115,51,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
}

.footer-section p {
    color: rgba(245,241,235,0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section.about p {
    max-width: 350px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(245,241,235,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info in Footer */
.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-footer p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.5rem;
}

.contact-info-footer i {
    color: var(--accent);
    width: 20px;
    font-size: 1.1rem;
    margin-top: 2px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(184,115,51,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    border-color: var(--brown-light);
    box-shadow: 0 8px 20px rgba(184,115,51,0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(245,241,235,0.2);
    padding-top: 2rem;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(245,241,235,0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(245,241,235,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    width: 100%;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ==================== IMAGE OPTIMIZATION ==================== */
img {
    max-width: 100%;
    height: auto;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    color: #666;
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 25px;
    top: 20px;
    transition: all 0.3s ease;
}

.close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content h3 {
    color: var(--accent);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.modal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==================== SMOOTH SCROLLING ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== PRINT STYLES (for policy pages) ==================== */
@media print {
    .header-wrapper,
    .footer,
    .whatsapp-float {
        display: none;
    }
    
    .policy-wrapper {
        box-shadow: none;
        padding: 0;
    }
}

/* ==================== CONTRAST FIXES ==================== */

/* Force readable text on light backgrounds */
.amenities-section,
.trending,
.plotted-development,
.residential-projects,
.contact-section,
.policy-content,
.company-section {
    color: #2C2C2C;
}

/* Paragraphs */
p {
    color: #444;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #2C2C2C;
}

/* Cards text */
.property-card,
.city-card,
.amenity-card,
.company-box {
    color: #2C2C2C;
}

/* Fix muted text */
.section-description,
.property-detail,
.property-type {
    color: #555;
}
