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

:root {
    --primary-color: #4a7c3c;
    --secondary-color: #5f8c54;
    --accent-color: #8b6f47;
    --text-dark: #2c3e50;
    --text-light: #495057;
    --bg-light: #fcf3ea;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

/* Contact Top Bar */
.contact-top-bar {
    background: linear-gradient(135deg, #4a7c3c, #5f8c54);
    padding: 10px 20px;
    text-align: center;
}

.contact-top-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-top-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-top-bar a:hover {
    opacity: 0.85;
}

.contact-top-bar .top-bar-icon {
    font-size: 16px;
}

.site-visit-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.top-bar-separator {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    margin: 0 5px;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; text-shadow: 0 0 8px rgba(255,255,255,0.4); }
}

@media (max-width: 768px) {
    .contact-top-bar {
        padding: 8px 15px;
    }

    .contact-top-bar .container {
        flex-direction: column;
        gap: 5px;
    }

    .contact-top-bar a {
        font-size: 18px;
        font-weight: 700;
    }

    .site-visit-text {
        font-size: 11px;
    }

    .top-bar-separator {
        display: none;
    }
}

.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
}

.logo .logo-img {
    height: 83px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* Hidden h1 for SEO - screen reader only */
.logo .logo-text-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.logo h1,
.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

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

.nav-list>li {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

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

.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    min-width: 420px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    list-style: none;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 20px;
}

.header-contact .phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-contact .phone-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 66vh;
    min-height: 550px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: var(--white);
    animation: fadeInUp 1s ease 0.4s both;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff7629 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

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

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.hero-dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 8px;
    border-color: var(--white);
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 300;
}

.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.location-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.location-image {
    height: 200px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.location-info {
    padding: 20px;
}

.location-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-info p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.location-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: var(--primary-color);
}

.plots {
    background: var(--bg-light);
}



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

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    position: relative;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 30px;
}

.contact-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-column h3 {
    margin-bottom: 20px;
    color: #dcedc8;
}

.footer-column p {
    line-height: 1.8;
    color: #e0e0e0;
}

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

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

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

.footer-contact {
    margin-bottom: 15px;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #dcedc8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.footer-phone span {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #b2bec3;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* =========================================
   Vaddeswaram Page Styles (Merged)
   ========================================= */

body.vpage {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    /* var(--text-dark) hardcoded or ensure vars exist */
}

/* Re-define vars for vpage scope if needed, or rely on root. 
   Vaddeswaram used specific colors. We'll add them to :root or scope them.
*/
body.vpage {
    --primary-green: #4a7c3c;
    --secondary-green: #5f8c54;
    --accent-brown: #8b6f47;
    --light-beige: #fcf3ea;
    --light-gray: #f3f5f8;
    --text-dark: #2c3e50;
    --text-light: #495057;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.vpage .header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
}

.vpage .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.vpage .logo h2 {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.vpage .nav {
    display: flex;
    gap: 30px;
}

.vpage .nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.vpage .nav a:hover {
    color: var(--primary-green);
}

.vpage .mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.vpage .mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.vpage .hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 60px 20px;
    height: auto;
    /* Override style.css fixed height */
    min-height: auto;
}

.vpage .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.vpage .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: auto;
    /* Override */
    transform: none;
    /* Override */
    left: auto;
    top: auto;
}

.vpage .hero-image {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vpage .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vpage .badge-container {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.vpage .badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vpage .hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    color: white;
    /* Ensure visibility */
}

.vpage .hero-subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
    font-weight: 400;
    color: white;
    /* Ensure visibility */
    max-width: none;
    animation: none;
}

.vpage .hero-location {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 600;
}

.vpage .cta-btn {
    background: var(--white);
    color: var(--primary-green);
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vpage .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.vpage .section {
    padding: 80px 0;
}

.vpage .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.vpage .section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.vpage .section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.vpage .highlights {
    background: var(--light-gray);
}

.vpage .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vpage .highlight-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.vpage .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.vpage .highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.vpage .highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.vpage .highlight-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.vpage .location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.vpage .location-card {
    background: var(--light-beige);
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
    overflow: visible;
    /* Override style.css hidden */
    box-shadow: none;
    /* Reset if needed */
}

.vpage .location-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.vpage .location-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-green);
    opacity: 0.2;
    margin-bottom: 10px;
}

.vpage .location-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.vpage .location-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.vpage .amenities {
    background: var(--light-gray);
}

.vpage .amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.vpage .amenity-item {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

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

.vpage .amenity-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.vpage .amenity-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.vpage .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.vpage .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 280px;
    box-shadow: var(--shadow-md);
}

.vpage .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.vpage .contact-section {
    background: var(--light-beige);
}

.vpage .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.vpage .contact-info h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.vpage .contact-info>p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.vpage .info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vpage .info-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.vpage .info-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
    margin-top: 5px;
}

.vpage .info-item strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.vpage .info-item p {
    color: var(--text-light);
}

.vpage .contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.vpage .contact-form h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.vpage .form-group {
    margin-bottom: 20px;
}

.vpage .form-group input,
.vpage .form-group select,
.vpage .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.vpage .form-group input:focus,
.vpage .form-group select:focus,
.vpage .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.vpage .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.vpage .checkbox-group label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.vpage .checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.vpage .checkbox-group span {
    font-size: 14px;
    color: var(--text-light);
}

.vpage .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vpage .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.vpage .floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.vpage .floating-cta.visible {
    display: block;
}

.vpage .floating-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.vpage .floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Media Queries for vpage */
@media (max-width: 1024px) {
    .vpage .container {
        padding: 0 30px;
    }

    .vpage .hero {
        height: auto;
        min-height: 550px;
    }

    .vpage .hero h1 {
        font-size: 44px;
    }

    .vpage .hero-subtitle {
        font-size: 18px;
    }

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

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

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

@media (max-width: 968px) {
    .vpage .header {
        position: relative;
    }

    .vpage .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        z-index: 999;
    }

    .vpage .nav.active {
        display: flex;
    }

    .vpage .mobile-menu-btn {
        display: flex;
    }

    .vpage .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .vpage .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .vpage .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .vpage .section-header h2 {
        font-size: 36px;
    }

    .vpage .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

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

    .vpage .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .vpage .container {
        padding: 0 20px;
    }

    .vpage .logo h2 {
        font-size: 20px;
    }

    .vpage .hero {
        padding: 40px 20px;
        height: auto;
    }

    .vpage .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vpage .hero-content {
        text-align: center;
    }

    .vpage .badge-container {
        justify-content: center;
    }

    .vpage .hero-location {
        justify-content: center;
    }

    .vpage .hero h1 {
        font-size: 36px;
    }

    .vpage .hero-subtitle {
        font-size: 16px;
    }

    .vpage .badge {
        font-size: 13px;
        padding: 9px 18px;
    }

    .vpage .cta-btn {
        padding: 14px 35px;
        font-size: 16px;
    }

    .vpage .section {
        padding: 50px 0;
    }

    .vpage .section-header {
        margin-bottom: 45px;
    }

    .vpage .section-header h2 {
        font-size: 32px;
    }

    .vpage .section-header p {
        font-size: 16px;
    }

    .vpage .highlights-grid,
    .vpage .location-grid,
    .vpage .gallery-grid {
        grid-template-columns: 1fr;
    }

    .vpage .highlight-card {
        padding: 35px 25px;
    }

    .vpage .location-card {
        padding: 30px 25px;
    }

    .vpage .amenities-grid {
        grid-template-columns: 1fr;
    }

    .vpage .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vpage .contact-info h2 {
        font-size: 28px;
    }

    .vpage .contact-info>p {
        font-size: 16px;
    }

    .vpage .contact-form-wrapper {
        padding: 30px 25px;
    }

    .vpage .contact-form h3 {
        font-size: 24px;
    }

    .vpage .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vpage .floating-cta {
        bottom: 10px;
        right: 10px;
    }

    .vpage .floating-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .vpage .hero {
        padding: 30px 20px;
    }
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

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

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        height: 60.5vh;
        min-height: 495px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        margin-top: 10px;
        display: none;
        border-left: 3px solid var(--primary-color);
        margin-left: 15px;
        min-width: auto;
        grid-template-columns: 1fr 1fr;
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: grid;
    }

    /* Fix: Prevent desktop hover styles from distorting mobile layout */
    .nav-item-dropdown:hover .dropdown-menu {
        transform: none;
        box-shadow: none;
        position: static;
    }

    .dropdown-arrow {
        float: right;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-contact .phone-text {
        display: none;
    }

    .hero {
        height: 55vh;
        min-height: 495px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hide Buddha image in About section on mobile */
    .about-image {
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo .logo-img {
        height: 68px;
    }

    .hero {
        height: 495px;
        min-height: 495px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        max-width: 90%;
    }

    .btn {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }

    .hero-dots {
        bottom: 25px;
    }

    .section-title {
        font-size: 28px;
    }

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

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

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

    .testimonials-slider {
        min-height: 300px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 440px;
        min-height: 440px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .hero-nav {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-dot.active {
        width: 30px;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .location-info h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-icon {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-content p {
        font-size: 15px;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 18px;
    }

    .hero {
        height: 418px;
        min-height: 418px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .dropdown-menu {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 15px;
    }

    .location-image {
        height: 180px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .footer-content {
        gap: 25px;
    }
}
