/* ============================================================
   VARAD SEEDS — Main Stylesheet (style.css)
   Shared styles loaded on ALL pages
   ============================================================ */

/* ==================== CSS RESET & VARIABLES ==================== */
:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --light-green: #81c784;
    --dark-green: #1b5e20;
    --accent-orange: #ff9800;
    --accent-yellow: #ffc107;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-cream: #fafaf5;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ==================== SECTION TITLE (Reused everywhere) ==================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-green), var(--accent-orange));
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(46, 125, 50, 0.5);
}

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

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

/* ==================== PRELOADER ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    position: relative;
    width: 160px;
    height: 160px;
    display: grid;
    place-items: center;
}

.loader-logo-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
    background:
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 50% 6% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 72% 12% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 88% 28% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 94% 50% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 88% 72% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 72% 88% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 50% 94% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 28% 88% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 12% 72% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 6% 50% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 12% 28% / 12px 12px no-repeat,
        radial-gradient(circle, var(--primary-green) 5px, transparent 6px) 28% 12% / 12px 12px no-repeat;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--dark-green);
    color: var(--white);
      padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--accent-yellow);
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--accent-yellow);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main {
    display: flex;
    align-items: center;
    padding: 8px 0;
    justify-content: flex-start;
    gap: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-right: 60px;
}

.logo-icon {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    height: 55px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logo-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #c62828;
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text span {
    display: none;
}
.nav-menu {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

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

.nav-menu > li > a {
    display: block;
    padding: 12px 20px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    border-radius: 5px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary-green);
    background: rgba(46, 125, 50, 0.1);
}

.nav-menu > li > a i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

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

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown li a:hover {
    background: rgba(46, 125, 50, 0.1);
    color: var(--primary-green);
    padding-left: 25px;
}

.dropdown li a i {
    margin-right: 10px;
    color: var(--secondary-green);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 800px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 15px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

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

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.mega-menu-col h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-green);
}

.mega-menu-col ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--text-light);
    transition: var(--transition);
}

.mega-menu-col ul li a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.mega-menu-col ul li a i {
    color: var(--accent-orange);
    font-size: 0.8rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: 2px solid #eee;
    border-radius: 25px;
    width: 200px;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--secondary-green);
    outline: none;
    width: 250px;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--dark-green);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.why-choose .section-title h2 {
    color: var(--white);
}

.why-choose .section-title h2::after {
    background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange));
}

.why-choose .section-title p {
    color: rgba(255,255,255,0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

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

.why-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.why-card .icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: var(--bg-cream);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: var(--light-green);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--secondary-green);
    margin-bottom: 25px;
}

.testimonial-card p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-top: 15px;
}

.testimonial-rating i {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

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

.testimonial-nav button {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-green);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary-green);
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 30 50 50 T100 50 V100 H0Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    background-size: 200px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    max-width: 500px;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 18px 40px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

/* ==================== BROCHURE SECTION ==================== */
.brochure {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-cream));
}

.brochure-wrapper {
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow);
    padding: 25px;
    overflow: hidden;
}

.brochure-frame {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #eee;
    background: var(--bg-light);
}

.brochure-frame iframe {
    width: 100%;
    height: 75vh;
    border: 0;
    display: block;
}

.brochure-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 100px 0;
    background: var(--bg-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 50px;
    color: var(--white);
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item .icon i {
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    margin-bottom: 15px;
}

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

.contact-social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.contact-form {
    padding: 50px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

/* ==================== TEAM SECTION ==================== */
.team {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.team-member {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.team-member img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    margin: 10px 0 5px;
}

.team-member .designation {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

.team-member p {
    font-size: 14px;
    margin-top: 10px;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--dark-green);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text h1 {
    color: var(--white);
}

.footer-brand .logo-text span {
    color: rgba(255,255,255,0.7);
}

.footer-brand p {
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
}

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

.footer-links ul li a {
    opacity: 0.9;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--secondary-green);
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
}

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

.footer-contact-item i {
    color: var(--accent-yellow);
    margin-top: 5px;
}

.footer-contact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    opacity: 0.8;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    left: 20px;
    bottom: 30px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-green);
    transform: translateY(-5px);
}

/* ==================== MODAL (shared base) ==================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* ==================== RESPONSIVE — SHARED ==================== */
@media (max-width: 1200px) {
    .mega-menu { width: 95%; }
}

@media (max-width: 992px) {
    .header-main { flex-wrap: wrap; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-menu.active { display: flex; }

    .nav-menu > li > a {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .dropdown,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
    }

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

    .mobile-toggle { display: flex; }

    .header-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .search-box { flex: 1; }
    .search-box input { width: 100%; }
    .mobile-toggle { margin-left: auto; }

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

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
    }

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

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

@media (max-width: 768px) {
    .brochure-frame iframe { height: 60vh; }

    .top-bar .container { justify-content: center; }
    .top-bar-left { display: none; }

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

    .newsletter-form { flex-direction: column; }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social { justify-content: center; }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

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