/* ============================================
   PRAGVANSH BEVERAGES - Modern Redesign
   Inspired by Bisleri, ClearPani, Nevas, Amber
   ============================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', 'Segoe UI', sans-serif; color: #333; line-height: 1.7; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------- Color Variables ---------- */
:root {
    --primary: #0077B6;
    --primary-dark: #005f8f;
    --primary-light: #00B4D8;
    --accent: #00e5ff;
    --dark: #0a1628;
    --dark-blue: #023e8a;
    --text: #333;
    --text-light: #666;
    --bg-light: #f0f8ff;
    --bg-blue: #e8f4fd;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

/* ---------- Preloader ---------- */
.preloader-wrap { position: fixed; inset: 0; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; flex-direction: column; }
.preloader-wrap .spinner { width: 50px; height: 50px; border: 4px solid var(--bg-blue); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
.preloader-wrap p { margin-top: 15px; font-size: 14px; color: var(--primary); font-weight: 600; letter-spacing: 2px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Top Bar ---------- */
.top-bar { background: var(--dark); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left i { margin-right: 5px; color: var(--primary-light); }
.top-bar-right { display: flex; gap: 12px; }
.top-bar-right a { font-size: 14px; }

/* ---------- Header ---------- */
.main-header { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 999; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo img { height: 50px; width: auto; }
.nav-links { display: flex; gap: 5px; align-items: center; }
.nav-links a { padding: 10px 18px; font-size: 15px; font-weight: 500; color: var(--text); border-radius: 8px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--bg-light); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 220px; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: var(--transition); z-index: 100; }
.nav-links .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .dropdown-menu a { display: block; padding: 10px 20px; font-size: 14px; border-radius: 0; width: 100%; }
.nav-links .dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.nav-cta { background: var(--primary); color: var(--white) !important; font-weight: 600 !important; padding: 10px 24px !important; border-radius: 50px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.nav-toggle span { width: 25px; height: 3px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---------- Hero Section ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; background: linear-gradient(135deg, #023e8a 0%, #0077B6 40%, #00B4D8 100%); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom; background-size: cover; }
.hero::after { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: rgba(0,229,255,0.1); border-radius: 50%; }
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 20px; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.15); color: var(--accent); padding: 6px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; backdrop-filter: blur(5px); }
.hero-content h1 { font-size: 52px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero-content h1 span { color: var(--accent); }
.hero-content p { font-size: 18px; opacity: 0.9; margin-bottom: 35px; max-width: 500px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image img { max-height: 480px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3)); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,182,0.3); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--bg-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-accent { background: var(--accent); color: var(--dark); }
.btn-accent:hover { background: #00c8f0; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,229,255,0.3); }

/* ---------- Section Base ---------- */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title .badge { display: inline-block; background: var(--bg-blue); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; letter-spacing: 1px; margin-bottom: 15px; }
.section-title h2 { font-size: 40px; font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 15px; }
.section-title p { font-size: 17px; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.bg-light { background: var(--bg-light); }
.bg-blue { background: var(--bg-blue); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-dark .section-title h2 { color: var(--white); }
.bg-dark .section-title p { color: rgba(255,255,255,0.7); }

/* ---------- Stats Counter ---------- */
.stats-bar { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item { color: var(--white); }
.stat-item .number { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 5px; }
.stat-item .label { font-size: 14px; opacity: 0.85; font-weight: 500; }

/* ---------- Features Grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { background: var(--white); padding: 40px 25px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card .icon { width: 70px; height: 70px; background: var(--bg-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; color: var(--primary); transition: var(--transition); }
.feature-card:hover .icon { background: var(--primary); color: var(--white); }
.feature-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---------- Products Grid ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .image-box { position: relative; background: linear-gradient(135deg, #e8f4fd, #f0f8ff); padding: 30px; text-align: center; min-height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card .image-box img { max-height: 220px; object-fit: contain; transition: var(--transition); }
.product-card:hover .image-box img { transform: scale(1.05); }
.product-card .price-badge { position: absolute; top: 15px; right: 15px; background: var(--primary); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 16px; font-weight: 700; }
.product-card .info { padding: 25px; }
.product-card .size { display: inline-block; background: var(--bg-blue); color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-card p { font-size: 14px; color: var(--text-light); margin-bottom: 18px; line-height: 1.6; }
.product-card .btn { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }

/* ---------- About Section ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { border-radius: var(--radius-lg); }
.about-image .experience-badge { position: absolute; bottom: 30px; left: 30px; background: var(--primary); color: var(--white); padding: 20px 25px; border-radius: var(--radius); text-align: center; }
.about-image .experience-badge .num { font-size: 36px; font-weight: 800; display: block; }
.about-image .experience-badge .txt { font-size: 13px; opacity: 0.9; }
.about-content .section-title { text-align: left; margin-bottom: 30px; }
.about-content .section-title .badge { margin-bottom: 10px; }
.about-content p { font-size: 16px; color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.about-list { margin: 25px 0 30px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 15px; }
.about-list li .check { width: 24px; height: 24px; background: #e8f5e9; color: #2e7d32; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* ---------- CTA Section ---------- */
.cta-section { position: relative; padding: 80px 0; background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%); overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(0,229,255,0.1); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-content p { font-size: 17px; opacity: 0.85; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial-card { background: var(--white); padding: 35px; border-radius: var(--radius-lg); box-shadow: var(--shadow); position: relative; border: 1px solid rgba(0,0,0,0.04); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 20px; right: 25px; font-size: 80px; color: var(--bg-blue); font-family: Georgia, serif; line-height: 1; }
.testimonial-card .stars { color: #fbbf24; font-size: 14px; margin-bottom: 15px; }
.testimonial-card p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--bg-blue); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: var(--primary); }
.testimonial-card .author-name { font-size: 15px; font-weight: 700; color: var(--dark); }
.testimonial-card .author-role { font-size: 13px; color: var(--text-light); }

/* ---------- Clients Section ---------- */
.clients-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center; opacity: 0.6; }
.clients-grid img { height: 50px; width: auto; filter: grayscale(100%); transition: var(--transition); }
.clients-grid img:hover { filter: grayscale(0%); opacity: 1; }

/* ---------- Contact Section ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info-card { background: var(--dark); color: var(--white); padding: 45px; border-radius: var(--radius-lg); }
.contact-info-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 25px; }
.contact-info-list { margin-bottom: 30px; }
.contact-info-list li { display: flex; gap: 15px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-list li .icon-box { width: 44px; height: 44px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.contact-info-list li h5 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.contact-info-list li p, .contact-info-list li a { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact-info-list li a:hover { color: var(--accent); }
.contact-form-card { background: var(--white); padding: 45px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 25px; color: var(--dark); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: var(--radius); font-size: 15px; font-family: inherit; transition: var(--transition); background: #fafafa; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary); background: var(--white); box-shadow: 0 0 0 3px rgba(0,119,182,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* ---------- Product Detail Page ---------- */
.page-banner { background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary) 100%); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; bottom: -50px; left: 50%; transform: translateX(-50%); width: 120%; height: 100px; background: var(--white); border-radius: 50%; }
.page-banner h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.page-banner .breadcrumb { font-size: 14px; opacity: 0.8; }
.page-banner .breadcrumb a { opacity: 0.8; }
.page-banner .breadcrumb a:hover { opacity: 1; color: var(--accent); }
.page-banner .breadcrumb span { margin: 0 8px; }

.product-detail { padding: 80px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-detail-image { background: linear-gradient(135deg, #e8f4fd, #f0f8ff); border-radius: var(--radius-lg); padding: 50px; text-align: center; position: sticky; top: 100px; }
.product-detail-image img { max-height: 400px; margin: 0 auto; }
.product-detail-content h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 15px; }
.product-detail-content .price-big { display: inline-block; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); padding: 10px 25px; border-radius: 50px; font-size: 24px; font-weight: 800; margin-bottom: 20px; }
.product-detail-content .description { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 25px; }
.product-specs { background: var(--bg-light); padding: 30px; border-radius: var(--radius); margin-bottom: 25px; }
.product-specs h4 { font-size: 18px; font-weight: 700; margin-bottom: 15px; color: var(--dark); }
.product-specs .spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.product-specs .spec-row:last-child { border-bottom: none; }
.product-specs .spec-label { font-size: 14px; color: var(--text-light); }
.product-specs .spec-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.benefits-list { margin-bottom: 25px; }
.benefits-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 15px; }
.benefits-list li i { color: #2e7d32; font-size: 14px; }

/* Sidebar */
.sidebar { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; }
.sidebar h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.sidebar .product-list { }
.sidebar .product-list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 8px; font-size: 14px; font-weight: 500; transition: var(--transition); background: var(--bg-light); }
.sidebar .product-list a:hover, .sidebar .product-list a.active { background: var(--primary); color: var(--white); }
.sidebar .product-list a .price { font-weight: 700; font-size: 13px; }

/* ---------- Footer ---------- */
.main-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col h4 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-col .footer-logo img { height: 50px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-col .contact-item { display: flex; gap: 10px; margin-bottom: 15px; align-items: flex-start; }
.footer-col .contact-item i { color: var(--accent); margin-top: 3px; }
.footer-col .contact-item span { font-size: 14px; }
.footer-social { display: flex; gap: 12px; margin-top: 15px; }
.footer-social a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom a { color: var(--accent); }

/* ---------- WhatsApp Button ---------- */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 999; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 30px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }

/* ---------- Scroll to Top ---------- */
.scroll-top { position: fixed; bottom: 25px; left: 25px; z-index: 999; width: 45px; height: 45px; background: var(--primary); color: var(--white); border: none; border-radius: 50%; display: none; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; box-shadow: 0 4px 15px rgba(0,119,182,0.3); transition: var(--transition); }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.scroll-top.visible { display: flex; }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero-image { display: none; }
    .hero-content h1 { font-size: 40px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-links { display: none; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: var(--shadow-lg); padding: 20px; gap: 5px; z-index: 100; }
    .nav-toggle { display: flex; }
    .hero-content h1 { font-size: 30px; }
    .section-title h2 { font-size: 28px; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .cta-content h2 { font-size: 26px; }
}
