/* CSS Variables */
:root {
    --primary-color: #61070F;
    /* lighter maroon tone */
    --primary-light-color: #9c5e63;
    --secondary-color: #F8F1E1;
    /* very light cream from bg */
    --accent-color: #00CC44;
    /* pure parrot green */
    --accent-light: #99F7BB;
    /* light parrot green shade */
    /* pale green highlight */
    --gold-color: #D4B46A;
    /* softer golden tone */
    --background-light: #FBF6EC;
    /* extra light background */
    --text-dark: #5E080F;
    /* softer than dark maroon */
    --text-light: #8C7B6B;
    /* muted brownish gray */
    --white: #ffffff;
    /* Shadows */
    --shadow-light: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 14px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 24px rgba(0, 0, 0, 0.18);
    /* Animation */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --font-buttons: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --header-total-height: 0;
}

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

html,
body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;

    /* ✅ auto-adjust padding based on device */
    padding-top: var(--header-total-height);
}

/* Load Eagle Horizon font */
@font-face {
    font-family: 'EagleHorizonP';
    src: url('../fonts/EagleHorizonP.ttf') format('truetype');
    /* adjust path */
    font-weight: normal;
    font-style: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    /* ensures container does not exceed viewport */
    overflow-x: hidden;
    /* extra safety */
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    /* higher than topbar/navbar */
}

/* ===== ULTRA-PREMIUM TOPBAR ===== */
.topbar {
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-heavy);
    position: relative;
    /* scrolls away */
    width: 100%;
    z-index: 900;
}

/* Gold shimmer animation */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Subtle glass overlay */
.topbar::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.topbar-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.topbar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* slight increase */
    font-weight: 500;
    letter-spacing: 0.4px;
    position: relative;
    font-size: 1rem;
    /* increased for email/contact */
}

.topbar-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    letter-spacing: 0.4px;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

/* Only underline the text, not the icon */
.topbar-item a:hover .link-text {
    text-decoration: underline;
    /* optional */
}

/* Icon hover effect stays */
.topbar-item a:hover i {
    transform: scale(1.3) rotate(8deg);
    filter: drop-shadow(0 0 8px var(--accent-color));
}


/* Remove the ::after pipe from topbar-item since we wrap inside <a> */
.topbar-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -1.2rem;
    font-size: 0.8rem;
    color: var(--background-light);
    top: 50%;
    transform: translateY(-50%);
}

/* Fix pipe not overlapping the link inside */
.topbar-left .topbar-item:not(:last-child) {
    padding-right: 1.5rem;
    position: relative;
}

/* Optional: adjust the pipe position if needed */


.topbar-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    /* slightly larger */
    transition: var(--transition);
}

.topbar-item:hover i {
    transform: scale(1.3) rotate(8deg);
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.tagline {
    font-family: 'Playfair Display', serif;
    /* Elegant serif font */
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.8rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    letter-spacing: 0.4px;
    position: relative;
    overflow: hidden;
}

/* Subtle animated shimmer effect */
.tagline::after {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: tagline-shine 3.5s infinite;
}

@keyframes tagline-shine {
    0% {
        left: -50%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.tagline i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* Social Icons */
.topbar-right {
    display: flex;
    gap: 0.7rem;
}

.topbar-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.topbar-right a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 0 10px var(--gold-color);
}

/* ===== Navbar ===== */
.navbar {
    position: relative;
    /* remove sticky */
    top: 0;
    /* stick when topbar has scrolled away */
    background: linear-gradient(90deg,
            var(--primary-light-color) 0%,
            var(--secondary-color) 13%,
            var(--secondary-color) 50%,
            var(--secondary-color) 75%,
            var(--primary-light-color) 100%);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    padding: 0.8rem 0;
}

.navbar::before {
    content: "";
    position: absolute;
    top: -30px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: -1;
}

.navbar::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: -1;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-heavy);
}

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

.logo-img {
    /* margin-top: 5px; */
    height: 50px;
    /* adjust as needed */
    width: auto;
    /* keeps aspect ratio */
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    /* subtle hover effect */
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow-light);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    /* visible border initially */
}

/* Hover with enhanced glass look */
.nav-link:hover {
    background: rgba(120, 180, 0, 0.25);
    /* subtle green tint */
    color: var(--text-dark);
    border-color: var(--accent-color);
    /* swap to primary on hover */
    box-shadow: 0 4px 15px rgba(120, 180, 0, 0.3);
    transform: translateY(-2px);
}

/* Hover underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

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

.bar {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Responsive Media Queries ===== */

/* Large desktops / wide screens */
@media (min-width: 1251px) {

    .topbar-container,
    .nav-container {
        padding: 0 40px;
    }

    .nav-menu {
        gap: 2rem;
    }
}

/* Desktops & Laptops (1025px - 1250px) */
@media (max-width: 1250px) and (min-width: 1025px) {

    .topbar-container,
    .nav-container {
        padding: 0 30px;
    }

    .nav-menu {
        gap: 1.8rem;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {

    .topbar-container,
    .nav-container {
        padding: 0 20px;
    }

    .topbar-left {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .topbar-item {
        font-size: 0.95rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .logo-img {
        height: 45px;
    }
}

/* Small tablets / large phones (600px - 767px) */
@media (max-width: 767px) {
    .topbar {
        font-size: 0.88rem;
        padding: 0.6rem 0;
    }

    .topbar-left {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .topbar-item {
        font-size: 0.88rem;
        padding-right: 1rem;
    }

    .nav-menu {
        display: none;
        /* hide menu, show hamburger */
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }
}

/* Mobile phones (<600px) */
@media (max-width: 599px) {
    .topbar {
        font-size: 0.82rem;
        padding: 0.5rem 0;
    }

    .topbar-left {
        flex-direction: column;
        gap: 0.6rem;
    }

    .topbar-right {
        gap: 0.5rem;
    }

    .topbar-item {
        font-size: 0.8rem;
        padding-right: 0.8rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger open menu (mobile) */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    z-index: 999;
}

/* Hero Layout */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5E080F 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    /* adjust depending on your content */
    display: flex;
    align-items: center;
    /* centers vertically if space is extra */
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: auto;
    gap: 3rem;
}

.hero-tagline-strip {
    width: 100%;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 20;
    overflow: hidden;
    height: 60px;
    /* taller to fit icon + shape */
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    padding: 6px 20px;
    border-radius: 40px;

    background: linear-gradient(90deg, #f8f1e1, #e6d5b8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);

    animation: slide-tagline 20s linear infinite;
    /* slower speed */
}

.hero-tagline img {
    height: 32px;
    /* smaller tagline logo inside */
}

.hero-tagline i {
    font-size: 20px;
    color: #96323a;
    /* spice red */
}

@keyframes slide-tagline {
    0% {
        left: 100vw;
        /* start fully outside right */
    }

    100% {
        left: -300px;
        /* move fully out to left */
    }
}

/* Decorative BG */
.hero-bg-pattern {
    background-image: url('../images/Spices.png');
    /* replace with your PNG path */
    background-size: cover;
    /* or contain depending on how you want it to fit */
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.1;
    /* reduce the opacity as needed */
    pointer-events: none;
    /* so it doesn’t interfere with clicks */
}

/* Left Text */
.hero-text {
    flex: 1;
    z-index: 1;
    color: var(--text-light);
}

.hero-heading {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #f5bd4e;
    text-shadow:
        0 0 10px rgba(177, 138, 61, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 700px;
}

/* subtle underline glow with a spice color */
.hero-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-color);
}

/* Highlight text inside the heading */
.hero-heading .highlight {
    color: var(--white);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    color: rgba(233, 231, 231, 0.75);
    /* slightly darker white */
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-shadow: none;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Reduced vertical gap */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-points li {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: #eee;
    letter-spacing: 0.01em;
    user-select: none;
    padding-left: 50px;
    transition: color 0.4s ease;
    cursor: default;
}

/* Icon wrapper with circle background and subtle glow */
.icon-wrapper {
    position: absolute;
    left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 8px rgba(46, 204, 113, 0.5),
        0 0 20px rgba(46, 204, 113, 0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Icon style */
.icon-wrapper .icon {
    color: white;
    font-size: 18px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.25));
    transition: transform 0.3s ease;
}

/* Connecting vertical line */
.hero-points li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 45px;
    width: 2px;
    height: calc(100% - 45px);
    background: var(--accent-color);
    opacity: 0.5;
    border-radius: 1px;
}

/* Hover effect */
.hero-points li:hover {
    color: #2ecc71;
}

.hero-points li:hover .icon-wrapper {
    background: var(--primary-color);
    box-shadow:
        0 0 12px rgba(79, 241, 15, 0.7),
        0 0 28px rgba(53, 241, 15, 0.5);
}

.hero-points li:hover .icon-wrapper .icon {
    transform: scale(1.15) rotate(10deg);
    color: #fff8dc;
}

/* Container */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

/* Adjusted base button for better contrast */
.hero-buttons button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    /* slightly smaller gap */
    padding: 0.6rem 1.8rem;
    /* less horizontal padding */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    border-radius: 28px;
    border: 2px solid transparent;
    font-family: var(--font-buttons);
    min-width: 120px;
    /* reduced width */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(245, 245, 245, 0.85) 100%);
    box-shadow:
        inset 0 0 10px rgba(255 255 255 / 0.8),
        0 8px 20px rgba(0 0 0 / 0.3);
    overflow: hidden;
    transition: var(--transition);
    z-index: 0;
}

/* Icon inside buttons */
.hero-buttons button i {
    font-size: 1.3rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
    transform-origin: center;
    will-change: transform, color;
}

/* Glass shine effect */
.hero-buttons button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
    z-index: -1;
    border-radius: 28px;
}

/* Hover glass shine animation */
.hero-buttons button:hover::before,
.hero-buttons button:focus::before {
    transform: rotate(45deg) translateX(100%);
}

/* Hover text & icon color shift */
.hero-buttons button:hover,
.hero-buttons button:focus {
    color: var(--primary-color);
    box-shadow:
        0 12px 28px rgba(120, 180, 0, 0.8),
        inset 0 0 15px rgba(255 255 255 / 0.6);
    outline: none;
    transform: translateY(-4px) scale(1.05);
}

.hero-buttons button:hover i,
.hero-buttons button:focus i {
    color: var(--primary-color);
    transform: scale(1.15) rotate(10deg);
}

/* Book Button */
.hero-btn-book {
    background: linear-gradient(135deg,
            rgba(120, 180, 0, 1) 0%,
            rgba(180, 220, 80, 1) 100%);
    color: #fff;
    border-color: rgba(180, 220, 80, 0.9);
    box-shadow:
        0 15px 30px rgba(120, 180, 0, 0.9),
        inset 0 0 12px rgba(180, 220, 80, 0.9);
}

.hero-btn-book:hover,
.hero-btn-book:focus {
    background: linear-gradient(135deg,
            rgba(180, 220, 80, 1),
            rgba(120, 180, 0, 1));
    box-shadow:
        0 18px 35px rgba(120, 180, 0, 1),
        inset 0 0 20px rgba(180, 220, 80, 1);
    color: #fff;
}

/* Call Button */
.hero-btn-call {
    background: linear-gradient(135deg,
            rgba(177, 138, 61, 1) 0%,
            rgba(220, 180, 100, 1) 100%);
    color: #fff;
    border-color: rgba(220, 180, 100, 0.9);
    box-shadow:
        0 15px 30px rgba(177, 138, 61, 0.9),
        inset 0 0 12px rgba(220, 180, 100, 0.9);
}

.hero-btn-call:hover,
.hero-btn-call:focus {
    background: linear-gradient(135deg,
            rgba(180, 220, 80, 1),
            rgba(120, 180, 0, 1));
    box-shadow:
        0 18px 35px rgba(120, 180, 0, 1),
        inset 0 0 20px rgba(180, 220, 80, 1);
    color: #fff;
}

/* Right Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

/* .hero-spons-masala {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 300px;
    height: auto;
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
    z-index: 2;
    transition: transform 0.3s ease;
}

.hero-spons-masala:hover {
    transform: scale(1.05);
} */


.hero-bottom-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    /* removes white gap */
    z-index: 0;
    /* behind text and buttons */
}

.hero-bottom-decor svg {
    display: block;
    width: 100%;
    height: 100px;
    /* adjust height if needed */
}

/* Make sure hero content is above it */
.hero-container {
    position: relative;
    z-index: 1;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Desktop Large (>=1600px) */
@media (min-width: 1600px) {
    .hero {
        min-height: 750px;
    }

    .hero-heading {
        max-width: 900px;
    }

    .hero-description {
        max-width: 700px;
    }

    .hero-points li {
        font-size: 1.25rem;
        padding-left: 55px;
    }

    .icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .hero-buttons button {
        min-width: 140px;
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

/* Desktop / Laptop HDPI (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .hero {
        min-height: 700px;
    }

    .hero-heading {
        font-size: 3.8rem;
        max-width: 800px;
    }

    .hero-description {
        font-size: 1.2rem;
        max-width: 650px;
    }

    .hero-points li {
        font-size: 1.2rem;
        padding-left: 52px;
    }

    .icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .hero-buttons button {
        min-width: 130px;
        padding: 0.7rem 1.9rem;
        font-size: 1rem;
    }
}

/* Standard Laptop / Desktop MDPI (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero {
        flex-direction: row;
        padding: 2rem;
        min-height: 650px;
    }

    .hero-heading {
        font-size: 3.5rem;
        max-width: 700px;
    }

    .hero-description {
        font-size: 1.15rem;
        max-width: 600px;
    }

    .hero-points li {
        font-size: 1.1rem;
        padding-left: 50px;
    }

    .icon-wrapper {
        width: 38px;
        height: 38px;
    }

    .hero-buttons button {
        min-width: 120px;
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }
}

/* Tablets / iPads (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 2rem;
        min-height: 600px;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-heading {
        font-size: 2.8rem;
        max-width: 90%;
        margin-top: 15%;
    }

    .hero-description {
        font-size: 1.05rem;
        max-width: 85%;
    }

    .hero-points {
        align-items: center;
    }

    .hero-points li {
        font-size: 1.05rem;
        padding-left: 40px;
    }

    .icon-wrapper {
        width: 34px;
        height: 34px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons button {
        width: 100%;
        min-width: unset;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero {
        padding: 1.2rem 1.5rem;
        min-height: 550px;
    }

    .hero-heading {
        font-size: 2.5rem;
        margin-top: 15%;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-points li {
        font-size: 1rem;
        padding-left: 35px;
    }

    .icon-wrapper {
        width: 32px;
        height: 32px;
    }
}

/* Mobile Small / Extra Small (<576px) */
@media (max-width: 575px) {
    .hero {
        padding: 1rem 1rem;
        min-height: 500px;
    }

    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero-heading {
        font-size: 2.2rem;
        max-width: 95%;
        margin-top: 15%;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 95%;
    }

    .hero-points li {
        font-size: 0.95rem;
        padding-left: 30px;
    }

    .icon-wrapper {
        width: 28px;
        height: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-buttons button {
        width: 100%;
        min-width: unset;
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-tagline {
        padding: 4px 16px;
        font-size: 0.85rem;
    }

    .hero-tagline img {
        height: 28px;
    }
}

/* Extra adjustments for very small devices (<400px) */
@media (max-width: 400px) {
    .hero-heading {
        font-size: 1.9rem;
        margin-top: 15%;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-points li {
        font-size: 0.9rem;
        padding-left: 28px;
    }

    .icon-wrapper {
        width: 26px;
        height: 26px;
    }

    .hero-buttons button {
        padding: 0.45rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-tagline {
        font-size: 0.8rem;
        padding: 3px 12px;
    }

    .hero-tagline img {
        height: 24px;
    }
}


/* Products Section Styles */
.productsection {
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--secondary-color) 100%);
    scroll-margin-top: 80px;
}

.productsection-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.productsection-title {
    font-family: var(--font-primary);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.55rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.03em;
}

.productsection-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-color);
}

.productsection-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Products Section */
.products {
    background: var(--secondary-color);
}

/* Category Filter Buttons */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.85rem 2rem;
    background: var(--white);
    border: 2.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: var(--font-buttons);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(120, 180, 0, 0.6);
    transform: scale(1.05);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 15px rgba(0, 0, 0, 0.07),
        0 3px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.product-card:hover {
    transform: translateY(-14px);
    box-shadow:
        0 18px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Product Image */
.product-image {
    position: relative;
    height: 270px;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    box-shadow: inset 0 0 50px rgba(255 255 255 / 0.15);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1);
    will-change: transform, filter;
}

.product-card:hover .product-image img {
    transform: scale(1.12) rotate(1deg);
    filter: brightness(1.05);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent-light);
    color: var(--primary-color);
    padding: 0.35rem 0.85rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(104, 47, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Product Info */
.product-info {
    padding: 1.8rem 2rem 2.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    letter-spacing: 0.02em;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: var(--font-secondary);
    flex-grow: 1;
}

/* Price and Rating */
.product-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-family: var(--font-buttons);
    letter-spacing: 0.02em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0;
}

.stars {
    color: gold;
    font-size: 1.15rem;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.rating-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-secondary);
    letter-spacing: 0.01em;
}


.aboutrvmasalas-section {
    background: var(--white);
    padding: 4rem 0;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

/* ===== RESPONSIVE MEDIA QUERIES FOR PRODUCTS SECTION ===== */

/* Desktop XL (>=1600px) */
@media (min-width: 1600px) {
    .productsection {
        padding: 6rem 0;
    }

    .productsection-title {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .productsection-subtitle {
        font-size: 1.3rem;
        max-width: 750px;
    }

    .products-grid {
        gap: 3rem;
    }

    .product-card {
        border-radius: 24px;
    }

    .product-image {
        height: 320px;
        border-radius: 24px;
    }

    .product-title {
        font-size: 1.9rem;
    }

    .product-description {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}

/* Desktop / Laptop HDPI (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .productsection {
        padding: 5rem 0;
    }

    .productsection-title {
        font-size: 3.75rem;
    }

    .productsection-subtitle {
        font-size: 1.25rem;
        max-width: 700px;
    }

    .products-grid {
        gap: 2.8rem;
    }

    .product-card {
        border-radius: 22px;
    }

    .product-image {
        height: 300px;
        border-radius: 22px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-description {
        font-size: 1.05rem;
    }

    .product-price {
        font-size: 1.45rem;
    }
}

/* Laptop / Desktop MDPI (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .productsection {
        padding: 4.5rem 0;
    }

    .productsection-title {
        font-size: 3.5rem;
    }

    .productsection-subtitle {
        font-size: 1.2rem;
        max-width: 650px;
    }

    .products-grid {
        gap: 2.5rem;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-image {
        height: 280px;
        border-radius: 20px;
    }

    .product-title {
        font-size: 1.7rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.4rem;
    }
}

/* Tablets / iPads (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .productsection {
        padding: 3.5rem 1.5rem;
    }

    .productsection-title {
        font-size: 3rem;
    }

    .productsection-subtitle {
        font-size: 1.05rem;
        max-width: 90%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-image {
        height: 260px;
        border-radius: 18px;
    }

    .product-title {
        font-size: 1.6rem;
    }

    .product-description {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.3rem;
    }
}

/* Mobile Large (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .productsection {
        padding: 3rem 1rem;
    }

    .productsection-title {
        font-size: 2.5rem;
    }

    .productsection-subtitle {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-image {
        height: 220px;
        border-radius: 16px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-description {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1.25rem;
    }
}

/* Mobile Small / Extra Small (<576px) */
@media (max-width: 575px) {
    .productsection {
        padding: 2.5rem 0.8rem;
    }

    .productsection-title {
        font-size: 2.2rem;
    }

    .productsection-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 200px;
        border-radius: 14px;
    }

    .product-title {
        font-size: 1.35rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.15rem;
    }
}

/* Very Small Devices (<400px) */
@media (max-width: 400px) {
    .productsection-title {
        font-size: 2rem;
    }

    .productsection-subtitle {
        font-size: 0.85rem;
    }

    .product-image {
        height: 180px;
    }

    .product-title {
        font-size: 1.25rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .filter-btn {
        padding: 0.65rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* Centered heading at top */
.aboutrvmasalas-title {
    font-family: var(--font-primary);
    font-size: 3.75rem;
    font-weight: 900;
    color: var(--text-dark);
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 4rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.aboutrvmasalas-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
    box-shadow: 0 0 12px var(--accent-color);
}

/* Grid: Text + Image */
.aboutrvmasalas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 5rem;
}

/* Left Text */
.aboutrvmasalas-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* reduced gap */
    font-size: 1.15rem;
    line-height: 1.6;
    /* tighter line spacing */
    color: var(--text-light);
    text-align: justify;
    max-width: 600px;
}

/* GSTIN Highlight */
.aboutrvmasalas-gstin {
    background: var(--accent-light);
    color: var(--text-dark);
    padding: 0.4rem 0.8rem;
    /* smaller padding */
    border-radius: 6px;
    font-weight: 600;
    max-width: fit-content;
    margin: 0.2rem 0 0.8rem 0;
    /* less spacing above/below */
    box-shadow: var(--shadow-light);
}

/* Top-level points */
.aboutrvmasalas-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aboutrvmasalas-points>li {
    position: relative;
    padding-left: 1.5rem;
    /* slightly reduced */
    margin-bottom: 0.6rem;
    /* tighter spacing */
    font-weight: 500;
}

.aboutrvmasalas-points>li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Nested certificate list */
.aboutrvmasalas-cert-list {
    list-style: none;
    padding-left: 1rem;
    /* compact nested list */
    margin: 0.3rem 0 0 0;
}

.aboutrvmasalas-cert-list li {
    padding-left: 0;
    position: relative;
    margin-bottom: 0.3rem;
    /* less space between certificates */
    font-weight: 500;
    color: var(--text-light);
}

.aboutrvmasalas-cert-list li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    /* aligns dot neatly */
    color: var(--accent-color);
    font-weight: bold;
}

/* Right Image + Certificates */
.aboutrvmasalas-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.aboutrvmasalas-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aboutrvmasalas-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.aboutrvmasalas-cert-list {
    list-style: disc;
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.aboutrvmasalas-cert-list li {
    margin-bottom: 0.5rem;
}

/* Features row */
.aboutrvmasalas-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.aboutrvmasalas-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--background-light), var(--secondary-color));
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease;
    cursor: default;
    flex: 1 1 0;
    min-width: 280px;
    max-width: 320px;
}

.aboutrvmasalas-feature:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-6px);
}

.aboutrvmasalas-feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(120, 180, 0, 0.7));
    margin-top: 0.1rem;
}

.aboutrvmasalas-feature-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.aboutrvmasalas-feature-text {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
    max-width: 240px;
}

/* ===== Desktop Large Screens (≥1600px) ===== */
@media (min-width: 1600px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }

    .aboutrvmasalas-title {
        font-size: 4rem;
        margin-bottom: 5rem;
    }

    .aboutrvmasalas-text {
        font-size: 1.25rem;
    }
}

/* ===== Desktop Standard (1280px – 1599px) ===== */
@media (min-width: 1280px) and (max-width: 1599px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }

    .aboutrvmasalas-title {
        font-size: 3.75rem;
        margin-bottom: 4rem;
    }
}

/* ===== Laptops / Large Notebooks (1024px – 1279px) ===== */
@media (min-width: 1024px) and (max-width: 1279px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .aboutrvmasalas-title {
        font-size: 3.25rem;
        margin-bottom: 3.5rem;
    }

    .aboutrvmasalas-text {
        font-size: 1.15rem;
        max-width: 500px;
    }
}

/* ===== MDPI / HDPI Screens (900px – 1023px) ===== */
@media (min-width: 900px) and (max-width: 1023px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .aboutrvmasalas-title {
        font-size: 3rem;
        margin-bottom: 3rem;
    }

    .aboutrvmasalas-text {
        font-size: 1.1rem;
        max-width: 450px;
    }
}

/* ===== Tablets & iPad (768px – 899px) ===== */
@media (min-width: 768px) and (max-width: 899px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aboutrvmasalas-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .aboutrvmasalas-text {
        font-size: 1rem;
        max-width: 100%;
        text-align: justify;
    }

    .aboutrvmasalas-image-wrapper {
        gap: 1.5rem;
    }
}

/* ===== Mobile Devices (480px – 767px) ===== */
@media (min-width: 480px) and (max-width: 767px) {
    .aboutrvmasalas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .aboutrvmasalas-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .aboutrvmasalas-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .aboutrvmasalas-feature {
        min-width: 100%;
        max-width: 100%;
        padding: 1.5rem;
        gap: 1rem;
    }
}

/* ===== Small Devices / Very Small Phones (<480px) ===== */
@media (max-width: 479px) {
    .aboutrvmasalas-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .aboutrvmasalas-text {
        font-size: 0.9rem;
        line-height: 1.4;
        gap: 0.8rem;
    }

    .aboutrvmasalas-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aboutrvmasalas-image-wrapper {
        gap: 1rem;
    }

    .aboutrvmasalas-feature {
        min-width: 100%;
        max-width: 100%;
        padding: 1rem;
        gap: 0.8rem;
    }

    .aboutrvmasalas-feature-title {
        font-size: 1.2rem;
    }

    .aboutrvmasalas-feature-text {
        font-size: 0.9rem;
        max-width: 100%;
    }
}

/* ===== Optional: Adjust certificate list for small screens ===== */
@media (max-width: 767px) {
    .aboutrvmasalas-cert-list {
        margin-left: 1rem;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #fef9f6 0%, #f5e6db 100%);
    padding: 4rem 0;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.testimonials .section-title {
    font-family: var(--font-primary);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.55rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.03em;
}

.testimonials .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-color);
}

.testimonials .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Carousel container */
.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: visible;
    /* so shadows are visible */
    perspective: 1200px;
}

/* Slide animation */
.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(40px) rotateY(15deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0) rotateY(0);
    box-shadow:
        0 20px 30px rgba(0, 0, 0, 0.12),
        0 8px 15px rgba(0, 0, 0, 0.08);
    border-radius: 25px;
    position: relative;
    z-index: 10;
}

/* Testimonial Card - compact & advanced */
.testimonial-card {
    background: linear-gradient(145deg, #fffdfa, #f4ebe1);
    padding: 2rem 2.5rem 2.8rem;
    border-radius: 20px;
    box-shadow:
        0 8px 18px rgba(0, 0, 0, 0.12),
        inset 0 0 15px #fff9f3;
    text-align: center;
    user-select: none;
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-dark);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.07));
    transition: box-shadow 0.35s ease, transform 0.35s ease;
    border: 1.5px solid #3C1E2C;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        inset 0 0 35px #fff6ec;
    transform: translateY(-6px);
    border-color: var(--accent-light);
}

/* Testimonial Content paragraph */
.testimonial-content p {
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: #5a4d3d;
    letter-spacing: 0.02em;
}

/* Author section - reduced spacing */
.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

/* Letter avatar styling - slightly smaller */
.author-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--white);
    user-select: none;
    box-shadow: 0 2px 12px rgba(120, 180, 0, 0.4);
    transition: transform 0.3s ease;
    cursor: default;
    border: 3px solid var(--accent-light);
}

/* Different avatar background colors */
.avatar-1 {
    background-color: var(--accent-color);
}

.avatar-2 {
    background-color: var(--gold-color);
}

.avatar-3 {
    background-color: var(--primary-color);
}

.author-img:hover {
    transform: scale(1.1) rotate(3deg);
}

/* Author info - smaller text, tighter spacing */
.author-info h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.15rem;
    letter-spacing: 0.7px;
    line-height: 1.2;
}

.author-info p {
    font-weight: 600;
    font-size: 0.88rem;
    color: #877b6a;
    font-style: normal;
    letter-spacing: 0.4px;
    margin: 0;
}

/* Rating stars - smaller, tighter */
.rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    user-select: none;
}

.rating .star {
    color: var(--gold-color);
    font-size: 1.35rem;
    text-shadow: 0 0 5px #b18a3dcc;
    transition: transform 0.25s ease;
}

.rating .star:hover {
    transform: scale(1.25) rotate(-8deg);
    filter: drop-shadow(0 0 4px var(--gold-color));
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow:
        0 4px 10px rgba(60, 30, 44, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: scale(1.15);
    box-shadow:
        0 8px 18px rgba(120, 180, 0, 0.9);
}

.carousel-dots {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* Dots style */
.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d4cabf;
    cursor: pointer;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow:
        inset 0 0 3px #b3a691,
        0 0 5px #fff6e0;
}

.dot.active {
    background: var(--primary-color);
    box-shadow:
        0 0 8px var(--primary-color),
        inset 0 0 6px var(--accent-light);
}

/* ============================
   Responsive Media Queries
============================ */

/* Large Desktop Screens - 1600px+ */
@media (min-width: 1600px) {
    .testimonials .section-title {
        font-size: 3.75rem;
    }

    .testimonial-card {
        padding: 2.5rem 3rem 3rem;
        font-size: 1.2rem;
    }

    .author-img {
        width: 64px;
        height: 64px;
        font-size: 2.5rem;
    }
}

/* Desktop Screens - 1200px to 1599px */
@media (min-width: 1200px) and (max-width: 1599px) {
    .testimonials .section-title {
        font-size: 3.5rem;
    }

    .testimonial-card {
        padding: 2.3rem 2.8rem 2.8rem;
        font-size: 1.15rem;
    }

    .author-img {
        width: 60px;
        height: 60px;
        font-size: 2.3rem;
    }
}

/* Laptop Screens - 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .testimonials .section-title {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 2rem 2.5rem 2.5rem;
        font-size: 1.1rem;
    }

    .author-img {
        width: 58px;
        height: 58px;
        font-size: 2.2rem;
    }
}

/* MDPI / HDPI Screens - 768px to 991px (smaller laptops & large tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonials .section-title {
        font-size: 2.6rem;
    }

    .testimonial-card {
        padding: 1.8rem 2rem 2rem;
        font-size: 1rem;
    }

    .author-img {
        width: 54px;
        height: 54px;
        font-size: 2rem;
    }

    .carousel-controls {
        gap: 1.5rem;
    }
}

/* Tablet / iPad Screens - 600px to 767px */
@media (min-width: 600px) and (max-width: 767px) {
    .testimonials {
        padding: 2.5rem 1rem;
    }

    .testimonials .section-title {
        font-size: 2.3rem;
    }

    .testimonials .section-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }

    .testimonial-card {
        padding: 1.5rem 1.8rem 1.8rem;
        font-size: 0.98rem;
    }

    .author-img {
        width: 50px;
        height: 50px;
        font-size: 1.9rem;
    }

    .carousel-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    .carousel-controls {
        gap: 1rem;
        margin-top: 2.2rem;
    }
}

/* Mobile Screens - 400px to 599px */
@media (min-width: 400px) and (max-width: 599px) {
    .testimonials {
        padding: 2rem 0.8rem;
    }

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

    .testimonials .section-subtitle {
        font-size: 0.95rem;
        max-width: 95%;
    }

    .testimonial-card {
        padding: 1.2rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }

    .author-img {
        width: 46px;
        height: 46px;
        font-size: 1.7rem;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .carousel-controls {
        gap: 0.8rem;
        margin-top: 2rem;
    }
}

/* Small Mobile / Devices < 400px */
@media (max-width: 399px) {
    .testimonials {
        padding: 1.5rem 0.5rem;
    }

    .testimonials .section-title {
        font-size: 1.75rem;
    }

    .testimonials .section-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1rem 1.2rem 1.2rem;
        font-size: 0.9rem;
    }

    .author-img {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .carousel-controls {
        gap: 0.6rem;
        margin-top: 1.8rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}


/* Contact Section */
section#contact {
    background: var(--white);
    padding: 3rem 1.5rem;
    font-family: var(--font-secondary);
    color: var(--text-dark);
}

/* Scoped Header for Contact */
.contact .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact .section-title {
    font-family: var(--font-primary);
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.55rem;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.03em;
}

.contact .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-color);
}

.contact .section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Layout */
.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--secondary-color);
    padding: 1.5rem 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    cursor: default;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

/* Contact Form */
.contact-form {
    background: var(--secondary-color);
    padding: 1.6rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.required-star {
    color: #e74c3c;
    margin-left: 2px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    border-radius: var(--border-radius);
    border: 2px solid #ccc;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition);
    resize: vertical;
    min-height: 36px;
}

.form-group textarea {
    min-height: 70px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 8px 3px rgba(120, 180, 0, 0.15);
    background: #fff;
}

.form-error {
    color: #e74c3c;
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Button */
.btn-submit {
    width: 100%;
    position: relative;
    padding: 0.85rem 0;
    font-family: var(--font-buttons);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    background: linear-gradient(135deg, #78b400, #a4e600);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #a4e600, #78b400);
    box-shadow: var(--shadow-heavy);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-loader {
    display: none;
    width: 18px;
    height: 18px;
    border: 3px solid transparent;
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== CONTACT SECTION RESPONSIVE MEDIA QUERIES ===== */

/* Desktop Large (1200px - 1600px) */
@media (min-width: 1200px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact .section-title {
        font-size: 3.5rem;
    }

    .contact .section-subtitle {
        font-size: 1.25rem;
    }

    .contact-item {
        padding: 1.8rem 2rem;
    }

    .contact-form {
        padding: 2rem 2.5rem;
    }
}

/* Laptop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

    .contact .section-title {
        font-size: 3rem;
    }

    .contact .section-subtitle {
        font-size: 1.15rem;
    }
}

/* Laptop/Small Desktop HDPI & MDPI (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

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

    .contact .section-title {
        font-size: 2.75rem;
    }

    .contact .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Tablet Landscape (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .contact .section-title {
        font-size: 2.5rem;
    }

    .contact .section-subtitle {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1.5rem 1.6rem;
    }

    .contact-form {
        padding: 1.5rem 1.6rem;
    }
}

/* Tablet Portrait / iPad (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact .section-title {
        font-size: 2.25rem;
    }

    .contact .section-subtitle {
        font-size: 0.95rem;
    }
}

/* Mobile Large / Small Tablets (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

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

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

    .contact .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile Medium (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .contact .section-title {
        font-size: 1.85rem;
    }

    .contact .section-subtitle {
        font-size: 0.85rem;
    }

    .contact-item {
        padding: 1.2rem 1.3rem;
    }

    .contact-form {
        padding: 1.2rem 1.3rem;
    }
}

/* Mobile Small / Extra Small (320px - 374px) */
@media (max-width: 374px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

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

    .contact .section-title {
        font-size: 1.7rem;
    }

    .contact .section-subtitle {
        font-size: 0.8rem;
    }

    .contact-item {
        padding: 1rem 1.2rem;
    }

    .contact-form {
        padding: 1rem 1.2rem;
    }

    .btn-submit {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
    font-family: var(--font-secondary);
    padding: 4rem 1rem 2rem;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(245, 234, 210, 0.07) 2px, transparent 2px),
        radial-gradient(circle at 75px 75px, rgba(120, 180, 0, 0.07) 2px, transparent 2px);
    background-size: 100px 100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--accent-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-logo {
    display: inline-block;
    background-color: var(--secondary-color);
    /* keep existing bg */
    padding: 6px;
    /* same as old text padding */
    border-radius: 4px;
    /* same rounded corners */
}

/* Logo image */
.footer-logo-img {
    display: block;
    max-height: 40px;
    /* adjust as needed */
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(120, 180, 0, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-map {
    max-width: 350px;
    margin: 0 auto;
    /* center the map section */
}

.footer-map iframe {
    border: none;
    box-shadow: var(--shadow-medium);
    transition: box-shadow 0.3s ease;
    width: 100%;
    height: 200px;
}

.footer-map iframe:hover {
    box-shadow: 0 10px 30px rgba(120, 180, 0, 0.5);
}

.footer-address {
    margin-top: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 0.5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-secondary);
    letter-spacing: 0.05em;
    user-select: none;
    z-index: 1;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-credit-link,
.footer-credit i {
    color: var(--accent-color);
    /* all icons and link text use accent */
    transition: color 0.3s ease;
}

.footer-credit-link:hover,
.footer-credit-link:hover i {
    color: #ffffff;
    /* highlight on hover */
}

.footer-credit-link i {
    margin-left: 0.25rem;
    /* spacing between text and external link icon */
}

/* ===== FOOTER RESPONSIVE MEDIA QUERIES ===== */

/* Large Desktop (4K / Ultra HD) */
@media (min-width: 1920px) {
    .footer {
        padding: 5rem 2rem 3rem;
    }

    .footer-logo-text {
        font-size: 2.2rem;
        padding: 8px;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 1.1rem;
    }

    .footer-map iframe {
        height: 250px;
    }
}

/* Desktop (Full HD, 1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .footer {
        padding: 4.5rem 2rem 3rem;
    }

    .footer-logo-text {
        font-size: 2rem;
        padding: 7px;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 1rem;
    }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .footer {
        padding: 4rem 1.5rem 2.5rem;
    }

    .footer-container {
        max-width: 1000px;
    }

    .footer-logo-text {
        font-size: 1.9rem;
        padding: 6px;
    }

    .footer-title {
        font-size: 1.45rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 0.98rem;
    }
}

/* Tablets / iPads (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer {
        padding: 3.5rem 1rem 2rem;
    }

    .footer-container {
        max-width: 95%;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
    }

    .footer-logo-text {
        font-size: 1.7rem;
        padding: 5px;
    }

    .footer-title {
        font-size: 1.35rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 0.95rem;
    }

    .footer-map iframe {
        height: 180px;
    }
}

/* Small Tablets / Large Mobile (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-logo-text {
        font-size: 1.6rem;
        padding: 5px;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 0.92rem;
    }

    .footer-map iframe {
        height: 160px;
    }
}

/* Mobile / Small Devices (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

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

    .footer-logo-text {
        font-size: 1.5rem;
        padding: 4px;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 0.9rem;
    }

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

    .footer-map iframe {
        height: 150px;
    }
}

/* Extra Small / Very Small Devices (<480px) */
@media (max-width: 479px) {
    .footer {
        padding: 2rem 0.8rem 1rem;
    }

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

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

    .footer-logo-text {
        font-size: 1.4rem;
        padding: 3px;
    }

    .footer-title {
        font-size: 1.2rem;
    }

    .footer-description,
    .footer-links,
    .footer-address {
        font-size: 0.88rem;
    }

    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }

    .footer-map iframe {
        height: 140px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideInUp 0.3s ease-out;
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    z-index: 1;
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.modal-info h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Base - already defined */
.spice-icon-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at top left, #7ed957, #3cb371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 15px rgba(60, 179, 113, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    z-index: 999;
}

.spice-icon-container.show {
    opacity: 1;
    pointer-events: auto;
}

.spice-icon-container:hover {
    transform: scale(1.2);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4), 0 0 30px rgba(60, 179, 113, 0.8);
}

.spice-icon-container i {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

/* Rocket flying animation */
@keyframes flyUp {
    0% {
        transform: translateY(0) rotate(0deg);
        color: #fff;
        opacity: 1;
    }

    25% {
        color: #ffec42;
    }

    50% {
        transform: translateY(-50vh) rotate(45deg);
        color: #ff6a00;
    }

    75% {
        color: #42f554;
    }

    100% {
        transform: translateY(-100vh) rotate(90deg);
        color: #42f5ff;
        opacity: 0;
    }
}

.fly i {
    animation: flyUp 3s ease-in forwards;
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* Large Desktops & Ultra-wide Screens (1920px+) */
@media (min-width: 1920px) {
    .spice-icon-container {
        width: 60px;
        height: 60px;
        right: 30px;
        bottom: 30px;
    }

    .spice-icon-container i {
        font-size: 1.8rem;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .spice-icon-container {
        width: 55px;
        height: 55px;
        right: 25px;
        bottom: 25px;
    }

    .spice-icon-container i {
        font-size: 1.7rem;
    }
}

/* Laptops & HDPI screens (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .spice-icon-container {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }

    .spice-icon-container i {
        font-size: 1.5rem;
    }
}

/* Tablets & iPads (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .spice-icon-container {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
    }

    .spice-icon-container i {
        font-size: 1.3rem;
    }
}

/* Large Mobile Devices / Small Tablets (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .spice-icon-container {
        width: 40px;
        height: 40px;
        right: 12px;
        bottom: 12px;
    }

    .spice-icon-container i {
        font-size: 1.2rem;
    }
}

/* Mobile Phones (320px - 479px) */
@media (min-width: 320px) and (max-width: 479px) {
    .spice-icon-container {
        width: 35px;
        height: 35px;
        right: 10px;
        bottom: 10px;
    }

    .spice-icon-container i {
        font-size: 1rem;
    }
}

/* Extra Small Devices / Small Phones (<320px) */
@media (max-width: 319px) {
    .spice-icon-container {
        width: 30px;
        height: 30px;
        right: 8px;
        bottom: 8px;
    }

    .spice-icon-container i {
        font-size: 0.9rem;
    }
}

/* ===== Floating Container - Right Side (Compact) ===== */
.floating-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 40px 0 0 40px;
    /* smaller curve */
    padding: 12px;
    /* reduced */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* reduced */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Individual button - clean style */
.floating-container a {
    position: relative;
    width: 40px;
    /* smaller */
    height: 40px;
    /* smaller */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
    backdrop-filter: blur(10px);
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.floating-container a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.22);
}

/* Icon */
.floating-container i {
    font-size: 1.2rem;
    z-index: 2;
    transition: transform 0.3s ease;
}

.floating-container a:hover i {
    transform: scale(1.05);
}

/* Slide-in label */
.floating-container span {
    position: absolute;
    right: 50px;
    /* adjust based on smaller buttons */
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.1);
    color: #2ecc71;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(15px) scale(0.95);
    transition: all 0.4s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    backdrop-filter: blur(8px);
}

.floating-container a:hover span {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Optional subtle container movement */
.floating-container:hover {
    transform: translateY(-50%) translateX(-3px);
}

/* ===== Media Queries - Responsive Compact ===== */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .floating-container a {
        width: 45px;
        height: 45px;
    }

    .floating-container i {
        font-size: 1.4rem;
    }

    .floating-container span {
        font-size: 0.9rem;
        padding: 6px 14px;
        right: 60px;
    }
}

/* Laptop/Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .floating-container a {
        width: 42px;
        height: 42px;
    }

    .floating-container i {
        font-size: 1.3rem;
    }

    .floating-container span {
        font-size: 0.85rem;
        padding: 5px 13px;
        right: 55px;
    }
}

/* Tablet / iPad (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .floating-container a {
        width: 38px;
        height: 38px;
    }

    .floating-container i {
        font-size: 1.1rem;
    }

    .floating-container span {
        font-size: 0.8rem;
        padding: 4px 10px;
        right: 50px;
    }
}

/* Mobile Optimized Floating Container */
@media (max-width: 767px) {
    .floating-container {
        padding: 6px;
        gap: 8px;
        right: 0;
        transform: translateY(-50%);
        backdrop-filter: blur(8px);
        border-radius: 35px 0 0 35px;
    }

    .floating-container a {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        background: rgba(255, 255, 255, 0.15);
    }

    .floating-container i {
        font-size: 0.9rem;
    }

    /* Hide labels on mobile */
    .floating-container span {
        display: none;
    }

    .floating-container a:hover {
        transform: scale(1.05);
    }
}

/* Extra small devices (<480px) */
@media (max-width: 479px) {
    .floating-container {
        padding: 4px;
        gap: 6px;
        border-radius: 30px 0 0 30px;
    }

    .floating-container a {
        width: 28px;
        height: 28px;
    }

    .floating-container i {
        font-size: 0.8rem;
    }
}