/* ===================================
   Serenity Hills - Main Stylesheet
   Brochure-Inspired Premium Design
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* ===================================
   CSS Variables - Color Palette
   =================================== */
:root {
    /* Primary Colors from Brochure */
    --primary-navy: #2C3E50;
    --primary-green: #5A7C5A;
    --accent-gold: #D4AF37;
    --bg-cream: #F5F5DC;
    --bg-light: #FAFAF8;

    /* Text Colors */
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #FFFFFF;

    /* Additional Colors */
    --dark-green: #3A4F3A;
    --light-gold: #E8D4A0;
    --border-color: #E0E0E0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styling */
section {
    padding: var(--section-padding);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-navy);
}

h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.4rem, 4vw, 1.75rem);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background-color: var(--primary-navy);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark);
}

/* ===================================
   Sticky Header
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-navy);
    font-size: 1.1rem;
}

.phone-number i {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    transition: var(--transition-smooth);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../img/serenity-hills-banner-1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    /* User requested 100% opacity */
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5), rgba(58, 79, 58, 0.5));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--bg-cream);
    margin-bottom: 15px;
}

.hero-location {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.hero-feature {
    text-align: center;
}

.hero-feature i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.hero-feature h3 {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.hero-feature p {
    font-size: 0.9rem;
    color: var(--bg-cream);
}

/* ===================================
   Project Highlights
   =================================== */
.highlights {
    background-color: var(--bg-cream);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: var(--text-white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-white);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.highlight-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Configurations & Pricing
   =================================== */
.pricing {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-green));
    color: var(--text-white);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold), var(--light-gold));
}

.pricing-card:hover {
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.price {
    font-size: clamp(2.2rem, 10vw, 3rem);
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.price-label {
    font-size: 0.9rem;
    color: var(--bg-cream);
    margin-bottom: 30px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-gold);
    margin-right: 10px;
}

/* ===================================
   Amenities Section
   =================================== */
.amenities {
    background-color: var(--bg-cream);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-item {
    background-color: var(--text-white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.amenity-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.amenity-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.amenity-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   Payment Plans
   =================================== */
.payment-plans {
    background-color: var(--bg-light);
}

.payment-plan-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--text-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.plan-header h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-gold), var(--light-gold));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.payment-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.payment-stage {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-cream);
    border-radius: 8px;
    position: relative;
}

.stage-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.stage-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.stage-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    background-color: var(--bg-cream);
}

/* ===================================
   Gallery Section - Luxurious Redesign
   =================================== */
.gallery {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.gallery-grid {
    columns: 3 300px;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--primary-navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08) rotate(1.4deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 37, 47, 0.1),
            rgba(26, 37, 47, 0.9));
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.gallery-item:hover h3 {
    transform: translateY(0);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0px solid var(--accent-gold);
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 3;
    border-radius: 12px;
}

.gallery-item:hover::after {
    border-width: 15px;
    opacity: 0.1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--text-white);
    font-size: 1.2rem;
}

/* ===================================
   Location Section
   =================================== */
/* ===================================
   Location Section - Redesigned
   =================================== */
.location {
    background-color: var(--bg-light);
    padding: var(--section-padding);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.location-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.location-info h2 {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.location-description {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 90%;
}

.location-advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-category {
    margin-bottom: 30px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.category-title h4 {
    font-size: 0.95rem;
    color: var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-title i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.advantage-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
    padding-right: 10px;
}

.advantage-label {
    color: var(--text-dark);
    font-weight: 500;
}

.advantage-distance {
    color: var(--text-dark);
    font-weight: 700;
    min-width: 55px;
    text-align: right;
}

.location-map {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-image-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.map-image-container img {
    transition: transform 0.5s ease;
}

.map-image-container:hover img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.95);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-map {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 600px) {
    .location-advantage-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   FAQ Section
   =================================== */
.faq {
    background-color: var(--bg-cream);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--text-white);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background-color: var(--bg-cream);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===================================
   Contact Form Section
   =================================== */
.contact {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark-green));
    color: var(--text-white);
}

.contact .section-title h2,
.contact .section-title p {
    color: var(--text-white);
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--bg-cream);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--text-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
    display: block;
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.2);
    border: 1px solid #f44336;
    color: #f44336;
    display: block;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    color: var(--bg-cream);
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section a {
    color: var(--bg-cream);
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--accent-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.footer-logo h3 {
    color: var(--text-white);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-links i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--bg-cream);
    font-size: 0.9rem;
}

.rera-info {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--text-light);
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .payment-stages {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 40px 20px;
        gap: 25px;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        height: auto;
        min-height: 600px;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 30px;
    }

    .pricing-grid,
    .highlights-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .payment-plan-container {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stage-percentage {
        font-size: 2.2rem;
    }

    .stage-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .phone-number {
        font-size: 0.85rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        width: 100%;
        /* Full width buttons on very small screens */
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===================================
   Modal System
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideDown 0.4s ease;
}

@keyframes modalSlideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-gold);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header i {
    font-size: 3rem;
    color: #f44336;
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.modal-header p {
    color: var(--text-light);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

.brochure-form .form-group label {
    color: var(--primary-navy);
}

.brochure-form .form-group input {
    background-color: #f9f9f9;
    color: var(--text-dark);
    border: 1px solid #ddd;
}

.brochure-form .form-group input:focus {
    border-color: var(--accent-gold);
    background-color: #fff;
}

.brochure-form .form-group input::placeholder {
    color: #999;
    opacity: 1;
}


/* ===================================
   Sticky Mobile Footer
   =================================== */
.mobile-sticky-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    justify-content: space-around;
    padding: 10px 0;
}

.sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    flex: 1;
}

.sticky-item i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

.sticky-item:nth-child(2) i {
    color: #25D366;
}

/* Show on mobile, hide on desktop */
@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }

    /* Padding for footer space */
    body {
        padding-bottom: 70px;
    }
}

/* Pulse Animation for WhatsApp or Highlights */
.pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}