/* Twin City Walk - Complete CSS with Mobile Fixes and New Color Scheme */

/* CSS Variables - Updated Color Scheme */
:root {
    --primary: #1B5E20; /* Dark Green */
    --primary-dark: #0F3E16; /* Darker Green */
    --gold: #FFD700; /* Gold/Yellow */
    --dark-gold: #FFC107; /* Darker Gold */
    --yellow: #FFEB3B; /* Bright Yellow */
    --black: #111827;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --text-gray: #64748b;
    --light-green: #4CAF50;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

.luxury-font {
    font-family: 'Playfair Display', serif;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-slider.single {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.8), rgba(17, 24, 39, 0.6));
    z-index: 1;
}

.slide-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
    width: 95%;
    max-width: 1400px;
    z-index: 2;
}

.slide-content-left {
    color: white;
}

.slide-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.9);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.4s both;
    font-family: 'Playfair Display', serif;
}

.slide-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.6s both;
    color: var(--gold);
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-btn {
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: 2px solid transparent;
}

.hero-btn-primary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.slide-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
}

.form-title {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(27, 94, 32, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(27, 94, 32, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Gallery Carousel */
.gallery-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(27, 94, 32, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Updated CSS for better dots display */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Mobile dots styling */
@media (max-width: 768px) {
    .carousel-dots {
        bottom: 10px;
        gap: 6px;
        padding: 8px;
        max-width: 95%;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        transform: scale(1.2);
    }
}

.gallery-button-container {
    text-align: center;
    margin-top: 40px;
}

.gallery-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gallery-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 94, 32, 0.3);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.gallery-modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 30px;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    animation: zoomIn 0.3s ease;
}

.gallery-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: var(--primary);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.gallery-close:hover {
    color: var(--gold);
}

.gallery-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-modal-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-modal-item:hover {
    transform: scale(1.05);
}

.gallery-modal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.image-close:hover {
    color: var(--gold);
}

.image-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.image-nav-btn {
    background: rgba(27, 94, 32, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    pointer-events: all;
}

.image-nav-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

/* Videos Section */
.videos {
    padding: 80px 0;
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.video-item iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Floor Plans Section - Complete Fix */
.floor-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.floor-plans-wrapper {
    margin-top: 50px;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
}

.floor-plan-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    background: var(--light-gray);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.plan-tab {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 15px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.plan-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: left 0.3s ease;
    z-index: 0;
}

.plan-tab.active::before {
    left: 0;
}

.plan-tab.active {
    color: white;
    border-color: var(--primary);
}

.plan-tab span {
    position: relative;
    z-index: 1;
}

/* Desktop Layout */
.plan-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.plan-content.active {
    display: grid;
}

.plan-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.plan-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.plan-image-container:hover .plan-image {
    transform: scale(1.05);
}

.plan-details {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 50px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: fit-content;
}

.plan-details::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.plan-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.plan-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.plan-cta {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.plan-cta:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

/* Location Section - FIXED */
.location {
    padding: 80px 0;
    background: var(--light-gray);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.location-info {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.location-address {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.location-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-feature:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.location-feature:hover i {
    color: var(--gold);
}

.location-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 30px;
    transition: color 0.3s ease;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.contact-info {
    padding: 20px 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--gold);
    width: 40px;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Form Styles */
.contact-form {
    display: grid;
    gap: 20px;
}

.field {
    position: relative;
}

.field input,
.field textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    color: var(--black);
    font-family: inherit;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.field input.error,
.field textarea.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1) !important;
}

.field input.valid,
.field textarea.valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.1) !important;
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    animation: slideDown 0.3s ease;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    min-height: 44px;
    touch-action: manipulation;
}

.btn.gold {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--black);
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 998;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.3rem;
}

.floating-icon:hover {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

/* Mobile Contact Widget */
.mobile-contact-widget {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.mobile-contact-buttons {
    display: flex;
    width: 100%;
}

.mobile-contact-btn {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 44px;
}

.mobile-contact-btn:last-child {
    border-right: none;
}

.mobile-contact-btn:hover,
.mobile-contact-btn:active {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-contact-btn i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.mobile-contact-btn.whatsapp {
    background: #25d366;
}

.mobile-contact-btn.enquire {
    background: var(--gold);
    color: var(--black);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes slideInRight {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOutRight {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        transform: scale(0.8); 
        opacity: 0; 
    }
    to { 
        transform: scale(1); 
        opacity: 1; 
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE RESPONSIVENESS - PROPERLY FIXED */
@media (max-width: 768px) {
    /* Base mobile fixes */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    body {
        font-size: 14px;
        line-height: 1.5;
        padding-bottom: 70px;
    }
    
    /* Navbar Mobile */
    .nav-container {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, var(--black), var(--primary));
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        padding: 12px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
    
    /* HERO SECTION - PROPERLY CENTERED */
    .hero-slider.single {
        height: 100vh;
        min-height: 600px;
        margin-top: 70px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        z-index: 1;
    }
    
    .slide-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(27, 94, 32, 0.8), rgba(17, 24, 39, 0.6));
        z-index: 2;
        pointer-events: none;
    }
    
    .slide-content-wrapper {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        padding: 30px 20px;
        text-align: center;
        color: white;
        transform: none;
        top: auto;
        left: auto;
        display: block;
    }
    
    .slide-content-left {
        width: 100%;
        text-align: center;
    }
    
    /* HIDE FORM ON MOBILE */
    .slide-content-right {
        display: none !important;
    }
    
    .slide-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .slide-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .slide-description {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
        text-align: center;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        align-items: center;
    }
    
    .hero-btn {
        width: 220px;
        padding: 14px 25px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    /* Gallery Mobile */
    .gallery-carousel {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .gallery-modal-content {
        width: 98%;
        margin: 1% auto;
        padding: 20px;
    }
    
    .gallery-modal-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    /* Section Responsive */
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Videos Mobile */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-item iframe {
        height: 250px;
    }
    
    /* Floor Plans Mobile */
    .floor-plans-wrapper {
        padding: 20px 15px;
        margin: 20px 10px;
        border-radius: 15px;
    }
    
    .floor-plan-nav {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        margin-bottom: 30px;
    }
    
    .plan-tab {
        min-width: auto;
        width: 100%;
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .plan-content {
        grid-template-columns: 1fr;
        gap: 25px;
        display: none;
    }
    
    .plan-content.active {
        display: block;
    }
    
    .plan-image-container {
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .plan-image {
        height: 250px;
    }
    
    .plan-details {
        padding: 25px 20px;
        border-radius: 15px;
        margin: 0;
    }
    
    .plan-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .plan-price {
        font-size: 1.2rem;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .plan-features {
        margin-bottom: 25px;
    }
    
    .plan-features li {
        padding: 10px 0;
        font-size: 0.9rem;
    }
    
    .plan-cta {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Location Mobile */
    .location-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info {
        padding: 30px 20px;
    }
    
    .location-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .location-address {
        font-size: 1rem;
        text-align: center;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .location-feature {
        padding: 15px;
    }
    
    .location-feature i {
        font-size: 1.3rem;
    }
    
    .map-container {
        height: 300px;
        border-radius: 15px;
    }
    
    /* Contact Mobile */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .contact-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-text {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        padding-right: 0;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .floating-icons {
        display: none;
    }
    
    .mobile-contact-widget {
        display: flex;
    }
    
    .footer {
        margin-bottom: 70px;
    }
    
    /* Form Mobile */
    .field input,
    .field textarea {
        padding: 12px 15px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .field {
        margin-bottom: 15px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .floor-plans-wrapper {
        padding: 40px 30px;
    }
    
    .plan-content {
        gap: 40px;
    }
    
    .plan-details {
        padding: 40px 30px;
    }
    
    .location-container {
        gap: 40px;
    }
    
    .contact-container {
        gap: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-slider.single {
        min-height: 550px;
    }
    
    .slide-content-wrapper {
        padding: 20px 15px;
        max-width: 400px;
    }
    
    .slide-title {
        font-size: 1.9rem;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
    }
    
    .slide-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        gap: 8px;
        margin: 15px 0;
    }
    
    .stat-item {
        min-width: 70px;
        padding: 10px 6px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-btn {
        width: 200px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .floor-plans-wrapper {
        padding: 15px 10px;
        margin: 15px 5px;
    }
    
    .plan-image {
        height: 200px;
    }
    
    .plan-details {
        padding: 20px 15px;
    }
    
    .plan-title {
        font-size: 1.2rem;
    }
    
    .plan-price {
        font-size: 1.1rem;
    }
    
    .location-info {
        padding: 25px 15px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .field input,
    .field textarea {
        padding: 10px 12px;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) and (max-height: 500px) {
    .hero-slider.single {
        min-height: 100vh;
    }
    
    .slide-content-wrapper {
        padding: 15px 20px;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        margin: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .hero-btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(27, 94, 32, 0.05), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(27, 94, 32, 0.15);
    border-color: var(--primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.pricing-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-body {
    position: relative;
    z-index: 1;
}

/* Main Pricing Styles */
.main-pricing .pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    margin: -30px -30px 25px;
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
}

.main-pricing .pricing-title,
.main-pricing .pricing-subtitle {
    color: white;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item:hover {
    background: rgba(27, 94, 32, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.floor-name {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.price-value {
    font-weight: 900;
    color: var(--primary);
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
}

/* Additional Charges Styles */
.charge-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    gap: 15px;
}

.charge-item:last-child {
    border-bottom: none;
}

.charge-name {
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
    flex: 1;
}

.charge-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    text-align: right;
    line-height: 1.4;
}

/* Payment Plans Styles */
.payment-plan-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--light-gray);
    padding: 5px;
    border-radius: 10px;
}

.plan-tab-btn {
    flex: 1;
    padding: 10px 15px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 3px 10px rgba(27, 94, 32, 0.3);
}

.payment-plan-content {
    display: none;
}

.payment-plan-content.active {
    display: block;
}

.payment-plan-content h4 {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: rgba(27, 94, 32, 0.1);
    transform: translateX(5px);
}

.payment-item span:first-child {
    font-weight: 500;
    color: var(--black);
    font-size: 0.9rem;
}

.payment-item span:last-child {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

/* Price Calculator */
.price-calculator {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 20px 50px rgba(27, 94, 32, 0.3);
}

.calculator-header {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.calculator-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.calculator-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold);
}

.calc-input-group select,
.calc-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.calc-input-group select:focus,
.calc-input-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.calc-input-group select option {
    background: var(--primary);
    color: white;
}

.calc-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.calc-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

.result-item span:first-child {
    font-weight: 500;
}

.result-item span:last-child {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.05rem;
}

/* Pricing Notes */
.pricing-notes {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--gold);
}

.pricing-notes h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.pricing-notes ul {
    list-style: none;
    padding: 0;
}

.pricing-notes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

.pricing-notes li::before {
    content: '•';
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.pricing-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.pricing-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.pricing-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .calculator-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .price-calculator {
        padding: 25px 20px;
    }
    
    .calculator-header h3 {
        font-size: 1.6rem;
    }
    
    .pricing-notes {
        padding: 20px;
    }
    
    .pricing-cta {
        padding: 30px 20px;
    }
    
    .pricing-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .payment-plan-tabs {
        flex-direction: column;
    }
    
    .plan-tab-btn {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 15px;
    }
    
    .price-item,
    .charge-item,
    .payment-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .price-value,
    .charge-value {
        font-size: 1rem;
    }
    
    .calc-input-group select,
    .calc-input-group input {
        padding: 10px 12px;
    }
    
    .calc-result {
        padding: 20px;
    }
    
    .pricing-notes li {
        font-size: 0.85rem;
        padding-left: 20px;
    }
}
