@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
    /* NEW COLOR PALETTE - Elegant Emerald & Gold */
    --primary: #0d3b2e;          /* Deep Forest Green */
    --primary-light: #1a5c47;     /* Medium Green */
    --accent: #d4af37;            /* Royal Gold */
    --accent-light: #f4d03f;      /* Light Gold */
    --secondary: #2d6a4f;         /* Sage Green */
    
    /* BACKGROUNDS */
    --bg-dark: #0a2820;
    --bg-light: #fafaf8;
    --bg-cream: #f5f3ef;
    
    /* TEXT COLORS */
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    
    /* GRADIENTS */
    --gradient-primary: linear-gradient(135deg, #0d3b2e 0%, #1a5c47 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(13, 59, 46, 0.95) 0%, rgba(26, 92, 71, 0.85) 100%);
    
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ==================== GLOBAL RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== MODERN HEADER - FLOATING GLASS ==================== */
.header-wrapper {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-inner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: var(--primary);
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.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: #1a5c47;         /* 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: 2rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.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: 12px 28px;
    background: var(--gradient-accent);
    color: var(--primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.header-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .header-nav,
    .header-cta {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

/* ==================== HERO - ELEGANT DESIGN ==================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active {
    opacity: 1;
}

/*.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}*/

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    color: white;
}

.slide-content h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    max-width: 800px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--gradient-accent);
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    font-size: 1.05rem;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prev { left: 30px; }
.next { right: 30px; }

.prev:hover,
.next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.dots-container {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
    border-color: white;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 30px;
    }
    .slide-content h1 {
        font-size: 3rem;
    }
    .slide-content p {
        font-size: 1.1rem;
    }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ==================== AMENITIES - ICON GRID ==================== */
.amenities-section {
    padding: 120px 60px;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.amenity-item:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.amenity-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0.8);
}

.amenity-item:hover img {
    filter: brightness(1);
    transform: scale(1.15);
}

.amenity-item p {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    text-align: center;
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 80px 30px;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ==================== PROPERTY GALLERY - REFINED ELEGANT CARDS ==================== */
.trending,
.plotted-development,
.residential-projects {
    padding: 100px 60px;
    background: var(--bg-light);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.property-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.property-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    z-index: 2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.property-content {
    padding: 28px;
}

.property-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.property-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.property-detail i {
    color: var(--accent);
}

.visit-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 59, 46, 0.25);
}

@media (max-width: 768px) {
    .trending,
    .plotted-development,
    .residential-projects {
        padding: 80px 30px;
    }
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SEARCH SECTION - LIGHT ELEGANT THEME ==================== */
.search-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.search-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 59, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.search-section h2,
.search-section p {
    color: var(--primary) !important;
}

.search-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.search-box {
    display: flex;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.city-select {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: #fafafa;
}

.city-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: white;
}

.search-btn {
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 59, 46, 0.3);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.city-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.city-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.08);
}

.city-content {
    padding: 25px;
    text-align: center;
}

.city-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.property-count {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.property-type {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .search-section {
        padding: 80px 30px;
    }
    .search-box {
        flex-direction: column;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 120px 60px;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--bg-cream);
    border-radius: 16px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-form {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    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: 1.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 59, 46, 0.3);
}

@media (max-width: 968px) {
    .contact-section {
        padding: 80px 30px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== POLICY PAGES ==================== */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 160px 60px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white !important;
    position: relative;
    z-index: 1;
}

.page-header h2,
.page-header p {
    color: white !important;
}

.policy-content {
    padding: 100px 60px;
    background: var(--bg-light);
}

.policy-wrapper {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow);
    max-width: 1100px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--accent);
    display: inline-block;
}

.policy-section h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 30px 0 15px;
}

.policy-section p {
    color: #555;
    line-height: 2;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section ul li {
    color: #666;
    line-height: 2;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.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) {
    .page-header {
        padding: 140px 30px 80px;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
    .policy-content {
        padding: 70px 30px;
    }
    .policy-wrapper {
        padding: 40px 30px;
    }
}

/* ==================== COMPANY SECTION ==================== */
.company-section {
    padding: 120px 60px;
    background: var(--bg-cream);
}

.company-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.company-box {
    background: white;
}


/* ==================== COMPANY SECTION ==================== */


.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;
    }
}


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);
}