@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Color Palette */
    --primary: #0B3C26;
    /* Deep Forest Green */
    --primary-rgb: 11, 60, 38;
    --secondary: #1E5E3A;
    /* Medium Emerald Green */
    --accent: #D4AF37;
    /* Premium Gold */
    --accent-rgb: 212, 175, 55;
    --light-green: #E8F2EC;
    /* Minty Soft Green Background */
    --white: #FFFFFF;
    --off-white: #F9FBF9;
    --text-dark: #1C2B22;
    /* Deep Slate Green */
    --text-light: #5A6E62;
    /* Muted Grey Green */

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(11, 60, 38, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 60, 38, 0.08), 0 4px 6px -2px rgba(11, 60, 38, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(11, 60, 38, 0.1), 0 10px 10px -5px rgba(11, 60, 38, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(11, 60, 38, 0.15);

    /* Layout */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    /* background-image: url('../images/floral-bg.png'); */
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-sm);
}

/* Shared Layout Containers */
.container {
    width: 100%;
    max-width: 1452px;
    margin: 0 auto;
    padding: 0 10px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-bg-light {
    background-color: rgba(249, 251, 249, 0.85);
}

.section-bg-mint {
    background-color: rgba(232, 242, 236, 0.85);
}

.section-bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.section-bg-dark h2,
.section-bg-dark h3,
.section-bg-dark p {
    color: var(--white);
}

/* Header Section Style */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.section-bg-dark .section-subtitle {
    color: var(--accent);
}

.section-bg-dark .section-subtitle::after {
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    gap: 8px;
    z-index: 1;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px rgba(11, 60, 38, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: var(--light-green);
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
}

.btn-accent:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Glassmorphism Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(11, 60, 38, 0.08);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(11, 60, 38, 0.2);
    box-shadow: var(--shadow-lg);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: #FFFFFF;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(11, 60, 38, 0.08);
    transition: top 0.3s ease, padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
}

/* Logo image on transparent (hero) navbar - natural colors */
.navbar:not(.scrolled) .logo-img {
    filter: none;
}

/* Logo image on scrolled (white) navbar - natural colors */
.navbar.scrolled .logo-img {
    filter: none;
    height: 66px;
}

.navbar.scrolled .nav-logo {
    color: var(--primary);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--secondary);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-logo-light {
    color: var(--primary) !important;
}

.nav-logo span {
    color: var(--accent);
}

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

.nav-link {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--primary);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition-smooth);
        gap: 24px;
        z-index: 999;
    }

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

    .nav-link {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
        width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary) !important;
    }

    .nav-logo {
        color: var(--primary) !important;
    }

    .navbar:not(.scrolled) .menu-toggle span {
        background-color: var(--primary);
    }

    .menu-toggle.active span {
        background-color: var(--primary) !important;
    }

    .nav-cta {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 14px;
    }

    .nav-cta .btn-accent {
        padding: 7px 15px;
        font-size: 0.82rem;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-info {
    list-style: none;
}

.footer-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
    font-family: var(--font-body);
}

.newsletter-input:focus {
    border-color: var(--accent);
}

.newsletter-btn {
    padding: 12px 20px;
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background-color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

/* General Toast Notification Styling */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.toast {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--accent);
    margin-top: 10px;
    animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideInLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

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

/* Modal / Lightbox Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(11, 60, 38, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid var(--white);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Generic Decorations Slider Section */
.decorations-slider-section {
    padding: 40px 0;
    background-color: transparent;
}

.decorations-slider-section .container {
    max-width: 100% !important;
    padding: 0 40px !important;
}

@media (max-width: 768px) {
    .decorations-slider-section .container {
        padding: 0 15px !important;
    }
}

.decorations-slider-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.decorations-slider-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(11, 60, 38, 0.1);
}

.decorations-slider-header h2 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

/* Carousel Styles */
.decorations-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

.decorations-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 12px;
}

.decorations-carousel-item {
    flex: 0 0 calc(25% - 9px);
    min-width: calc(25% - 9px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1200px) {
    .decorations-carousel-item {
        flex: 0 0 calc(33.333% - 8px);
        min-width: calc(33.333% - 8px);
    }
}

@media (max-width: 768px) {
    .decorations-carousel-item {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .decorations-carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* Card Styling */
.decorations-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(11, 60, 38, 0.05);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    height: 100%;
    flex: 1;
}

.decorations-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.decorations-card-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 18px;
}

.decorations-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: var(--transition-smooth);
}

.decorations-card:hover .decorations-card-img-container img {
    transform: scale(1.05);
}

.decorations-card-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px 10px 10px;
    background: transparent;
    border-top: none;
    margin-top: auto;
    gap: 12px;
}

.decorations-card-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    flex-wrap: wrap;
    gap: 6px;
}

.decorations-card-category {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-body);
    width: auto;
    display: inline-block;
}

.decorations-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-actions-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.whatsapp-btn-new {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    background-color: #25D366;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    border: none;
}

.whatsapp-btn-new::after {
    content: "WhatsApp";
    font-family: var(--font-body);
}

.whatsapp-btn-new i {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.whatsapp-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.call-btn-new {
    flex: 1;
    height: 36px;
    border-radius: 8px;
    background-color: var(--primary, #0b3c26);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    border: none;
}

.call-btn-new::after {
    content: "Call Now";
    font-family: var(--font-body);
}

.call-btn-new i {
    color: #ffffff;
    font-size: 0.8rem;
    margin: 0;
}

.call-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

/* Dots styling */
.decorations-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.decorations-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 60, 38, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.decorations-carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* Navbar Dropdown Menu */
.nav-menu li {
    position: relative;
}

.nav-dropdown-item>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(11, 60, 38, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    padding: 10px 0;
    z-index: 100;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--light-green);
    color: var(--primary) !important;
    padding-left: 25px;
}

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

/* Adjust dropdown styles for sticky scrolled nav bar */
.navbar.scrolled .dropdown-menu {
    background-color: var(--white);
}

/* Mobile responsive navigation overrides for dropdown menu */
@media (max-width: 992px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
        background: transparent;
    }

    .nav-dropdown-item.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown-item>a {
        justify-content: space-between;
    }
}

/* Categories Quick Links Slider */
.category-bar-section {
    padding: 30px 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(11, 60, 38, 0.05);
}

.category-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.category-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
}

.category-carousel-item {
    flex: 0 0 calc((100% - 75px) / 6);
    /* 6 items per view on desktop, (6-1)*15px = 75px gap total */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.category-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 130px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.category-img-box {
    width: 130px;
    height: 130px;
    border-radius: 28px;
    background-color: var(--light-green);
    border: 2px solid transparent;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.category-bar-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: var(--transition-fast);
    text-align: center;
}

.category-bar-item:hover .category-img-box {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.category-bar-item:hover span {
    color: var(--accent);
}

/* Category dots indicator */
.category-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(11, 60, 38, 0.15);
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-carousel-dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .category-carousel-item {
        flex: 0 0 calc((100% - 75px) / 6);
        /* 6 items per view */
    }
}

@media (max-width: 992px) {
    .category-carousel-item {
        flex: 0 0 calc((100% - 60px) / 5);
        /* 5 items per view */
    }
}

@media (max-width: 768px) {
    .category-carousel-item {
        flex: 0 0 calc((100% - 45px) / 4);
        /* 4 items per view */
    }
}

@media (max-width: 576px) {
    .category-carousel-item {
        flex: 0 0 calc((100% - 30px) / 3);
        /* 3 items per view */
    }
}

/* Decorations Category Pages Grid */
.decorations-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 0;
}

@media (max-width: 1200px) {
    .decorations-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .decorations-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .decorations-page-grid {
        grid-template-columns: 1fr;
    }
}

/* About CEO Section Styles */
.about-ceo-section {
    padding: 100px 0;
    background-color: var(--off-white);
    background: radial-gradient(circle at top right, rgba(11, 60, 38, 0.03), transparent), radial-gradient(circle at bottom left, rgba(76, 154, 42, 0.03), transparent), var(--white);
    position: relative;
    overflow: hidden;
}

.about-ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-ceo-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px 20px 20px 40px;
}

.ceo-image-container {
    position: relative;
    width: 380px;
    height: 450px;
    max-width: 100%;
}

/* Green offset frame behind the photo */
.ceo-image-container::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 8px solid var(--primary);
    /* Green frame matching brand */
    z-index: 1;
    border-radius: 4px;
}

.ceo-image-container img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.ceo-badge {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background-color: var(--primary);
    /* matching brand green badge */
    color: var(--white);
    padding: 18px 30px;
    z-index: 3;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
    text-align: left;
}

.ceo-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-body);
    line-height: 1.2;
}

.ceo-title {
    font-size: 0.88rem;
    font-weight: 500;
    opacity: 0.95;
    font-family: var(--font-body);
}

.about-ceo-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.about-ceo-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    /* Green heading matching brand */
    margin: 0;
    line-height: 1.1;
}

.about-ceo-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444444;
    margin: 0;
}

.about-ceo-link {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 10px;
    transition: var(--transition-fast);
}

.about-ceo-link:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .about-ceo-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-ceo-image-wrapper {
        padding: 20px;
    }

    .about-ceo-link {
        align-self: center;
    }

    .ceo-image-container {
        width: 320px;
        height: 380px;
    }

    .ceo-badge {
        right: -15px;
        bottom: 20px;
        padding: 14px 24px;
        min-width: 180px;
    }

    .about-ceo-title {
        font-size: 2.8rem;
        text-align: center;
    }
}

/* Polaroid Services Slider Styles */
.service-polaroid-card {
    display: block;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-smooth);
    padding: 0;
}

.service-polaroid-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.polaroid-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* Why Choose Us Section Styles */
.why-choose-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.why-choose-title {
    font-size: 2.8rem;
    color: var(--primary);
    /* Forest green color matching brand */
    font-family: var(--font-heading);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-list li {
    position: relative;
    padding-left: 0;
}

.point-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 4px;
}

.point-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.why-choose-images-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.why-choose-images-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 420px;
    margin: 0 auto;
}

.why-choose-img {
    position: absolute;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.why-choose-img.img-base {
    right: 0;
    top: 0;
    width: 290px;
    height: 400px;
    z-index: 1;
}

.why-choose-img.img-overlay {
    left: 40px;
    bottom: 20px;
    width: 225px;
    height: 240px;
    z-index: 2;
}

.why-choose-img:hover {
    transform: scale(1.03) translateY(-5px);
    z-index: 3;
}

.why-choose-link-container {
    text-align: center;
    margin-top: 10px;
}

.why-choose-domain-link {
    font-size: 1rem;
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.why-choose-domain-link:hover {
    color: var(--primary);
}

@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-choose-title {
        text-align: center;
    }

    .why-choose-images-container {
        height: 380px;
        max-width: 440px;
    }

    .why-choose-img.img-base {
        width: 250px;
        height: 350px;
    }

    .why-choose-img.img-overlay {
        left: 20px;
        bottom: 10px;
        width: 195px;
        height: 210px;
    }
}

/* Testimonials Width Constraint */
@media (min-width: 992px) {
    .testimonials-carousel-wrapper {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Gallery Teaser Grid & Carousel Styles */
.gallery-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    margin-top: 30px;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 15px;
}

.gallery-carousel-item {
    flex: 0 0 calc(25% - 11.25px);
    /* 4 items per view on desktop, (4-1)*15px = 45px gap total, 45/4 = 11.25px */
    min-width: calc(25% - 11.25px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-teaser-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1080 / 1350;
    cursor: pointer;
}

.gallery-teaser-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.gallery-teaser-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 60, 38, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.gallery-teaser-overlay i {
    color: var(--white);
    font-size: 2rem;
}

@media (max-width: 992px) {
    .gallery-carousel-item {
        flex: 0 0 calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .gallery-carousel-item {
        flex: 0 0 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
    }

    .gallery-teaser-item {
        height: auto;
    }
}

@media (max-width: 576px) {
    .gallery-carousel-item {
        flex: 0 0 calc(50% - 7.5px) !important;
        min-width: calc(50% - 7.5px) !important;
    }
}

/* Why Choose Us Grid Layout */
.why-choose-us-section {
    padding: 60px 0;
    background-color: var(--white);
}

.why-choose-us-title-block {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-us-title-block h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-choose-us-title-block p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.why-choose-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.why-choose-card-new {
    background: var(--white);
    border: 1px solid rgba(11, 60, 38, 0.06);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(11, 60, 38, 0.02);
    transition: var(--transition-smooth);
}

.why-choose-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.why-choose-icon-box-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(90, 170, 29, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.why-choose-icon-box-new i {
    font-size: 1.6rem;
    color: var(--primary);
}

.why-choose-card-new h4 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-choose-card-new p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .why-choose-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .why-choose-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .why-choose-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Celebration Reels Styles */
.reels-section {
    padding: 60px 0;
}

.reels-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    margin-top: 40px;
    margin-bottom: 30px;
}

.reels-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 30px;
}

.reels-carousel-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    box-sizing: border-box;
}

.reel-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

.reel-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(11, 60, 38, 0.85));
    z-index: 1;
}

.reel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.reel-content-overlay {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    color: var(--white);
}

.reel-text h4 {
    color: var(--white) !important;
    font-size: 1.3rem;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.reel-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.reel-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.reel-card:hover .reel-play-btn {
    background: var(--white);
    color: var(--primary);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reels-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }

    .reel-card {
        height: 450px;
    }
}

/* Video Lightbox Modal Styles */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-lightbox.active {
    display: flex;
}

.video-lightbox .video-container {
    max-width: 450px;
    width: 90%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-lightbox .lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition-fast);
}

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

/* Alternating Slider Section Backgrounds */
.bg-soft-green {
    background-color: rgba(90, 170, 29, 0.04) !important;
}

.bg-soft-gold {
    background-color: rgba(200, 154, 60, 0.04) !important;
}

.bg-soft-rose {
    background-color: rgba(212, 55, 55, 0.04) !important;
}

.bg-soft-warm {
    background-color: rgba(240, 230, 220, 0.4) !important;
}

.bg-soft-slate {
    background-color: rgba(31, 31, 31, 0.03) !important;
}

.bg-soft-mint {
    background-color: rgba(0, 143, 122, 0.04) !important;
}

/* Blog Page Styles */
.blog-section {
    padding: 60px 0;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.blog-filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(11, 60, 38, 0.08);
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.blog-filter-btn.active,
.blog-filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 60, 38, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.blog-card-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-img-container img {
    transform: scale(1.05);
}

.blog-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.blog-card-link:hover {
    color: var(--btn-hover-blue);
}

/* Single Blog Page Styles */
.blog-single-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    padding: 60px 0;
}

.blog-content-area {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(11, 60, 38, 0.05);
}

/* Featured Image in Single Blog Post */
.blog-featured-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 16 / 9;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(11, 60, 38, 0.08);
    padding-bottom: 16px;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-body {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.blog-post-body h2,
.blog-post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary);
}

.blog-post-body p {
    margin-bottom: 20px;
}

.blog-post-body blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 1.15rem;
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(11, 60, 38, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    display: inline-block;
}

.recent-posts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.recent-post-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
}

.recent-post-info h5 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-info h5 a:hover {
    color: var(--primary);
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-single-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-content-area {
        padding: 24px;
    }
}

/* =====================================================
   LOGO IMAGE STYLES
   ===================================================== */
.logo-img {
    height: 78px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    padding: 4px;
    transition: var(--transition-fast);
}

.footer-logo-img {
    height: 132px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 0;
    padding: 4px;
    margin-bottom: 12px;
    /* Keeps original colors matching the main menu logo */
}

.nav-logo {
    display: flex;
    align-items: center;
    padding: 4px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

/* =====================================================
   MOBILE RESPONSIVE — APP-LIKE EXPERIENCE
   ===================================================== */

/* --- Base Mobile Container --- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }
}

/* --- Navbar Mobile --- */
@media (max-width: 992px) {
    .logo-img {
        height: 72px;
        padding: 4px;
    }

    .nav-menu {
        width: 100%;
        padding: 90px 24px 40px 24px;
        gap: 8px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(11, 60, 38, 0.07);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        font-size: 1rem !important;
        padding: 12px 0 !important;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: #ffffff !important;
        border: 1px solid rgba(11, 60, 38, 0.08) !important;
        border-radius: 12px;
        margin-top: 4px;
        padding: 8px 0;
        display: none;
    }

    .nav-dropdown-item.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        color: var(--text-dark) !important;
    }
}

/* --- Hero Section Mobile --- */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr !important;
        gap: 24px;
        padding: 20px 0 0 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-booking-card {
        margin: 0 auto;
        width: 100%;
        max-width: 480px;
    }
}

/* --- Category Slider Mobile --- */
@media (max-width: 768px) {
    .category-img-box {
        width: 105px !important;
        height: 105px !important;
        border-radius: 22px !important;
        padding: 8px !important;
    }
}

@media (max-width: 576px) {
    .category-carousel-item {
        flex: 0 0 calc((100% - 30px) / 3) !important;
        min-width: calc((100% - 30px) / 3) !important;
    }

    .category-img-box {
        width: 85px !important;
        height: 85px !important;
        border-radius: 18px !important;
        padding: 6px !important;
    }

    .category-bar-item span {
        font-size: 0.8rem !important;
    }
}

/* --- Decorations Carousel Mobile --- */
@media (max-width: 576px) {
    .decorations-carousel-item {
        flex: 0 0 calc(50% - 6px) !important;
        min-width: calc(50% - 6px) !important;
    }

    .decorations-card {
        padding: 6px !important;
        border-radius: 16px !important;
    }

    .decorations-card-img-container {
        border-radius: 12px !important;
    }

    .decorations-card-img-container img {
        border-radius: 12px !important;
    }

    .decorations-card-footer {
        padding: 8px 4px 4px 4px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .decorations-card-info {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    .decorations-card-category {
        font-size: 0.96rem !important;
        width: 100% !important;
        display: block !important;
    }

    .decorations-card-action {
        font-size: 0.75rem !important;
    }

    .card-actions-wrapper {
        display: flex !important;
        width: 100% !important;
        gap: 6px !important;
        margin-top: 4px !important;
    }

    .call-btn-new {
        flex: 1 !important;
        width: auto !important;
        height: 32px !important;
        border-radius: 6px !important;
        background-color: var(--primary, #0b3c26) !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        font-size: 0.75rem !important;
        text-decoration: none !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    }

    .call-btn-new::after {
        content: "Call Now" !important;
        font-weight: 600 !important;
        font-family: var(--font-body) !important;
    }

    .call-btn-new i {
        color: #ffffff !important;
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    .whatsapp-btn-new {
        flex: 1 !important;
        width: auto !important;
        height: 32px !important;
        border-radius: 6px !important;
        background-color: #25D366 !important;
        color: #ffffff !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        font-size: 0.85rem !important;
        text-decoration: none !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    }

    .whatsapp-btn-new::after {
        content: "WhatsApp" !important;
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        font-family: var(--font-body) !important;
    }

    .whatsapp-btn-new i {
        color: #ffffff !important;
        font-size: 0.85rem !important;
        margin: 0 !important;
    }
}

/* --- Why Choose Us Grid Mobile --- */
@media (max-width: 768px) {
    .why-choose-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }

    .why-choose-card-new {
        padding: 20px 16px;
    }

    .why-choose-icon-new {
        font-size: 1.8rem;
    }

    .why-choose-card-new h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .why-choose-card-new {
        padding: 16px 12px;
    }
}

/* --- Gallery Teaser Mobile --- */
@media (max-width: 768px) {
    .gallery-teaser-item {
        height: auto !important;
        aspect-ratio: 1080 / 1350 !important;
    }
}

@media (max-width: 576px) {
    .gallery-teaser-section .container {
        max-width: 100% !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .gallery-teaser-item {
        height: auto !important;
        aspect-ratio: 1080 / 1350 !important;
    }
}

/* --- Testimonials Mobile --- */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        max-width: 100% !important;
        margin: 0 !important;
    }

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

    .testimonial-quote {
        font-size: 0.9rem;
    }
}

/* --- Instagram Reels Mobile --- */
@media (max-width: 768px) {
    .reels-carousel-item {
        flex: 0 0 calc(50% - 15px) !important;
        min-width: calc(50% - 15px) !important;
    }

    .reel-card {
        height: 400px !important;
    }
}

@media (max-width: 576px) {
    .reels-carousel-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }

    .reel-card {
        height: 380px !important;
    }
}

/* --- SEO Text Block Mobile --- */
@media (max-width: 768px) {
    .seo-text-block {
        font-size: 0.95rem !important;
    }

    .seo-content-section {
        padding: 40px 0 !important;
    }
}

/* --- FAQ Accordion Mobile --- */
@media (max-width: 768px) {
    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* --- Footer Mobile --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    footer {
        padding: 50px 0 24px 0;
    }

    .footer-logo-img {
        height: 104px;
        padding: 4px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.8rem;
    }
}

/* --- Stats Section Mobile --- */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* --- Booking Form Mobile --- */
@media (max-width: 768px) {
    .booking-form-grid {
        grid-template-columns: 1fr !important;
    }

    .booking-form-card {
        padding: 28px 20px;
    }
}

/* --- Gallery Page Mobile --- */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* --- Decorations Page Grid Mobile --- */
@media (max-width: 768px) {
    .decorations-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .decorations-page-grid {
        grid-template-columns: 1fr !important;
        max-width: 380px;
        margin: 0 auto;
    }
}

/* --- Blog Grid Mobile --- */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-filters {
        gap: 8px;
    }

    .blog-filter-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .blog-single-container {
        grid-template-columns: 1fr !important;
        padding: 30px 0;
    }

    .blog-content-area {
        padding: 20px 16px;
    }

    .blog-featured-img {
        aspect-ratio: 16 / 9;
        margin-bottom: 20px;
    }

    .blog-post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* --- Inner Hero (Sub Pages) Mobile --- */
@media (max-width: 768px) {
    .inner-hero {
        padding: 100px 0 50px 0 !important;
    }

    .inner-hero h1 {
        font-size: 1.9rem !important;
    }
}

/* --- Bespoke Planning / Services Page Slider Mobile --- */
@media (max-width: 576px) {
    .decorations-slider-section {
        padding: 40px 0 !important;
    }
}

/* --- Video Lightbox Mobile --- */
@media (max-width: 576px) {
    .video-container {
        width: 95vw !important;
        max-height: 80vh;
    }
}

/* --- Prevent horizontal overflow on all --- */
img,
video,
iframe,
embed,
object {
    max-width: 100%;
}

/* --- Touch-friendly tap targets --- */
@media (max-width: 768px) {

    a,
    button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .faq-question {
        min-height: 52px;
        align-items: center;
    }
}

/* =====================================================
   HOMEPAGE SEO SECTION DESIGN (PREMIER JAIPUR SERVICES)
   ===================================================== */
.seo-content-section {
    background: radial-gradient(circle at 10% 20%, rgba(250, 245, 238, 0.6) 0%, rgba(249, 251, 249, 0.8) 90%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.seo-content-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-header-seo {
    margin-bottom: 5px;
}

.seo-subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
}

.seo-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
}

.seo-title {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-top: 5px;
    color: var(--primary);
    font-family: var(--font-heading);
}

.seo-text-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-text-block p strong {
    color: var(--primary);
    font-weight: 600;
}

.seo-cta-text {
    border-left: 3px solid var(--accent);
    padding-left: 15px;
    font-style: italic;
    margin-top: 10px;
}

.seo-cta-text a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.seo-cta-text a:hover {
    color: var(--accent);
}

.seo-content-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.seo-image-frame {
    position: relative;
    width: 100%;
    max-width: 440px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
}

.seo-img-decor {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    border: 6px solid #FFFFFF;
}

.seo-image-frame:hover .seo-img-decor {
    transform: translateY(-8px);
}

.frame-accent-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent);
    border-radius: var(--border-radius-md);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.seo-image-frame:hover .frame-accent-border {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
}

.experience-badge-new {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 18px 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 4px solid var(--accent);
}

.experience-badge-new .badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge-new .badge-txt {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-title {
        font-size: 2rem;
    }

    .seo-content-right {
        margin-top: 20px;
        padding-bottom: 20px;
    }
}

/* =====================================================
   WEBSITE-WIDE SMOOTH ANIMATIONS SYSTEM
   ===================================================== */
.animate-hidden {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left-hidden {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right-hidden {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale-hidden {
    opacity: 0;
    transform: scale(0.93);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active transition state */
.animate-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
}

/* Animation Delays */
.delay-100 {
    transition-delay: 0.1s !important;
}

.delay-200 {
    transition-delay: 0.2s !important;
}

.delay-300 {
    transition-delay: 0.3s !important;
}

.delay-400 {
    transition-delay: 0.4s !important;
}

.delay-500 {
    transition-delay: 0.5s !important;
}

.delay-600 {
    transition-delay: 0.6s !important;
}

/* Subtle hovering shine effect for cards */
.hover-shine {
    position: relative;
    overflow: hidden;
}

.hover-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s;
    z-index: 5;
}

.hover-shine:hover::after {
    left: 125%;
}

/* --- 3D Gallery Slider --- */
.gallery-filters-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    background: transparent;
    border: 1px solid #ddd;
    color: #4a5568;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tag.active {
    background: #020617;
    /* Dark blue/black */
    color: #ffffff;
    border-color: #020617;
}

.filter-tag:hover:not(.active) {
    border-color: var(--primary);
    color: var(--primary);
}

.gallery-view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #000;
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.gallery-view-more-btn:hover {
    background: #000;
    color: #fff;
}

.gallery-3d-wrapper {
    position: relative;
    width: 100%;
    margin: 40px auto;
    overflow: visible;
}

.gallery-3d-carousel {
    position: relative;
    height: 480px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.gallery-3d-item {
    position: absolute;
    width: 320px;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #fff;
    user-select: none;
}

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

.gallery-3d-item:hover img {
    transform: scale(1.05);
}

.gallery-3d-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-3d-item.active .gallery-3d-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-3d-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

.gallery-3d-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* 3D Classes */
.gallery-3d-item.active {
    transform: translate3d(0, 0, 0) scale(1.1);
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.gallery-3d-item.prev {
    transform: translate3d(-190px, 0, -85px) scale(0.85);
    z-index: 3;
    opacity: 0.8;
    pointer-events: auto;
}

.gallery-3d-item.far-prev {
    transform: translate3d(-350px, 0, -160px) scale(0.68);
    z-index: 2;
    opacity: 0.55;
    pointer-events: auto;
}

.gallery-3d-item.next {
    transform: translate3d(190px, 0, -85px) scale(0.85);
    z-index: 3;
    opacity: 0.8;
    pointer-events: auto;
}

.gallery-3d-item.far-next {
    transform: translate3d(350px, 0, -160px) scale(0.68);
    z-index: 2;
    opacity: 0.55;
    pointer-events: auto;
}

.gallery-3d-item.hidden {
    transform: translate3d(0, 0, -250px) scale(0.5);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Controls */
.gallery-3d-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery-3d-prev-btn,
.gallery-3d-next-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #000;
    transition: all 0.3s ease;
}

.gallery-3d-prev-btn:hover,
.gallery-3d-next-btn:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 576px) {
    .gallery-filters-row {
        justify-content: center;
    }

    .gallery-view-more-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-3d-carousel {
        height: 380px;
    }

    .gallery-3d-item {
        width: 250px;
        height: 330px;
    }

    .gallery-3d-item.prev {
        transform: translate3d(-120px, 0, -80px) scale(0.85);
        opacity: 0.4;
    }

    .gallery-3d-item.next {
        transform: translate3d(120px, 0, -80px) scale(0.85);
        opacity: 0.4;
    }

    .gallery-3d-item.far-prev,
    .gallery-3d-item.far-next {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translate3d(0, 0, -200px) scale(0.6);
    }
}

/* --- Desktop Top Bar --- */
.top-bar-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1001;
    background-color: var(--accent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.top-bar-new .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100%;
    padding: 0 30px;
}

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

.top-bar-left span {
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

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

.top-bar-right a {
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    color: var(--primary);
}

/* Smooth sticky animation for top bar and navbar */
.scrolled-page .top-bar-new {
    transform: translateY(-100%);
}

.scrolled-page .navbar {
    top: 0;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .top-bar-new {
        display: none;
    }
    .navbar {
        top: 0 !important;
    }
}

/* Golden Background style for Our Visual Diary section */
.gallery-teaser-section {
    background: linear-gradient(135deg, #FCF7E9, #F5EAD0) !important;
    padding: 80px 0;
}

.gallery-teaser-section .section-title {
    color: var(--primary) !important;
}

.gallery-teaser-section .section-subtitle {
    color: var(--primary) !important;
}

.gallery-teaser-section p {
    color: var(--primary) !important;
}

.gallery-3d-prev-btn,
.gallery-3d-next-btn {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.gallery-3d-prev-btn:hover,
.gallery-3d-next-btn:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

/* --- Slider Cursor Dragging & Grab Styles --- */
.services-carousel,
.bespoke-planning-carousel,
.wedding-planning-carousel,
.corporate-events-carousel,
.social-gatherings-carousel,
.destination-events-carousel,
.custom-theme-events-carousel,
.vendor-management-carousel,
.testimonials-carousel,
.category-carousel,
.reels-carousel,
.gallery-carousel,
.gallery-3d-carousel {
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: pan-y;
}

.services-carousel:active,
.decorations-slider-box:active,
.gallery-3d-carousel:active {
    cursor: grabbing;
}

/* --- Floating Sticky Call & WhatsApp Quick Buttons --- */
.sticky-contact-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
}

.sticky-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}

.call-btn {
    background: linear-gradient(135deg, #0b3c26, #145c3b);
    border: 1.5px solid #d4af37;
    animation: pulse-call 2.5s infinite 1.25s;
}

.call-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 30px rgba(11, 60, 38, 0.6);
    color: #d4af37 !important;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Mobile responsive adjustments for sticky buttons */
@media (max-width: 768px) {
    .sticky-contact-bar {
        bottom: 18px;
        right: 18px;
        flex-direction: row;
        gap: 10px;
    }
    .sticky-btn {
        padding: 10px 18px;
        font-size: 0.88rem;
    }
    .sticky-btn i {
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .sticky-contact-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(11, 60, 38, 0.96);
        backdrop-filter: blur(12px);
        padding: 10px 14px;
        flex-direction: row;
        justify-content: space-around;
        gap: 10px;
        border-top: 1px solid rgba(212, 175, 55, 0.4);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
        border-radius: 0;
        right: auto;
    }
    .sticky-btn {
        flex: 1;
        justify-content: center;
        padding: 10px 12px;
        border-radius: 25px;
        font-size: 0.85rem;
    }
}