:root {
    --primary-color: #ff7d01;
    --primary-dark: #e06b00; /* Slightly darker orange for hover */
    --secondary-color: #951397;
    --secondary-hover: #7a0f7c;
    --accent-color: #78b915; /* The 'last color' requested */
    --text-color: #333333;
    --light-text: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --color-brand-faded: rgba(149, 19, 151, 0.08); /* Brighter Soft Purple */
    --color-primary-faded: rgba(255, 125, 1, 0.08); /* Brighter Soft Orange */
    --color-accent-faded: rgba(120, 185, 21, 0.08); /* Brighter Soft Green */
    
    --brand-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --surface-glass: rgba(255, 255, 255, 0.7);
    --blur-normal: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    color: #121212;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1.5rem;
    color: #333333;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--accent-color);
    color: white;
}

.btn-whatsapp:hover {
    background-color: var(--primary-color);
}

/* New WhatsApp Outline Style - Green like the brand/mask */
.btn-whatsapp-outline {
    background-color: transparent;
    border: 2px solid var(--accent-color); /* Using brand green */
    color: var(--accent-color);
    font-weight: 600;
}

.btn-whatsapp-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.full-width {
    width: 100%;
    display: block;
}


/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #1a1a1a !important; /* Forced Black */
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link.btn {
    padding: 10px 25px;
    color: var(--white) !important; /* Force white text for Contact Us button */
}

.nav-link.btn:hover {
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1a1a1a !important; /* Black toggle */
    cursor: pointer;
    z-index: 1001; /* Above menu overlay */
    margin-left: auto; /* Force to right side on mobile if needed */
}

/* Hero Search */
.hero-search-wrapper {
    margin-top: 50px;
    width: 100%;
    max-width: 900px;
}

.hero-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input-group:last-of-type {
    border-right: none;
}

.search-input-group i {
    color: var(--white);
    margin-right: 12px;
    opacity: 0.8;
}

.search-input-group select, 
.search-input-group input {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
}

.search-input-group select option {
    background: #1a1a1a;
    color: white;
}

.hero-search .btn-search {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-search .btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(224, 107, 0, 0.4);
}

/* Trust Section */
/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    padding-top: 100px;
    z-index: 1; /* Create stacking context */
    overflow: hidden; /* Ensure nothing spills out */
}

.hero-content {
    text-align: left;
    max-width: 900px;
    z-index: 10;
    padding-left: 5%;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    letter-spacing: 0.02em;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: kenBurns 10s infinite alternate;
}

/* Ensure image behaves well with zoom */
.slide {
    background-size: cover;
    background-position: center;
    /* transform-origin: center center; */ /* Default is usually fine */
}
/* DESKTOP: show only the active (first) slide */
@media (min-width: 769px) {
    .slide {
        display: none;
    }

    .slide.active {
        display: block;
    }
}

/* MOBILE: show all slides */
@media (max-width: 768px) {
    .slide {
        display: block;
    }
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced opacity to make slider image more visible */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content {
    z-index: 3;
    max-width: 900px;
}

.hero-title {
    /* Using clamp() from previous rule ensures responsive scaling */
    /* font-size: 3.5rem; OVERRIDDEN to allow clamp to work */
    font-weight: 800;
    color: var(--white) !important;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    word-spacing: 0.2rem;
    /* Strong text shadow for readability over brighter background */
    text-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 5.5rem; /* Increased from 4.5rem to 5.5rem */
        line-height: 1.1;
    }
    .hero-subtitle {
        font-size: 1.5rem; /* Increased from 1.25rem */
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Forced visibility for Hero Buttons */
.hero-buttons .btn {
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-secondary {
    background-color: rgba(0, 0, 0, 0.3); /* Slight background for readability */
    border: 2px solid var(--white);
    color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Section General */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Patterns */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    pointer-events: none;
    background-image: radial-gradient(#d1d5db 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    z-index: 0;
}

.section > .container {
    position: relative;
    z-index: 1;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--brand-gradient);
    filter: blur(100px);
    opacity: 0.08;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; }

.bg-brand-purple { background-color: var(--color-brand-faded); }
.bg-brand-orange { background-color: var(--color-primary-faded); }
.bg-brand-green  { background-color: var(--color-accent-faded); }

.section-header {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #121212;
    display: block;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    text-align: center;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: #000000;
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.about-grid-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch; /* Stretch to fill height */
    margin-top: 60px;
}

.about-image-overlap {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 0;
}

.image-large {
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent-box {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 250px;
    height: 250px;
    background: var(--brand-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-text-editorial {
    padding-left: 40px; /* Space between image on left and text on right */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 15px;
}

.editorial-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #121212;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* About Section */
.about-section {
    background-color: #fcfcfc;
    position: relative;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Mission & Vision Luxury Cards */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.mv-card {
    background: var(--white);
    padding: 60px 45px;
    border-radius: 35px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

.mv-card:last-child::after {
    background: var(--secondary-color);
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(255, 125, 1, 0.15);
    border: 1px solid #fff5ed;
}

.mv-card:last-child .mv-icon {
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(149, 19, 151, 0.15);
    border-color: #fdf5fd;
}

.mv-card h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 800;
}

.mv-card:last-child h3 {
    color: var(--secondary-color);
}

.mv-card p {
    color: var(--light-text);
    font-size: 1.15rem;
    line-height: 1.9;
    margin: 0;
}

/* Services Refresh */
.service-icon {
    width: 85px;
    height: 85px;
    background-color: #fdf2e9;
    color: var(--primary-color);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(255, 125, 1, 0.08);
}

.service-item:hover .service-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.property-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    width: fit-content;
    white-space: nowrap;
}

.property-details {
    padding: 30px;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    color: #121212;
}

.property-location {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.property-info-stack {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    flex-direction: column;
}

.info-row .label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #bbb;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-row .value {
    font-weight: 800;
    font-size: 1.1rem;
    color: #121212;
}

.property-highlight {
    background: #fff8f0;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.property-actions {
    display: flex;
    gap: 15px;
}

.btn-primary-sm, .btn-secondary-sm, .btn-sold-sm {
    flex: 1;
    padding: 12px 10px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-align: center;
    transition: var(--transition);
}

.btn-sold-sm {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    border: 1px solid #d1d5db;
    pointer-events: none;
    flex: 1;
    width: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 190px;
}

.property-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.property-image-overlay img {
    width: 80px; /* Reduced watermark size */
    height: auto;
    opacity: 0.8;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white); /* White text for marketing tags */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.3;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;
}

.property-location {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.property-info-stack {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
}

.info-row {
    margin-bottom: 0;
}

.info-row:last-child {
    text-align: right;
}

.info-row .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-row .value {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
}

.info-row .value.price {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.property-highlight {
    background-color: rgba(120, 185, 21, 0.08);
    color: var(--accent-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-highlight i {
    font-size: 0.9rem;
}

.property-location i {
    color: var(--secondary-color);
}

.property-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-primary-sm {
    flex: 1;
    padding: 12px 15px;
    font-size: 0.85rem;
    background-color: var(--secondary-color); /* Purple for Details */
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-sm {
    flex: 1;
    padding: 12px 15px;
    font-size: 0.85rem;
    background-color: var(--accent-color); /* Green for WhatsApp/Visit */
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-sm:hover {
    background-color: var(--secondary-hover);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(149, 19, 151, 0.3);
}

.btn-secondary-sm:hover {
    opacity: 0.9;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(120, 185, 21, 0.3);
}

/* Services Section */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    height: 100%;
}

.service-item:hover {
    border-color: var(--primary-color);
    background-color: #fff;
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(122, 15, 124, 0.1);
}

.services-editorial {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-top: 40px;
}

.service-editorial-item {
    display: flex;
    gap: 30px;
    padding: 20px;
    align-items: flex-start;
    border-left: 1px solid rgba(149, 19, 151, 0.1);
    transition: var(--transition);
}

.service-editorial-item:hover {
    border-left: 3px solid var(--secondary-color);
    background: rgba(255, 255, 255, 0.5);
    transform: translateX(10px);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    opacity: 0.15;
    line-height: 1;
    transition: var(--transition);
}

.service-editorial-item:hover .service-number {
    opacity: 1;
    transform: scale(1.1);
}

.service-editorial-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.service-editorial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
}

.service-item:hover .service-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(149, 19, 151, 0.2);
}

.service-info h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 800;
}

.service-info p {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Process Section (New) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 20px;
}

.step-number {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(1, 90, 44, 0.05); /* Very subtle number background */
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--light-text);
    position: relative;
    z-index: 1;
}

/* Testimonials Section (New) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid #eee;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.quote-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--light-text);
}


/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('assets/hero 2.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 90, 44, 0.85);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-content h2 {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Contact Grid & Map Section */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 !important;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--white);
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.map-container {
    flex: 1;
    min-width: 50%;
    height: 100%;
    min-height: 450px;
    background-color: #eee;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.map-container iframe {
    height: 100%;
    width: 100%;
    min-height: 450px;
    display: block;
    border: none !important;
    margin: 0 !important;
}

.contact-form-container {
    flex: 1;
    min-width: 50%;
    background-color: var(--white);
    padding: 50px;
    height: 100%;
    margin: 0 !important;
    border: none !important;
}

.contact-form-container h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(1, 90, 44, 0.1);
    background-color: var(--white);
}

/* Footer */
/* Modern Footer */
.footer {
    background-color: #0d0d0d;
    color: #e0e0e0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-color);
    border-image: none;
}

.footer-col img {
    display: block;
    margin-bottom: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-col {
    text-align: left;
}

.footer-col p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: left;
}

.footer h3 {
    color: var(--white) !important;
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 4px;
}

.footer-contact .info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-contact .info-text label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1;
}

.footer-contact .info-text span, 
.footer-contact .info-text a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    line-height: 1.4;
    text-align: left;
}

.footer-contact .info-text a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(224, 107, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-legal {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .properties-grid,
    .features-grid,
    .services-list,
    .services-editorial,
    .testimonials-grid,
    .about-grid-editorial,
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Full Screen Mobile Menu */
    /* Mobile Menu - Rolling Mat Style */
    .nav-menu {
        position: absolute;
        top: 100%; /* Directly below header */
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 20px;
        transition: transform 0.1s ease-in, opacity 0.1s ease-in; /* Super fast close */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: scaleY(0);
        transform-origin: top center;
        opacity: 0;
        pointer-events: none; /* Prevent clicks when closed */
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: all;
        transition: transform 0.2s ease-out, opacity 0.2s ease-out; /* Snappy open */
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: #1a1a1a !important; /* Force distinct color */
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.03);
        width: 100%;
        transition: all 0.3s ease;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
        background: rgba(0,0,0,0.02);
        padding-left: 10px; /* Slight movement on hover */
    }

    /* Keep Contact Button Static and Orange on Mobile */
    .nav-menu .nav-link.btn {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
        padding: 10px 25px !important; /* Restore proper padding */
        border-bottom: none;
        margin-top: 10px;
        transition: none;
        width: auto !important; /* Don't force full width if it overflows */
        display: inline-block;
    }

    .nav-menu .nav-link.btn:hover,
    .nav-menu .nav-link.btn:active {
        background-color: var(--primary-color) !important;
        padding: 10px 25px !important;
        transform: none !important;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 1002; /* Ensure toggle is above the running menu */
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    /* Stack Grids */
    .contact-grid {
        flex-direction: column;
        gap: 0 !important;
    }

    .map-container, .contact-form-container {
        min-width: 100%;
    }

    .services-editorial,
    .about-grid-editorial {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-overlap {
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
        height: auto;
    }

    .image-large {
        transform: none;
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
    
    .editorial-title {
        font-size: 2.5rem;
    }

    .about-text-editorial {
        padding-left: 0;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stats-section {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding-bottom: 60px; /* Added spacing at the bottom */
    }

    .stats-section {
        margin-top: -30px;
        padding: 40px 0;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .properties-grid,
    .features-grid,
    .services-list,
    .services-editorial,
    .process-grid,
    .testimonials-grid,
    .about-grid-editorial,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .btn-primary-sm, .btn-secondary-sm, .btn-sold-sm {
        padding: 10px 8px;
        font-size: 0.7rem;
        border-radius: 50px;
    }
    
    .hero-buttons {
        justify-content: center; /* Center buttons for better fit */
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: auto; /* Prevent stretching */
        min-width: 160px; /* Maintain good touch area */
    }
}


.btn-outline-white {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-question h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 0.9rem;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fafafa;
}

.faq-answer p {
    padding: 0 25px 25px 60px;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Active State */
.faq-item.active {
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 10px 25px rgba(149, 19, 151, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 10px;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--secondary-color);
}
