:root {
    --primary-orange: #ff8c00;
    --secondary-orange: #f36f21;
    --accent-gold: #c5a059;
    --dark-brown: #3e2723;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gradient-orange: linear-gradient(90deg, #ff8c00 0%, #f36f21 100%);
    --gradient-gold: linear-gradient(90deg, #d4af37 0%, #f1c40f 100%);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fffbf5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 140px;
    margin-bottom: 25px;
    animation: pulse 1.8s infinite ease-in-out;
}

.preloader-logo img {
    width: 100%;
}

.preloader-bar {
    width: 180px;
    height: 4px;
    background: #eee;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.bar-progress {
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    transform: translateX(-100%);
    animation: loading 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0); }
    100% { transform: translateX(100%); }
}

/* Scroll Reveal Base Styles */
.reveal-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-smooth);
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fffbf5; /* Slightly warm background overall */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: var(--white);
    height: 100px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-premium);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text-branding {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(to right, #ff6a00, #b22222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1;
}

.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 5px;
}

.tagline-line {
    flex: 1;
    height: 1px;
    background: #ff6a00;
    opacity: 0.6;
}

.tagline-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: #444;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

footer .logo-img {
    height: 70px;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    padding: 10px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-orange);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-orange);
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background: #fdfcfb;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-curve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-curve-overlay svg {
    width: 100%;
    height: 100%;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    max-width: 550px;
}

.hero-sub {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-title-main {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--dark-brown);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-title-accent {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 0.9;
    margin-top: 5px;
    filter: drop-shadow(0 5px 15px rgba(255, 140, 0, 0.1));
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.hero-tagline .line {
    flex: 0 0 40px;
    height: 1px;
    background: var(--accent-gold);
}

.hero-tagline p {
    font-size: 1.1rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.4s;
    letter-spacing: 1px;
}

.arrow-circle {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
}

.btn-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #fff1e0;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff8f0 0%, #fff1e0 100%);
    border-radius: 20px; /* Modern squircle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--primary-orange);
    transition: var(--transition-smooth);
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.08);
}

.feature-item:hover .feature-icon {
    background: var(--gradient-orange);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-brown);
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 60px 0;
}

.about-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    display: flex;
    overflow: hidden;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.about-image-side {
    flex: 1;
    position: relative;
    padding: 20px;
    min-height: 450px;
}

.about-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.experience-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-text {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.2;
}

.about-content-side {
    flex: 1.2;
    padding: 30px 50px 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Fix: prevent button from stretching */
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.label-text {
    font-weight: 700;
    color: var(--dark-brown);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.label-line {
    width: 25px;
    height: 2px;
    background: var(--accent-gold);
}

.about-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark-brown);
    line-height: 1.1;
    margin-bottom: 15px;
}

.about-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.about-title .accent {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.founder-info {
    margin: 25px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.founder-signature {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 2px;
}

.founder-title {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.founder-contact-direct {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.founder-contact-direct a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.founder-contact-direct a i {
    color: var(--primary-orange);
    width: 15px;
}

.founder-contact-direct a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 1px solid var(--primary-orange);
    border-radius: 10px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

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

.bg-decoration.leaves {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 8rem;
    color: #fdf6e9;
    transform: rotate(45deg);
    z-index: -1;
}

/* Properties Section */
.properties {
    padding: 60px 0;
    background: #fafafa;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 15px;
}

.accent-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.view-all {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.view-all:hover {
    gap: 12px;
}

.project-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid var(--primary-orange);
    letter-spacing: 1px;
}

.category-title .accent {
    color: var(--primary-orange);
}

.hidden-properties {
    display: none !important;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hidden-properties.show {
    display: grid !important;
    opacity: 1;
}

.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: var(--gradient-orange);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 120, 14, 0.2);
}

.view-all-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-all-btn.active i {
    transform: rotate(180deg);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.property-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    border: 1px solid #f5f5f5;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* Inner Card Slider */
.inner-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.inner-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.inner-slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.slider-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slider-indicators span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.slider-indicators span.active {
    background: var(--white);
    width: 15px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #fff1e0;
}

.property-img {
    position: relative;
    height: 240px; /* Increased height for better proportions */
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-img img {
    transform: scale(1.1);
}

.property-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    pointer-events: none;
}

.property-status {
    position: absolute;
    top: 15px; /* Moved to top for more premium feel */
    right: 15px;
    background: var(--gradient-orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px; /* Fully rounded */
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 5;
    text-transform: uppercase;
}

.property-info {
    padding: 15px;
}

.property-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-brown);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.amenities {
    display: flex;
    justify-content: flex-start; /* Group them closer */
    gap: 15px;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.amenities span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.amenities i {
    color: var(--primary-orange);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.view-details {
    text-decoration: none;
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.view-details:hover {
    gap: 8px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.dot:hover {
    border-color: var(--primary-orange);
}

.dot.active {
    background: var(--primary-orange);
    width: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.2);
}

/* Testimonials Section Marquee */
.testimonials {
    background: #fffbf5;
    padding: 60px 0;
    overflow: hidden;
}

.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: marquee 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Halfway because of duplicated items */
}

.testimonial-card.small-rect {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 280px; /* Small rectangular width */
    flex-shrink: 0;
    border: 1px solid #f0e6d6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-rect .testimonial-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: normal;
}

.small-rect .client-details h4 {
    font-size: 0.95rem;
    color: var(--dark-brown);
    margin-bottom: 2px;
}

.small-rect .client-details span {
    font-size: 0.75rem;
    color: var(--primary-orange);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, #e68a00 0%, #c2780e 100%);
    border-radius: 35px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 25px 50px rgba(194, 120, 14, 0.2);
}

.cta-content {
    display: flex;
    align-items: center;
    width: 65%;
    padding: 0 60px;
    z-index: 5;
    gap: 40px;
}

.cta-icon-circle {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.house-heart-svg {
    width: 50px;
    height: 50px;
}

.cta-text-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-text h2 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.4;
    max-width: 450px;
}

.btn-white-cta {
    background: var(--white);
    color: #c2780e;
    padding: 10px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-white-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cta-divider {
    position: absolute;
    top: 0;
    left: 60%;
    height: 100%;
    width: 200px;
    z-index: 4;
    pointer-events: none;
}

.divider-main {
    position: absolute;
    height: 100%;
    width: 100%;
    border-left: 20px solid rgba(255, 255, 255, 0.1);
    border-radius: 100% 0 0 100%;
    transform: scaleY(1.2);
}

.divider-lines {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 30px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100% 0 0 100%;
    transform: scaleY(1.2);
}

.cta-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 3;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer Section */
footer {
    background: #fffbf5;
    padding-top: 30px; /* Thinner */
    border-top: 1px solid #f0e6d6;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 20px; /* Thinner */
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col .logo {
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border: 1.5px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: #d4af37;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(212, 175, 55, 0.2);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-orange);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: #f9f3e9;
    padding: 10px 0; /* Extremely thin */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #777;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    text-decoration: none;
    color: #777;
    font-size: 0.85rem;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: var(--primary-orange);
}


/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.float-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.float-call { background: var(--gradient-orange); }
.float-whatsapp { background: #25d366; }
.scroll-top {
    background: var(--dark-brown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Comprehensive Mobile Responsiveness */
@media (max-width: 992px) {
    header .header-cta {
        display: none;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block !important;
        font-size: 1.5rem;
        color: var(--dark-brown);
        cursor: pointer;
        z-index: 1002;
    }

    /* Hero Fixes */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-bg-wrapper {
        width: 100%;
        left: 0;
    }

    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4; /* Fade background for readability */
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 0;
        position: relative;
        z-index: 10;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-curve-overlay {
        display: none;
    }

    .about-card {
        flex-direction: column;
    }

    .about-image-side {
        height: 350px;
    }

    .experience-badge {
        bottom: -20px;
        right: 20px;
        left: auto;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA Section Fixes */
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-content {
        width: 100%;
        padding: 0;
        flex-direction: column;
        gap: 30px;
    }

    .cta-text-side {
        align-items: center;
    }

    .cta-image {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        z-index: 1;
    }

    .cta-divider {
        display: none;
    }

    .btn-white-cta {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }

    .hero-title-accent {
        font-size: 3.2rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-tagline {
        justify-content: center;
        margin-bottom: 30px;
    }

    .hero-tagline .line {
        display: none; /* Hide lines on mobile to save space */
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero-sub {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-title-main {
        font-size: 2rem;
    }

    .hero-title-accent {
        font-size: 2.6rem;
    }

    .hero-tagline p {
        font-size: 0.9rem;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .logo-img {
        height: 40px;
    }

    .main-title {
        font-size: 1.4rem;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .cta-text h2 {
        font-size: 1.5rem;
    }
}
