/* Krishi Vishwa Housing - Optimized Styles (Used by FAQ, Terms & Index pages) */

/* 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: 80px;
}

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

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 5px;
    flex-shrink: 0;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

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

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

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    list-style: none;
    min-width: 200px;
    padding: 10px 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #2c3e2c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 10px;
    margin: 0 10px;
}

.dropdown-link:hover {
    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 Section - Homepage */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.95) 0%, rgba(45, 95, 61, 0.9) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero::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%);
}

/* Page Header - Other Pages */
.page-header {
    height: 75vh;
    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;
    margin-top: 90px;
    overflow: hidden;
}

.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 - Shared */
.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: 3.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.3;
}

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

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

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

/* CTA Buttons */
.cta-button,
.explore-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #c9a347 0%, #d4af37 100%);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    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;
}

/* 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;
}

/* CTA Section */
.cta-luxury {
    padding: 150px 40px;
    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-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.cta-button {
    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 {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 163, 71, 0.5);
}

/* Index Page Specific Styles */

/* Kannada Font Override for Hero */
.hero-content h1 {
    font-family: 'Noto Sans Kannada', 'Playfair Display', serif;
}

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

.about-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 10px;
}

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

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

/* Krishi Isiri Preview */
.krishi-isiri-preview {
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.krishi-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

/* Gallery Preview Section */
.gallery-preview {
    padding: 60px 40px;
    background: #ffffff;
}

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

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

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #a8d5ba 0%, #c3e6cb 100%);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 77, 46, 0.95) 0%, rgba(26, 77, 46, 0.7) 70%, transparent 100%);
    color: white;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}

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

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

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

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

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #a8d5ba 0%, #8fbf9f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

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

/* Footer iframe */
.footer {
    padding: 0;
    margin: 0;
}

.footer iframe {
    display: block;
    width: 100%;
    border: none;
}

/* About Page Specific Styles */

/* About Section */
.about-luxury {
    padding: 120px 40px;
    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 {
    padding: 100px 40px;
    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;
}

.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;
    text-align: center;
    position: relative;
}

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

/* Mission Vision Section */
.mission-vision-luxury {
    padding: 120px 40px;
    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;
}

.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;
    text-align: center;
}

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

/* Gallery Section - About Page */
.gallery-luxury {
    padding: 120px 40px;
    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-luxury .gallery-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    padding: 0 20px;
}

.gallery-luxury .gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #a8d5ba 0%, #8fbf9f 100%);
    width: 100%;
    height: auto;
}

.gallery-luxury .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-luxury .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

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

.gallery-luxury .gallery-item img,
.gallery-luxury .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Board Meetings Section */
.board-meetings-luxury {
    padding: 120px 40px;
    background: #ffffff;
}

/* Contact Page Specific Styles */

/* Contact Main Section */
.contact-main {
    padding: 120px 40px;
    background: #ffffff;
    position: relative;
}

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

.contact-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 100px;
    position: relative;
}

.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;
    line-height: 2;
    color: #5a5a5a;
    font-weight: 300;
}

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

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3d 100%);
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: white;
}

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

.contact-info-card h3 {
    font-size: 2.5rem;
    color: #c9a347;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.contact-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.contact-item:hover {
    padding-left: 15px;
    border-bottom-color: rgba(201, 163, 71, 0.3);
}

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

.contact-item h4 {
    font-size: 1.1rem;
    color: #c9a347;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Contact Form */
.contact-form-card {
    background: white;
    padding: 60px 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    color: #1a4d2e;
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e8e8e8;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.4s ease;
    font-family: 'Georgia', serif;
    background: #fafafa;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c9a347;
    background: white;
    box-shadow: 0 8px 25px rgba(201, 163, 71, 0.15);
    transform: translateY(-2px);
}

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

.submit-button {
    width: 100%;
    padding: 22px 50px;
    background: linear-gradient(135deg, #c9a347 0%, #d4af37 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    border-radius: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(201, 163, 71, 0.3);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', serif;
    font-weight: 600;
    margin-top: 20px;
}

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

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.alert {
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    display: none;
    animation: slideDown 0.5s ease-out;
}

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

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

.alert.show {
    display: block;
}

.alert-success {
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.1), rgba(26, 77, 46, 0.05));
    border: 2px solid #1a4d2e;
    color: #1a4d2e;
}

.alert-error {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    border: 2px solid #dc3545;
    color: #dc3545;
}

/* CTA Floating Section */
.cta-floating-section {
    padding: 150px 40px;
    background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.cta-floating-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 163, 71, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatContact 20s ease-in-out infinite;
}

@keyframes floatContact {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

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

.cta-title {
    text-align: center;
    margin-bottom: 80px;
}

.cta-title h2 {
    font-size: 4rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.cta-title p {
    font-size: 1.4rem;
    color: #5a5a5a;
    font-weight: 300;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cta-card {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c9a347, #d4af37);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.cta-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 163, 71, 0.2);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(201, 163, 71, 0.1), rgba(201, 163, 71, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #c9a347;
    transition: all 0.4s ease;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #c9a347, #d4af37);
    color: white;
}

.cta-card h3 {
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.cta-card .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #c9a347;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 25px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    border: 2px solid #c9a347;
    font-weight: 600;
}

.cta-card .cta-button:hover {
    background: linear-gradient(135deg, #c9a347 0%, #d4af37 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(201, 163, 71, 0.3);
}

/* Premium Location Section */
.location-premium {
    padding: 120px 40px;
    background: linear-gradient(135deg, #1a4d2e 0%, #2d5f3d 100%);
    position: relative;
    overflow: hidden;
}

.location-premium::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>');
}

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

.location-header {
    text-align: center;
    margin-bottom: 80px;
    color: white;
}

.location-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #c9a347;
}

.location-header p {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

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

.location-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

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

.location-card h3 {
    font-size: 2rem;
    color: #c9a347;
    margin-bottom: 25px;
    font-weight: 400;
}

.location-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

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

    /* Index page 1024px responsive */
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
    }

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

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

    .about-image {
        max-width: 400px;
        height: 400px;
    }

    /* About page 1024px responsive */
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact page 1024px responsive */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-cards-grid {
        grid-template-columns: 1fr;
    }

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

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

    .nav-container {
        height: 70px;
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 1.1rem;
        gap: 10px;
    }

    .logo-placeholder {
        width: 45px;
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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: 30px 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 12px 0;
    }

    .nav-link {
        font-size: 1rem;
    }

    .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 {
        margin-top: 70px;
        min-height: 500px;
        padding: 40px 20px;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

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

    .hero-subtext {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .container {
        padding: 0 20px;
    }

    .terms-content h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-button,
    .explore-btn {
        padding: 15px 35px;
        font-size: 0.95rem;
    }

    /* Index page tablet responsive */
    .about {
        padding: 40px 20px;
    }

    .about-content {
        padding: 5px;
    }

    .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .about-content p {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .about-image {
        max-width: 100%;
        height: 350px;
    }

    .krishi-isiri-preview {
        padding: 40px 20px;
    }

    .krishi-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .krishi-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .gallery-preview {
        padding: 40px 20px;
    }

    .gallery-preview h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .gallery-preview p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

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

    .testimonials {
        padding: 40px 20px;
    }

    .testimonials h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .testimonials-grid {
        margin-top: 35px;
    }

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

    /* About page 768px responsive */
    .about-intro h2,
    .gallery-header h2 {
        font-size: 2.5rem;
    }

    .partner-content {
        padding: 50px 30px;
    }

    .partner-content h2 {
        font-size: 2rem;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .gallery-luxury .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-luxury .gallery-item {
        aspect-ratio: 16/10;
    }

    /* Contact page 768px responsive */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-intro h2 {
        font-size: 2.5rem;
    }

    .contact-intro p {
        font-size: 1.1rem;
    }

    .contact-main {
        padding: 80px 20px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 40px 30px;
    }

    .contact-info-card h3,
    .contact-form-card h3 {
        font-size: 2rem;
    }

    .cta-title h2 {
        font-size: 2.5rem;
    }

    .cta-title p {
        font-size: 1.1rem;
    }

    .cta-floating-section {
        padding: 80px 20px;
    }

    .location-premium {
        padding: 80px 20px;
    }

    .location-header h2 {
        font-size: 2.5rem;
    }

    .location-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    .logo-placeholder {
        width: 40px;
        height: 40px;
    }

    .hero {
        margin-top: 65px;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .hero-subtext {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .faq-section,
    .terms-section,
    .cta-luxury {
        padding: 80px 15px;
    }

    .faq-question {
        padding: 25px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 25px;
    }

    .cta-button,
    .explore-btn {
        padding: 18px 40px;
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* Index page responsive styles */
    .about {
        padding: 35px 15px;
    }

    .about-content h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .about-content p {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .about-image {
        height: 300px;
    }

    .krishi-isiri-preview {
        padding: 35px 15px;
    }

    .krishi-content h2 {
        font-size: 1.9rem;
        margin-bottom: 12px;
    }

    .krishi-content p {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }

    .gallery-preview {
        padding: 35px 15px;
    }

    .gallery-preview h2 {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .gallery-preview p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .gallery-caption {
        font-size: 1rem;
        padding: 15px;
    }

    .testimonials {
        padding: 35px 15px;
    }

    .testimonials h2 {
        font-size: 1.9rem;
        margin-bottom: 10px;
    }

    .testimonials-grid {
        gap: 25px;
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

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

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .decorative-line {
        margin: 12px auto;
    }

    /* About page 480px responsive */
    .about-luxury,
    .partner-luxury,
    .mission-vision-luxury,
    .gallery-luxury,
    .board-meetings-luxury {
        padding: 80px 20px;
    }

    .partner-content {
        padding: 40px 25px;
    }

    /* Contact page 480px responsive */
    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }

    .cta-title h2 {
        font-size: 2rem;
    }

    .cta-card {
        padding: 40px 30px;
    }
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid #c9a347;
    outline-offset: 2px;
}

/* Mobile Navigation Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        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: 20px 0;
        gap: 0;
        align-items: stretch;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 15px 20px;
        border-radius: 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        margin-top: 0;
        box-shadow: none;
        background: rgba(248, 253, 248, 0.95);
        border-radius: 0;
        transition: all 0.3s ease;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        padding: 5px 0;
    }

    .dropdown-link {
        padding: 12px 30px;
        margin: 0;
        border-radius: 0;
        font-size: 0.85rem;
    }

    .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);
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hamburger,
    .cta-button {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .page-header {
        height: auto;
        background: white;
        color: black;
    }
}