/* ========================================
   MAHALAXMI AGARBATTI - Main Stylesheet
   ======================================== */

/* CSS Custom Properties */
:root {
    --saffron: #E8751A;
    --saffron-light: #f5a623;
    --deep-red: #C41E3A;
    --gold: #D4A017;
    --warm-cream: #FFF8F0;
    --off-white: #FEFCF9;
    --earth-brown: #2C1810;
    --dark-brown: #1A0A00;
    --temple-green: #25D366;
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    --smoke-grey: #6B5D50;
    --light-saffron: #FDEBD0;
    --blue-accent: #1565C0;

    --font-marathi: 'Noto Sans Devanagari', sans-serif;
    --font-english: 'Poppins', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-card: 0 4px 20px rgba(92, 51, 23, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    --nav-height: 70px;
    --container-max: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

body {
    font-family: var(--font-marathi);
    color: var(--earth-brown);
    background-color: var(--off-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--saffron);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--deep-red);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Base */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background-color: var(--warm-cream);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--smoke-grey);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 2px;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--saffron), transparent);
}

.divider-icon {
    color: var(--saffron);
    font-size: 1.2rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-marathi);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn i {
    font-size: 1.1em;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
    border-color: var(--whatsapp-green);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--earth-brown);
    transform: translateY(-2px);
}

.btn-saffron {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: #fff;
    border-color: var(--saffron);
}

.btn-saffron:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 117, 26, 0.4);
    color: #fff;
}

.btn-product {
    background-color: var(--whatsapp-green);
    color: #fff;
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
}

.btn-product:hover {
    background-color: var(--whatsapp-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 10, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    height: 56px;
    width: auto;
    border-radius: 4px;
}

/* Logo on dark backgrounds - blend black bg seamlessly */
.navbar .nav-logo img,
.hero-logo,
.footer-logo {
    mix-blend-mode: screen;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background: rgba(232, 117, 26, 0.2);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.nav-cta-mobile {
    display: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-overlay {
    display: none;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark-brown);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/gallery/shop-front-full.webp') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 10, 0, 0.6) 0%,
        rgba(26, 10, 0, 0.4) 40%,
        rgba(26, 10, 0, 0.7) 100%
    );
    z-index: 2;
}

.smoke-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    padding: 2rem 1rem;
}

.hero-logo {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    border-radius: 8px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--light-saffron);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
}

.scroll-arrow {
    display: block;
    width: 24px;
    height: 24px;
    border-right: 3px solid rgba(255, 255, 255, 0.6);
    border-bottom: 3px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
}

/* ========== PRODUCT SLIDER ========== */
.products-section {
    background-color: var(--off-white);
}

.product-swiper {
    padding-bottom: 3rem;
}

.product-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-saffron);
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--earth-brown);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--smoke-grey);
    margin-bottom: 1rem;
    flex: 1;
}

/* Swiper Overrides */
.swiper-button-prev,
.swiper-button-next {
    color: var(--saffron);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--saffron);
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--saffron);
}

/* ========== QUALITY SECTION ========== */
.quality-section {
    background-color: var(--warm-cream);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.quality-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--saffron);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.quality-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--light-saffron), var(--warm-cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--saffron);
}

.quality-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--earth-brown);
}

.quality-card p {
    font-size: 0.95rem;
    color: var(--smoke-grey);
    line-height: 1.6;
}

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== GALLERY ========== */
.gallery-section {
    background-color: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 10, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
    padding: 0.5rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* ========== CATALOGUE ========== */
.catalogue-section {
    background: var(--warm-cream);
}

.catalogue-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.catalogue-info h2 {
    font-size: 2rem;
    color: var(--earth-brown);
    margin-bottom: 1rem;
}

.catalogue-info h2 i {
    color: var(--saffron);
    margin-right: 0.5rem;
}

.catalogue-info > p {
    font-size: 1.05rem;
    color: var(--smoke-grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.catalogue-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.catalogue-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.catalogue-feature i {
    color: var(--saffron);
    font-size: 1.1rem;
}

.catalogue-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.catalogue-form h3,
.contact-form h3 {
    font-size: 1.5rem;
    color: var(--earth-brown);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: var(--earth-brown);
}

.required {
    color: var(--deep-red);
}

.optional {
    color: var(--smoke-grey);
    font-weight: 400;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0d5c9;
    border-radius: var(--radius-sm);
    font-family: var(--font-marathi);
    font-size: 1rem;
    color: var(--earth-brown);
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(232, 117, 26, 0.15);
}

.form-group input.input-error,
.form-group textarea.input-error {
    border-color: var(--deep-red);
}

.phone-input {
    display: flex;
    align-items: stretch;
}

.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: var(--light-saffron);
    border: 2px solid #e0d5c9;
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: 600;
    color: var(--earth-brown);
    font-size: 0.95rem;
}

.phone-input input {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.error-message {
    display: none;
    color: var(--deep-red);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 1.5rem;
    margin-top: 1rem;
    background: #e8f5e9;
    border-radius: var(--radius-sm);
    color: #2e7d32;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-success p {
    font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background-color: var(--off-white);
}

.testimonial-swiper {
    padding-bottom: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--light-saffron);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 0.95rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-brown);
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--light-saffron);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--earth-brown);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--smoke-grey);
}

/* ========== SHOP & MAP ========== */
.shop-section {
    background-color: var(--warm-cream);
}

.shop-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.shop-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.shop-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.shop-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-photo:hover img {
    transform: scale(1.05);
}

.map-landmark {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--deep-red);
    font-size: 1.05rem;
}

.map-landmark i {
    font-size: 1.25rem;
}

/* ========== OFFERS ========== */
.offers-section {
    background: var(--off-white);
    position: relative;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.offer-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--light-saffron);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--saffron);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--saffron), var(--deep-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #fff;
}

.offer-badge {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--deep-red);
    color: #fff;
    padding: 0.25rem 2.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--earth-brown);
    margin-bottom: 0.5rem;
}

.offer-highlight {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--saffron);
    margin-bottom: 0.75rem;
}

.offer-card > p:last-of-type {
    color: var(--smoke-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact-section {
    background-color: var(--warm-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--earth-brown);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-item > i {
    width: 40px;
    height: 40px;
    background: var(--light-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--saffron);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--earth-brown);
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: var(--smoke-grey);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--saffron);
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ========== SOCIAL SECTION ========== */
.social-section {
    background: linear-gradient(135deg, var(--dark-brown), #2c1507);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.social-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.social-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-whatsapp {
    background: var(--whatsapp-green);
}

.social-whatsapp:hover {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-brown);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--saffron);
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--saffron);
    border-radius: 2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--saffron);
    padding-left: 0.5rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.footer-contact p i {
    color: var(--saffron);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--saffron);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.back-to-top {
    width: 40px;
    height: 40px;
    background: var(--saffron);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--deep-red);
    color: #fff;
    transform: translateY(-3px);
}

/* ========== FOCUS STYLES ========== */
*:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--saffron);
    outline-offset: 2px;
}
