/* assets/css/styles.css */

/* 1. Google Fonts Integration */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* 2. Custom Variables - Design Tokens */
:root {
    --primary: #2E7822;
    --primary-hover: #225a19;
    --primary-light: #E8EEE5;
    --primary-accent: #EDF5ED;
    --dark: #222222;
    --dark-navy: #0B2240; /* Trustworthy deep navy accents */
    --text-primary: #333333;
    --text-secondary: #666666;
    --light-grey: #F7F9F5;
    --white: #FFFFFF;
    --border-color: #E2E8F0;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(46, 120, 34, 0.06);
    --shadow-lg: 0 16px 40px rgba(11, 34, 64, 0.08);
    
    --container-max: 1200px;
    --header-height: 80px;
}

/* 3. Global CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background-color: #F8F9FB;
    background-image: url('../images/website-bg.png');
    background-repeat: repeat;
    background-size: 600px;
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}


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

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

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark-navy);
    font-weight: 700;
    line-height: 1.25;
}

/* 4. Layout Layouts & Containers */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

/* Eyebrows */
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

/* Heading styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* Button Classes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 120, 34, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* 5. Navigation Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.sticky {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.header.sticky h1, .header.sticky a {
    color: var(--dark-navy);
}

.header.sticky .nav-link {
    color: var(--text-primary);
}

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

/* SVG Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--white);
}

.logo-text .accent {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

.header.sticky .logo-text {
    color: var(--dark-navy);
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item.active .nav-link {
    color: var(--primary) !important;
}

.nav-item.active .nav-link::after {
    width: 100%;
}

/* Submenu Dropdowns */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 4px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    list-style: none;
    z-index: 1100;
}

.dropdown-item a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 500;
}

.dropdown-item a:hover {
    background-color: var(--primary-accent);
    color: var(--primary);
    padding-left: 28px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    z-index: 2000;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-fast);
}

.header.sticky .nav-toggle span {
    background-color: var(--dark-navy);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* 6. Hero Section Styles */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--dark-navy);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 34, 64, 0.85) 30%, rgba(11, 34, 64, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 650px;
    color: var(--white);
    margin-top: 60px;
}

.hero h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* 7. Stats & Trust Panel */
.stats-panel {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 20px;
}

.stat-card {
    text-align: center;
    padding: 10px 24px;
    border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    color: var(--primary);
}

.stat-card h3 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 8. About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transform: translate(15px, 15px);
    z-index: -1;
    pointer-events: none;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* 9. Property Categories (Residential & Commercial) */
.bg-light {
    background-color: rgba(241, 245, 249, 0.85);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.category-card:hover .card-link svg {
    transform: translateX(4px);
}

/* 10. Featured Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.property-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-type {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.property-info h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.property-location {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-location svg {
    width: 14px;
    height: 14px;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    font-family: var(--font-sans);
}

.property-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.property-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.property-footer .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
}

/* 11. Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-card {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46, 120, 34, 0.2);
}

.why-card:hover::before {
    height: 100%;
}

.why-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-light);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 12. How We Help You Timeline */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.how-step {
    text-align: center;
    position: relative;
}

.how-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: repeating-linear-gradient(to right, var(--border-color) 0, var(--border-color) 6px, transparent 6px, transparent 12px);
    z-index: 1;
}

.how-step:last-child::after {
    display: none;
}

.how-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--primary-accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-weight: 700;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.how-step h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.how-step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0 10px;
}

/* 13. Consultation Banner */
.cta-banner {
    position: relative;
    background-color: var(--dark-navy);
    color: var(--white);
    overflow: hidden;
    text-align: center;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('demo_villa.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-btn-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 14. Testimonials Styles */
.testimonial-card {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 40px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-light);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.client-info h5 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.client-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 15. Contact / Lead Form Block */
.contact-split {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-meta-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-meta-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-meta-icon svg {
    width: 20px;
    height: 20px;
}

.contact-meta-text h5 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-meta-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Map frame placeholder */
.map-frame-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--primary-accent);
    border-radius: 6px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

/* Form Styles */
.form-panel {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-navy);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--light-grey);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(46, 120, 34, 0.1);
}

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

.form-alert {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.form-alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* 16. Footer */
.footer {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 2fr 2fr 4fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.footer-col.about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary);
}

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

.footer-links a {
    font-size: 0.9rem;
}

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

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

/* 17. Sticky Contact Bar on Mobile */
.sticky-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    grid-template-columns: repeat(3, 1fr);
    z-index: 999;
}

.sticky-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 4px;
}

.sticky-action-btn svg {
    width: 20px;
    height: 20px;
}

.sticky-action-btn.call-btn {
    background-color: var(--primary);
    color: var(--white);
}

.sticky-action-btn.wa-btn {
    background-color: #25D366;
    color: var(--white);
}

.sticky-action-btn.enquire-btn {
    background-color: var(--dark-navy);
    color: var(--white);
}

/* 18. Animations (Scroll Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 19. Property Subpages Specifics */
.inner-hero {
    height: 350px;
    background-color: var(--dark-navy);
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
}

.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(11, 34, 64, 0.8);
}

.inner-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.inner-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.breadcrumbs {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

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

.property-details-split {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 50px;
}

.property-gallery-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    aspect-ratio: 16/9;
}

.property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.property-thumb {
    aspect-ratio: 4/3;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.property-thumb.active, .property-thumb:hover {
    border-color: var(--primary);
    opacity: 1;
}

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

.property-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
}

.property-meta-title h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.property-meta-price {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    text-align: right;
}

.property-meta-price span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.property-details-block {
    margin-bottom: 40px;
}

.property-details-block h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.property-details-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.property-desc-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
}

.features-list li {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.sidebar-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.sidebar-card h4 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

/* 20. Admin Panel Specifics */
.admin-body {
    background-color: #F1F5F9;
}

.admin-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admin-login-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border-color);
}

.admin-login-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background-color: var(--dark-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 30px 0;
}

.admin-sidebar-header {
    padding: 0 24px 30px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.admin-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.admin-nav-link:hover, .admin-nav-item.active .admin-nav-link {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-left: 4px solid var(--primary);
}

.admin-main {
    padding: 40px;
    overflow-y: auto;
}

.admin-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.admin-main-header h2 {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    color: var(--dark-navy);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-box {
    background-color: var(--white);
    padding: 24px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.admin-stat-box span {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.admin-stat-box h3 {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-navy);
}

/* Tables in Admin */
.admin-card {
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th, .admin-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    background-color: #F8FAFC;
    color: var(--dark-navy);
    font-weight: 700;
    font-family: var(--font-sans);
}

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

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-badge-published { background-color: #DEF7EC; color: #03543F; }
.status-badge-draft { background-color: #F3F4F6; color: #374151; }
.status-badge-new { background-color: #E1EFFE; color: #1E429F; }
.status-badge-contacted { background-color: #FEF08A; color: #713F12; }
.status-badge-closed { background-color: #DEF7EC; color: #03543F; }

.action-links {
    display: flex;
    gap: 12px;
}

.action-link {
    font-weight: 600;
    font-size: 0.85rem;
}

.action-link-edit { color: #1A56DB; }
.action-link-delete { color: #C81E1E; }

/* 21. Responsive Media Queries */

@media (max-width: 1199px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .how-step::after {
        display: none;
    }
    .contact-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .property-details-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sidebar-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    /* Header & Mobile Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .navbar-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 0;
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-menu.open {
        transform: translateX(0);
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        color: var(--dark-navy) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        font-size: 1.05rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0 0 16px 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    .dropdown-menu.open {
        display: block;
    }
    
    .dropdown-item a {
        padding: 10px 0;
    }
    
    .header.sticky .navbar-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    /* Hero */
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 10px;
    }
    
    .stat-card {
        border-right: none;
        padding: 15px 10px;
    }
    
    .stat-card:nth-child(even) {
        border-left: 1px solid var(--border-color);
    }
    
    .stat-card:nth-child(3), .stat-card:nth-child(4) {
        border-top: 1px solid var(--border-color);
    }
    
    /* General sections */
    .section-title {
        font-size: 2rem;
    }
    
    .properties-grid, .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-col-full {
        grid-column: span 1;
    }
    
    .form-panel {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Mobile Sticky Bar Space */
    body {
        padding-bottom: 60px;
    }
    
    .sticky-contact-bar {
        display: grid;
    }
    
    .property-meta-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .property-meta-price {
        text-align: left;
    }
    
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        display: none;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        border-left: none !important;
        border-right: none !important;
        border-top: none !important;
        border-bottom: 1px solid var(--border-color);
    }
    
    .stat-card:last-child {
        border-bottom: none;
    }
    
    .how-grid {
        grid-template-columns: 1fr;
    }
}
