/* 
   JK Properties - PREMIUM LUXURY DESIGN SYSTEM
   Theme: Elegant, Trustworthy, State-of-the-art
*/

:root {
    --navy: #0a192f;
    --navy-light: #112240;
    --gold: #c5a059;
    --gold-light: #d4af37;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --text-dark: #1a1a1a;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --cream-bg: #fdfbf7;
    --soft-blue: #eef7ff;
    --soft-gold: #fff9e6;
    --soft-green: #f0fff4;
    --marathi-text: #2c3e50;
    --beige-bg: #f5f0e6;
    --gold-premium: #b88d3e;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.premium-font {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

ul {
    list-style: none;
}

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

/* --- UTILITIES --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

#trust-features.section-padding {
    padding-top: 50px;
}

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

.gold-text {
    color: var(--gold);
}

.bg-navy {
    background: var(--navy);
    color: var(--white);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* --- HEADER / NAVBAR --- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.premium-nav {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
}

header.sticky {
    background: rgba(10, 25, 47, 0.9);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* WhatsApp Radar Animation */
.whatsapp-btn {
    position: relative;
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse-wave 2s infinite;
    opacity: 0.5;
}

@keyframes pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.logo-text {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    /* Embossed Effect for White */
    text-shadow:
        1px 1px 1px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 255, 255, 0.1);
}

.brand-accent {
    font-family: 'Playball', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    margin-right: -2px;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.footer-logo .logo-text {
    font-size: 2.2rem;
    display: flex;
    margin-bottom: 1.5rem;
}

header.sticky .logo-text {
    font-size: 1.3rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.8;
}

.nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: 10px;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 90vh;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5rem;
    border-radius: 40px;
    max-width: 850px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(60px);
}

.hero-slide.active .glass-panel.animate-up {
    animation: slideUpFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.top-label {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.glass-panel h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.glass-panel p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
}

/* Slider Controls */
.luxe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.luxe-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.luxe-arrow.prev {
    left: 40px;
}

.luxe-arrow.next {
    right: 40px;
}

.pagination-bottom {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    align-items: center;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    width: 45px;
    border-radius: 20px;
}

/* Mobile styles are consolidated at the end of the file */


/* --- FLOATING AGENT CARD --- */
.agent-floating-card {
    position: absolute;
    bottom: -50px;
    left: 10%;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 30px 60px rgba(10, 25, 47, 0.15);
    z-index: 100;
    max-width: 420px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.agent-floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 70px rgba(10, 25, 47, 0.2);
}

.agent-img-box {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--gray-50);
}

.agent-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.agent-info-content h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.agent-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    display: block;
}

.agent-card-btns {
    display: flex;
    gap: 0.8rem;
}

.agent-btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    border-radius: 10px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .agent-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 3rem 0 -60px;
        width: 100%;
        max-width: none;
        box-shadow: var(--shadow-lg);
    }
}

/* --- FEATURED PROJECTS --- */
.section-title {
    margin-bottom: 2.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 0 auto;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

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

.project-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.project-info {
    padding: 2rem;
}

.project-price {
    color: var(--gold);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- WHY CHOOSE US --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--gold);
    background: var(--gray-50);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* --- FAMILY oriented TRUST SECTION --- */
.bg-cream {
    background-color: var(--cream-bg);
}

.soft-title {
    color: var(--marathi-text);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpSlogan 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUpSlogan {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.divider-soft {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    border-radius: 5px;
}

.family-card-stack {
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Increased spacing for better conversion */
    max-width: 800px;
    margin: 4rem auto 0;
}

.family-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.family-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.bg-soft-blue { background: var(--soft-blue); color: #3498db; }
.bg-soft-gold { background: var(--soft-gold); color: #f1c40f; }
.bg-soft-green { background: var(--soft-green); color: #2ecc71; }

.card-content h3 {
    font-size: 1.3rem;
    color: var(--marathi-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .family-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .card-icon-box {
        margin-bottom: 0.5rem;
    }
    
    .soft-title {
        font-size: 2.2rem;
    }

    .card-content h3 {
        font-size: 1.5rem; /* Slightly larger for mobile readability */
    }

    .card-content p {
        font-size: 1.15rem; /* Slightly larger for mobile readability */
    }
}

/* --- LIFESTYLE SHOWCASE (GODREJ STYLE) --- */
.bg-beige {
    background-color: var(--beige-bg);
}

.modern-heading {
    font-size: 2.2rem;
    color: var(--marathi-text);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lifestyle-carousel-wrapper {
    overflow-x: auto;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.lifestyle-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.lifestyle-carousel-inner {
    display: flex;
    gap: 1.5rem;
    padding: 0 10%;
    scroll-snap-type: x mandatory;
}

.lifestyle-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0; /* Prevents cards from squashing */
    scroll-snap-align: center;
    transition: var(--transition);
}

.portrait-box {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portrait-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.lifestyle-card:hover .portrait-box img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: var(--white);
}

.overlay-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--white);
}

.overlay-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-gold-premium {
    background: var(--gold-premium);
    color: white;
    box-shadow: 0 10px 20px rgba(184, 141, 62, 0.2);
}

.btn-gold-premium:hover {
    background: #a67c30;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(184, 141, 62, 0.3);
}

@media (max-width: 768px) {
    .modern-heading {
        font-size: 1.8rem;
    }
    
    .lifestyle-card {
        min-width: 250px;
    }
    
    .lifestyle-carousel-wrapper {
        justify-content: flex-start; /* Fix scroll start */
    }
    
    .lifestyle-carousel-inner {
        padding: 0 20px; /* Better spacing for mobile */
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .lifestyle-carousel-wrapper {
        justify-content: center;
        overflow: visible;
    }
    
    .lifestyle-carousel-inner {
        padding: 0;
        justify-content: center;
        scroll-snap-type: none;
        width: 100%;
        max-width: 1200px;
    }
    
    .lifestyle-card {
        min-width: 0;
        flex: 1;
        max-width: 380px;
    }
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 3rem;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.amenity-icon {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    background: var(--gold);
    color: var(--navy);
    transform: rotateY(180deg);
}

/* --- TESTIMONIALS --- */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    text-align: center;
}

.testimonial-content {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
}

/* --- CONTACT SECTION --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* --- FOOTER --- */
footer {
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 60px;
    filter: brightness(0) invert(1);
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 2rem;
    color: var(--gold);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.05rem; /* Decreased by 25% from 1.4rem */
    }

    .brand-accent {
        font-size: 1.5rem; /* Decreased by 25% from 2rem */
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        height: 75vh; /* Adjusted to 75% height as requested */
    }

    .glass-panel {
        padding: 2.5rem 1.5rem;
        margin: 0 1rem;
        border-radius: 24px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }

    .luxe-arrow {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .luxe-arrow.prev {
        left: 10px;
    }

    .luxe-arrow.next {
        right: 10px;
    }

    .pagination-bottom {
        bottom: 25px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 30px;
    }

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

    #trust-features.section-padding {
        padding-top: 30px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-logo {
        text-align: center;
        justify-content: center;
    }

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

    .footer-links ul li a:hover {
        padding-left: 0;
    }
}