:root {
  /* Primary Colors - Deep Burgundy/Wine (Complements Gold) */
  --color-primary: #6b2c3e; /* Rich Burgundy */
  --color-primary-dark: #4a1f2b;
  --color-primary-light: #8b3d52;
  
  /* Accent Colors - Warm Terra Cotta */
  --color-accent: #c97c5d; /* Warm Terra Cotta/Rust */
  --color-accent-dark: #b5634a;
  --color-accent-light: #dc9579;
  
  /* Secondary Colors - Deep Plum */
  --color-secondary: #4a2c3a; /* Deep Plum */
  --color-secondary-light: #5f3a4d;
  
  /* Gold Accent (from logo) */
  --color-gold: #c9a24d; /* Matches logo gold */
  --color-gold-light: #ddb968;
  --color-gold-dark: #b08d3a;
  
  /* Neutral Colors */
  --color-dark: #2c1e24; /* Deep warm charcoal */
  --color-gray: #8a7970; /* Warm gray */
  --color-light-gray: #e8e1dc;
  --color-white: #ffffff;
  
  /* Cream/Beige tones */
  --color-cream: #f5f0ea; /* Soft cream */
  --color-cream-light: #faf8f5;
  --color-cream-dark: #e8dfd5;
  
  /* Text Colors */
  --color-text-primary: #2c1e24;
  --color-text-secondary: #5c4a4f;
  --color-text-light: #8a7970;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f9f6f3; /* Warm off-white */
  --bg-cream: #f5f0ea; /* Soft cream */
  --bg-light: #faf8f5;
  --bg-dark: #6b2c3e;
  
  /* Border */
  --border-color: #e8e1dc;
  --border-radius: 8px;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  
  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-heading: 'Montserrat', 'Inter', sans-serif;
  
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(107, 44, 62, 0.08);
  --shadow-md: 0 4px 6px rgba(107, 44, 62, 0.12);
  --shadow-lg: 0 10px 15px rgba(107, 44, 62, 0.15);
  --shadow-xl: 0 20px 25px rgba(107, 44, 62, 0.18);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Legacy Variable Names (for compatibility) */
  --primary: #6b2c3e;
  --primary-light: #8b3d52;
  --accent: #c97c5d;
  --text-dark: #2c1e24;
  --text-muted: #5c4a4f;
  --text-light: #8a7970;
  --shadow: 0 5px 25px rgba(107, 44, 62, 0.12);
  --shadow-hover: 0 15px 45px rgba(107, 44, 62, 0.2);
  --gradient-primary: linear-gradient(135deg, #6b2c3e 0%, #4a1f2b 100%);
  --gradient-accent: linear-gradient(135deg, #c97c5d 0%, #b5634a 100%);
  --gradient-gold: linear-gradient(135deg, #c9a24d 0%, #b08d3a 100%);
}

/* Dark Mode (Optional) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a0f13;
    --bg-secondary: #2c1e24;
    --bg-light: #3a2a2f;
    --color-text-primary: #f5f0ea;
    --color-text-secondary: #c9bfb5;
  }
}
/* ==================== 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;
}

/* Lazy loading placeholder */
img[loading="lazy"] {
    background: linear-gradient(135deg, #dceaf2 0%, #c8dfe9 100%);
}


/* ==================== MODERN HEADER - WHITE 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.98);
    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(107, 68, 35, 0.12);
    border: 1px solid rgba(166, 124, 82, 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(122, 184, 212, 0.35);
}

.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 .logo-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.3px;
}

.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(--primary);
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(90, 112, 120, 0.35);
    transition: all 0.3s ease;
}

.header-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(90, 112, 120, 0.45);
    background: var(--primary-dark);
}

.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 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(42, 79, 110, 0.6);
    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(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(90, 112, 120, 0.4);
    font-size: 1.05rem;
}

.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(90, 112, 120, 0.5);
    background: var(--primary-dark);
}

.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(42, 79, 110, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(122, 184, 212, 0.2);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(42, 79, 110, 0.15);
    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(42, 79, 110, 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(--primary);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(90, 112, 120, 0.4);
    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 #dce9f0;
}

.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(42, 79, 110, 0.3);
}

@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(122, 184, 212, 0.1) 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(42, 79, 110, 0.06) 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(42, 79, 110, 0.1);
    border: 1px solid rgba(122, 184, 212, 0.25);
}

.city-select {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #c8dfe9;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    background: #f4f9fc;
}

.city-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(122, 184, 212, 0.15);
    background: white;
}

.search-btn {
    padding: 16px 40px;
    background: var(--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(90, 112, 120, 0.3);
    background: var(--primary-dark);
}

.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(42, 79, 110, 0.08);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(122, 184, 212, 0.2);
}

.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(42, 79, 110, 0.15);
    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(42, 79, 110, 0.06);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(42, 79, 110, 0.1);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(90, 112, 120, 0.35);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.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(42, 79, 110, 0.08);
}

.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 #c8dfe9;
    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(122, 184, 212, 0.15);
}

.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;
    accent-color: var(--accent);
}

.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(--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(90, 112, 120, 0.3);
    background: var(--primary-dark);
}

@media (max-width: 968px) {
    .contact-section {
        padding: 80px 30px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==================== POLICY PAGES ==================== */
.page-header {
    background: var(--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(122, 184, 212, 0.18) 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: #4a6577;
    line-height: 2;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.policy-section ul li {
    color: #4a6577;
    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;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(42, 79, 110, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(122, 184, 212, 0.2);
}

.company-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(42, 79, 110, 0.15);
    border-color: var(--accent);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 60px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 158, 165, 0.15) 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: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    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(255, 255, 255, 0.8);
    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: #ffffff;
    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: #ffffff;
    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(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-links a:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    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(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    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: #ffffff;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.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 30px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* ==================== 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);
}