/* Krishi Vishwa Housing - Elegant Website Styles */

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

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fafafa;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 40px rgba(0,0,0,0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a4d2e;
    letter-spacing: 1px;
}

.logo-placeholder {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c9a347 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 163, 71, 0.3);
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 163, 71, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: #2c3e2c;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #c9a347;
    background: rgba(201, 163, 71, 0.08);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #1a4d2e;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero and Header Styles */
.hero, .page-header {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(45, 95, 61, 0.9) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%231a4d2e"/></svg>');
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-header {
    height: 75vh;
    margin-top: 90px;
}

.hero::before, .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 163, 71, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: #c9a347;
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a347, transparent);
    margin: 30px auto;
}

/* Button Styles */
.cta-button, .explore-btn {
    display: inline-block;
    padding: 22px 60px;
    background: linear-gradient(135deg, #c9a347 0%, #d4af37 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(201, 163, 71, 0.4);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
}

.cta-button:hover, .explore-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 163, 71, 0.5);
}

.explore-btn {
    padding: 15px 40px;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

/* Statistics Section */
.stats-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    color: #c9a347;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.stat-item p {
    font-size: 1.3rem;
    color: #1a4d2e;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 120px 40px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-content {
    padding: 40px;
}

.about-content h2 {
    font-size: 3rem;
    color: #1a4d2e;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #5a5a5a;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Luxury Section Styles */
.about-luxury, .partner-luxury, .mission-vision-luxury, .gallery-luxury, .board-meetings-luxury, .cta-luxury {
    padding: 120px 40px;
}

.about-luxury {
    background: #ffffff;
    position: relative;
}

.about-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 163, 71, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.about-intro {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 100px;
}

.about-intro h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.about-intro p {
    font-size: 1.3rem;
    line-height: 2;
    color: #5a5a5a;
    font-weight: 300;
}

/* Partner Section */
.partner-luxury {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    position: relative;
}

.partner-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 80px 70px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.partner-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 163, 71, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.partner-content h2 {
    font-size: 3rem;
    color: #c9a347;
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 3px;
    position: relative;
}

.partner-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #3a5f3a;
    font-weight: 300;
    position: relative;
}

/* Mission Vision Section */
.mission-vision-luxury {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3d 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9a347, #d4af37);
    border-radius: 30px 30px 0 0;
}

.mission-card:hover, .vision-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.mission-card h3, .vision-card h3 {
    font-size: 2.5rem;
    color: #c9a347;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.mission-card p, .vision-card p {
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Gallery Styles */
.gallery-luxury, .gallery {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.gallery-header p {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 300;
    font-style: italic;
}

.gallery-grid, .gallery-preview .gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 163, 71, 0.2), rgba(26, 77, 46, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

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

.gallery-item img,
.image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #a8d5ba 0%, #8fbf9f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    padding: 20px;
}

/* Gallery Preview (Homepage) */
.gallery-preview {
    padding: 120px 40px;
    background: #ffffff;
}

.gallery-preview .container {
    text-align: center;
}

.gallery-preview h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.gallery-preview p {
    font-size: 1.3rem;
    color: #5a5a5a;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Krishi Isiri Preview */
.krishi-isiri-preview {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.krishi-content h2 {
    font-size: 3rem;
    color: #1a4d2e;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.krishi-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: #5a5a5a;
    margin-bottom: 30px;
    font-weight: 300;
}

.krishi-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Property Showcase */
.property-showcase, .properties-overview {
    padding: 120px 40px;
    background: #ffffff;
}

.properties-overview {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    text-align: center;
}

.overview-text {
    font-size: 1.4rem;
    line-height: 2;
    color: #3a5f3a;
    max-width: 1000px;
    margin: 0 auto;
    font-weight: 300;
}

.property-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.property-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.property-content {
    padding: 40px;
    text-align: center;
}

.property-content h3 {
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.property-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Testimonials */
.testimonials {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

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

.testimonials h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 25px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    font-size: 1.1rem;
    color: #1a4d2e;
    font-weight: 600;
    margin-bottom: 10px;
}

.stars {
    color: #c9a347;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(45, 95, 61, 0.9) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-luxury {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(45, 95, 61, 0.9) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-luxury::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 163, 71, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, 50px) scale(1.1); }
}

.cta-luxury .cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-luxury .cta-content h2 {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 3px;
}

.cta-luxury .cta-content p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
}

/* Contact Styles */
.contact-main {
    padding: 120px 40px;
    background: #ffffff;
}

.contact-intro {
    text-align: center;
    margin-bottom: 80px;
}

.contact-intro h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 2px;
}

.contact-intro p {
    font-size: 1.3rem;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3, .contact-form h3 {
    font-size: 2.5rem;
    color: #1a4d2e;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

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

.contact-item h4 {
    font-size: 1.3rem;
    color: #c9a347;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #5a5a5a;
    line-height: 1.6;
    font-weight: 300;
}

.contact-item a {
    color: #c9a347;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1a4d2e;
}

/* Form Styles */
.contact-form {
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #1a4d2e;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid rgba(26, 77, 46, 0.1);
    border-radius: 15px;
    background: white;
    color: #1a4d2e;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a347;
    background: rgba(201, 163, 71, 0.05);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(26, 77, 46, 0.5);
}

/* Map Section */
.map-section {
    padding: 120px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
}

/* FAQ Styles */
.faq-section {
    padding: 120px 40px;
    background: #ffffff;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: #1a4d2e;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    color: #c9a347;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 40px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 40px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 15px;
    font-weight: 300;
}

.faq-answer p strong {
    color: #1a4d2e;
    font-weight: 600;
}

/* Terms Section */
.terms-section {
    padding: 120px 40px;
    background: #ffffff;
}

.terms-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-content h2 {
    font-size: 3.5rem;
    color: #1a4d2e;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    text-align: center;
}

.terms-content h3 {
    font-size: 1.8rem;
    color: #c9a347;
    margin: 40px 0 20px;
    font-weight: 500;
    letter-spacing: 1px;
}

.terms-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a5a5a;
    margin-bottom: 20px;
    font-weight: 300;
}

.terms-content p strong {
    color: #1a4d2e;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 80px 40px 40px;
    background: linear-gradient(135deg, #0d2818 0%, #1a4d2e 100%);
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 50px;
}

.footer h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #c9a347;
    font-weight: 300;
    letter-spacing: 2px;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-form input {
    padding: 18px 25px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-form input:focus {
    outline: none;
    border-color: #c9a347;
    background: rgba(255,255,255,0.08);
}

.footer-form button {
    padding: 18px;
    background: linear-gradient(135deg, #c9a347 0%, #d4af37 100%);
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 163, 71, 0.4);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    margin-top: 50px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .about, .krishi-isiri-preview {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 40px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-intro h2,
    .gallery-header h2,
    .contact-intro h2,
    .terms-content h2 {
        font-size: 2.5rem;
    }
    
    .partner-content {
        padding: 50px 30px;
    }
    
    .partner-content h2 {
        font-size: 2rem;
    }
    
    .mission-card, .vision-card {
        padding: 40px 30px;
    }
    
    .cta-luxury .cta-content h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-luxury,
    .partner-luxury,
    .mission-vision-luxury,
    .gallery-luxury,
    .board-meetings-luxury,
    .cta-luxury,
    .contact-main,
    .faq-section,
    .terms-section {
        padding: 80px 15px;
    }
    
    .partner-content {
        padding: 40px 25px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .cta-button, .explore-btn {
        padding: 18px 40px;
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-question {
        padding: 25px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 25px;
    }
}

/* Additional Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

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

/* Smooth Scrolling Enhancement */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
.nav-link:focus,
.cta-button:focus,
.explore-btn:focus,
.footer-form button:focus,
.footer-form input:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #c9a347;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .cta-button,
    .explore-btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .page-header {
        height: auto;
        background: white;
        color: black;
    }
}