/* ===========================
   CSS VARIABLES & BASE STYLES
   =========================== */

:root {
    /* Luxury Color Palette */
    --primary-color: #0d5b5b;           /* Teal/Deep Ocean */
    --primary-light: #1a8888;          /* Light Teal */
    --secondary-color: #d4a574;        /* Premium Gold */
    --accent-color: #c41e3a;           /* Sophisticated Red */
    --accent-light: #f5a623;           /* Warm Gold */
    --text-dark: #1a1a1a;
    --text-light: #5a5a5a;
    --text-muted: #888888;
    --bg-light: #f9f8f6;               /* Warm White */
    --bg-white: #ffffff;
    --border-color: #e8e6e1;           /* Soft Border */
    --success-color: #2ecc71;
    
    /* Premium Fonts */
    --font-primary: 'Montserrat', sans-serif;      /* Modern & Professional */
    --font-secondary: 'Merriweather', serif;       /* Elegant & Timeless */
    --font-tertiary: 'Outfit', sans-serif;        /* Contemporary & Clean */
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   NAVIGATION
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--bg-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-light);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--bg-white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    margin-top: 80px;
    min-height: 700px;
    background: linear-gradient(135deg, #0f2847 0%, #1a3a5c 50%, #d4a574 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    gap: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 60, 114, 0.5);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--bg-white);
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out;
    flex: 1;
}

.hero-form-card {
    position: relative;
    z-index: 10;
    flex: 1;
    max-width: 450px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    border: 2px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

/* ===========================
   SECTION HEADERS
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

/* ===========================
   ABOUT SECTION
   =========================== */

.about {
    padding: 80px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-content {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

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

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2rem;
    border-radius: 12px;
    color: var(--bg-white);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.highlight-card h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.highlight-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.key-features {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.key-features h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-left-color: var(--accent-color);
}

.feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--bg-white);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 1rem;
    font-weight: 700;
}

.feature-item p {
    display: inline;
    color: var(--text-light);
    font-size: 1rem;
}

.highlight-list {
    list-style: none;
    margin: 1.5rem 0 0 0;
    padding: 0;
}

.highlight-list li {
    padding: 0.6rem 0 0.6rem 1.5rem;
    color: var(--text-light);
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ===========================
   KEY HIGHLIGHTS SECTION
   =========================== */

.highlights-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.highlights-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-spec-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.highlight-spec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.spec-icon {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.highlight-spec-card h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.spec-value {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0.5rem 0;
}

.spec-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   CONNECTIVITY SECTION
   =========================== */

.connectivity-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.connectivity-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.connectivity-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.connectivity-box h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.connectivity-box h3 i {
    font-size: 1.8rem;
}

.connectivity-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.connectivity-box li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.connectivity-box li:last-child {
    border-bottom: none;
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-color);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 165, 116, 0.15);
    font-family: var(--font-secondary);
}

.benefit-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   AMENITIES SECTION
   =========================== */

.amenities {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid transparent;
    position: relative;
}

.amenity-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--accent-color);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    color: var(--accent-color);
    transform: scale(1.15) rotateY(10deg);
}

.amenity-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   GALLERY SECTION
   =========================== */

.gallery {
    padding: 80px 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-hero {
    grid-column: 1 / -1;
    height: 400px;
}

.gallery-large {
    height: 350px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 40, 71, 0.85) 0%, rgba(196, 30, 58, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    text-align: center;
    padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--bg-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    color: var(--accent-light);
    font-size: 1.1rem;
}

/* ===========================
   PRICING SECTION
   =========================== */

.pricing {
    padding: 80px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--secondary-color);
}

.pricing-header h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.unit-size {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.pricing-body {
    padding: 2rem;
    text-align: center;
}

.price {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.price strong {
    font-size: 2.2rem;
    color: var(--accent-color);
    display: block;
    margin-top: 0.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

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

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.3);
}

.pricing-btn.featured-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c0392b 100%);
}

.pricing-btn.featured-btn:hover {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ===========================
   LOCATION SECTION
   =========================== */

.location {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-content h3 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.connectivity-list {
    display: grid;
    gap: 1.5rem;
}

.connectivity-item {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.connectivity-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.connectivity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    border-radius: 8px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.connectivity-item h4 {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.connectivity-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

/* ===========================
   CONTACT INFO SECTION
   =========================== */

.contact-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
}

.contact-info-section .container {
    max-width: 1200px;
}

/* ===========================
   ABOUT US SECTION
   =========================== */

.about-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.about-us-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-us-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-us-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.services-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.zero-brokerage-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(196, 30, 58, 0.1) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 2rem;
}

.banner-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.banner-text h4 {
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.banner-text p {
    margin: 0;
    color: var(--text-dark);
}

.banner-text strong {
    color: var(--primary-color);
}

.about-us-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-us-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.about-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-us-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: var(--primary-color);
    font-weight: 700;
}

.about-us-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.why-choose-us {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e0e0e0;
}

.why-choose-us h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.reason-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.reason-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
}

.reason-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-us-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-us-grid {
        gap: 2rem;
    }

    .about-us-highlights {
        grid-template-columns: 1fr;
    }

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

    .zero-brokerage-banner {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--secondary-color);
    }

    .why-choose-us h3 {
        font-size: 1.5rem;
    }
}

.form-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    pointer-events: auto;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 2rem;
    text-align: center;
}

.form-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.form-header p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.form-benefits {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.benefits-title {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.benefits-subtitle {
    margin: 0.5rem 0 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.custom-contact-form {
    padding: 2.5rem;
}

.custom-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.form-group .required {
    color: var(--accent-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    pointer-events: auto;
    cursor: pointer;
}

.form-group input[type="text"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group input[type="tel"]::placeholder {
    color: #999;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    outline: none;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    pointer-events: auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

/* Phone Input Group */
.phone-input-group {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    align-items: flex-start;
}

.country-code-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 10px;
    font-size: 14px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    pointer-events: auto;
}

.country-code-select:hover {
    border-color: var(--secondary-color);
}

.country-code-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    outline: none;
}

.phone-input-group input[type="tel"] {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    pointer-events: auto;
}

.phone-input-group input[type="tel"]::placeholder {
    color: #999;
}

.phone-input-group input[type="tel"]:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    outline: none;
}

@media (max-width: 480px) {
    .phone-input-group {
        grid-template-columns: 100px 1fr;
    }
    
    .country-code-select {
        padding: 12px 8px;
        font-size: 13px;
    }
}
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3) !important;
}

.formsubmit.zcwf_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4) !important;
}

.zcwf_lblLeft .zcwf_button {
    background: var(--border-color) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--border-color) !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.zcwf_lblLeft .zcwf_button:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.lead-form {
    margin-bottom: 2rem;
}

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

.form-group.hidden {
    display: none;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-tertiary);
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #8b0000 100%);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin: 0;
}

.zoho-form-placeholder {
    padding: 2rem;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
}

.info-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===========================
   URGENCY SIDEBAR
   =========================== */

.urgency-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    z-index: 9998;
    transition: right 0.4s ease;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.urgency-sidebar.active {
    right: 0;
}

.urgency-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 100;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--secondary-color);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.urgency-content {
    padding: 3rem 2rem 2rem;
}

.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-badge i {
    margin-right: 0.5rem;
}

.urgency-content h2 {
    font-family: var(--font-secondary);
    font-size: 2rem;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    color: var(--secondary-color);
}

.urgency-highlight {
    background: rgba(212, 165, 116, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.urgency-highlight p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.urgency-benefits {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

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

.urgency-benefits li:last-child {
    border-bottom: none;
}

.urgency-benefits i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.urgency-benefits span {
    line-height: 1.4;
}

.urgency-timer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.urgency-timer p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.countdown {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.timer-box {
    background: rgba(212, 165, 116, 0.2);
    padding: 0.8rem;
    border-radius: 6px;
    min-width: 70px;
    border: 2px solid var(--secondary-color);
}

.timer-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.timer-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.urgency-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 14px;
    margin: 1rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.urgency-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.urgency-cta.secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.urgency-cta.secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.urgency-footer {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 1.5rem 0 0 0;
}

.floating-urgency-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-urgency-btn span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.floating-urgency-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.5);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(196, 30, 58, 0.6);
    }
}

/* ===========================
   CONTACT MODAL
   =========================== */

.floating-contact-btn {
    position: fixed;
    right: 30px;
    bottom: 110px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-light));
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-contact-btn span {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.5);
    animation: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    z-index: 10000;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-white);
    color: var(--primary-color);
}

.modal-body {
    padding: 2.5rem;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

#quickContactForm {
    padding: 0;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.footer-section p {
    color: #aaa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(212, 165, 116, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-color: transparent;
    transform: translateY(-3px);
    color: var(--bg-white);
}

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

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .hero {
        gap: 30px;
        min-height: 650px;
    }

    .hero-form-card {
        max-width: 400px;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .gallery-hero {
        grid-column: 1 / -1;
        height: 300px;
    }

    .urgency-sidebar {
        width: 380px;
        right: -380px;
    }

    .floating-urgency-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1rem;
    }

    .floating-contact-btn {
        bottom: 95px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
    }

    .modal-content {
        width: 95%;
        max-width: calc(100% - 20px);
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 60, 114, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-form-card {
        max-width: 100%;
        flex: 1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-grid,
    .location-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .urgency-sidebar {
        width: 100%;
        right: -100%;
        max-width: 100%;
        border-radius: 0;
    }

    .urgency-content {
        padding: 3rem 1.5rem 2rem;
    }

    .urgency-content h2 {
        font-size: 1.6rem;
    }

    .floating-urgency-btn {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

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

    .gallery-hero {
        grid-column: 1;
        height: 300px;
    }

    .gallery-large {
        height: 300px;
    }

    .hero {
        min-height: 400px;
        margin-top: 60px;
    }

    .highlights-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .highlight-spec-card {
        padding: 2rem;
    }

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

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

    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .pricing-btn,
    .pricing-btn.featured-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .contact-form-container {
        padding: 0 !important;
    }

    .info-card {
        text-align: center;
        padding: 1.5rem;
    }
}

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

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .hero-content {
        animation: fadeInUp 0.8s ease-out;
    }

    .hero-form-card {
        animation: fadeInUp 0.8s ease-out 0.1s both;
        max-width: 100%;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 8px;
    }

    .phone-input-group select,
    .phone-input-group input {
        width: 100% !important;
    }

    .section-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding-bottom: 0.8rem;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .about,
    .amenities,
    .pricing,
    .location,
    .contact,
    .gallery {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }

    .amenities-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-hero,
    .gallery-large {
        height: 200px;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-overlay p {
        font-size: 0.85rem;
    }

    .highlights-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-spec-card {
        padding: 1.5rem;
    }

    .spec-value {
        font-size: 1.8rem;
    }

    .spec-icon {
        font-size: 2.2rem;
    }

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

    .connectivity-box {
        padding: 1.5rem;
    }

    .connectivity-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .connectivity-box li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

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

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-number {
        font-size: 2.2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
        min-height: 44px;
        width: 100%;
        max-width: 100%;
    }

    .pricing-btn,
    .pricing-btn.featured-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-height: 44px;
        width: 100%;
    }

    .pricing-card {
        padding: 1.2rem;
    }

    .amenity-card {
        padding: 1.2rem;
        text-align: center;
    }

    .amenity-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .info-card {
        padding: 1.2rem;
        text-align: center;
    }

    .highlight-list li {
        padding: 0.5rem 0 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .connectivity-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
    }

    .connectivity-icon {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .feature-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }

    .about-content,
    .location-content {
        padding: 0 0.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
        text-align: left;
    }

    .key-features {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .key-features h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }

    .zcwf_lblLeft .zcwf_col_fld input[type="text"],
    .zcwf_lblLeft .zcwf_col_fld input[type="password"],
    .zcwf_lblLeft .zcwf_col_fld textarea,
    .zcwf_lblLeft .zcwf_col_fld_slt {
        width: 100% !important;
        font-size: 16px !important;
    }

    .zcwf_lblLeft .zcwf_col_lab {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }

    .zcwf_lblLeft .zcwf_col_fld {
        width: 100% !important;
    }
}
