/* ============================================
   VIBA WEDDING NEEDS & CRAFTS
   Premium Traditional Indian Wedding Website
   ============================================ */

/* === CSS Variables === */
:root {
    /* Primary Colors */
    --maroon: #6B1D2A;
    --maroon-dark: #4A0E1C;
    --maroon-medium: #8B2252;
    --maroon-light: #9B3A5E;
    --burgundy: #722F37;
    --red-rich: #9B2335;

    /* Gold Accents */
    --gold: #C9A84C;
    --gold-light: #D4C07A;
    --gold-dark: #A88B3D;
    --gold-bright: #E8C84A;

    /* Neutrals */
    --cream: #FFF9F2;
    --cream-dark: #F5EDE0;
    --beige: #F0E4D4;
    --beige-warm: #E8D5B7;
    --peach: #FDE8D8;
    --peach-light: #FFF0E6;
    --white: #FFFFFF;
    --off-white: #FFFCF7;

    /* Text */
    --text-dark: #2C1810;
    --text-body: #4A3728;
    --text-muted: #7A6A5A;
    --text-light: #A09080;

    /* Footer */
    --maroon-footer: #3D0F18;
    --maroon-footer-dark: #2A0A10;

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-elegant: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(107, 29, 42, 0.06);
    --shadow-md: 0 4px 20px rgba(107, 29, 42, 0.08);
    --shadow-lg: 0 8px 40px rgba(107, 29, 42, 0.10);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background-color: var(--maroon);
    color: var(--gold-light);
}

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

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-motif {
    margin-bottom: 20px;
}

.preloader-svg {
    width: 60px;
    height: 60px;
    animation: preloaderSpin 3s linear infinite;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.preloader-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* === Section Container === */
.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--maroon-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.section-divider {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.section-divider-left {
    justify-content: flex-start;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-medium);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn i {
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--maroon);
    color: var(--gold-light);
    border-color: var(--maroon);
}

.btn-primary:hover {
    background: var(--maroon-dark);
    border-color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--maroon-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-sm {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-whatsapp-sm:hover {
    background: #1DA851;
    border-color: #1DA851;
}

.btn-call {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
}

.btn-call:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-gold {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

.btn-enquire {
    background: var(--gold);
    color: var(--maroon-dark);
    border-color: var(--gold);
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-enquire:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 0.95rem;
}

.btn-full {
    width: 100%;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(74, 14, 28, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all var(--transition-medium);
}

.header.scrolled {
    background: rgba(61, 15, 24, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.7;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: block;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--cream);
    opacity: 0.8;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--gold);
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all var(--transition-medium);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 10, 16, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--transition-slow);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-nav-list {
    margin-bottom: 40px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cream);
    padding: 12px 0;
    opacity: 0.8;
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    opacity: 1;
    color: var(--gold);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(155, 35, 53, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(114, 47, 55, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--maroon-dark) 0%, rgba(74, 14, 28, 0.95) 50%, var(--maroon-dark) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 30%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--gold) 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
}

.hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-floral {
    position: absolute;
    opacity: 0.6;
}

.deco-floral-1 {
    top: 10%;
    right: 5%;
    animation: decoFloat 8s ease-in-out infinite;
}

.deco-floral-2 {
    bottom: 15%;
    left: 3%;
    animation: decoFloat 10s ease-in-out infinite reverse;
}

@keyframes decoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.deco-border {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    opacity: 0.2;
}

.deco-border-top {
    top: 80px;
}

.deco-border-bottom {
    bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 800px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 24px;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--cream);
    opacity: 0.75;
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-style: italic;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-motif {
    opacity: 0.6;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 3px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* === Animations === */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* === About Section === */
.about {
    padding: var(--section-padding);
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    padding: 20px;
}

.about-image-inner {
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--peach-light), var(--cream-dark));
}

.about-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: var(--gold);
    border-style: solid;
    border-width: 0;
}

.about-frame-tl {
    top: 0;
    left: 0;
    border-top-width: 2px;
    border-left-width: 2px;
}

.about-frame-tr {
    top: 0;
    right: 0;
    border-top-width: 2px;
    border-right-width: 2px;
}

.about-frame-bl {
    bottom: 0;
    left: 0;
    border-bottom-width: 2px;
    border-left-width: 2px;
}

.about-frame-br {
    bottom: 0;
    right: 0;
    border-bottom-width: 2px;
    border-right-width: 2px;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-paragraph {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-dark);
    font-size: 0.85rem;
}

.feature-info h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === Products Section === */
.products {
    padding: var(--section-padding);
    background: var(--off-white);
}

.product-category {
    margin-bottom: 60px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: -10px;
}

.category-title {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.category-desc {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.product-grid {
    display: grid;
    gap: 24px;
}

.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: all var(--transition-elegant);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.25);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 6/5;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--peach-light));
    transition: transform var(--transition-slow);
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.product-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(74, 14, 28, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.product-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Custom CTA */
.custom-cta {
    background: linear-gradient(135deg, var(--cream), var(--peach-light));
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    text-align: center;
}

.custom-cta-icon {
    margin-bottom: 24px;
}

.custom-cta h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 12px;
}

.custom-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.custom-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Featured Section === */
.featured {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.featured-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all var(--transition-elegant);
    text-align: center;
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.25);
}

.featured-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.featured-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-slow);
    overflow: hidden;
}

.featured-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-card:hover .featured-image-placeholder {
    transform: scale(1.05);
}

.featured-info {
    padding: 20px;
}

.featured-info h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 4px;
}

.featured-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* === Crafts Section === */
.crafts-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.crafts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crafts-image-frame {
    position: relative;
}

.crafts-image-inner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--peach-light));
}

.crafts-image-placeholder {
    width: 100%;
    height: 100%;
}

.crafts-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crafts-frame-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    pointer-events: none;
}

.crafts-content {
    padding: 20px 0;
}

.crafts-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.crafts-text {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
}

.crafts-highlights {
    margin-bottom: 32px;
}

.crafts-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-body);
}

.highlight-icon {
    color: var(--gold);
    font-size: 0.9rem;
}

/* === Why Choose Section === */
.why-choose {
    padding: var(--section-padding);
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 16px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all var(--transition-elegant);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.2);
}

.why-icon {
    margin-bottom: 20px;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 10px;
}

.why-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === Occasions Section === */
.occasions {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.occasion-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all var(--transition-elegant);
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.2);
}

.occasion-image {
    margin-bottom: 16px;
}

.occasion-placeholder {
    display: flex;
    justify-content: center;
}

.occasion-placeholder img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.occasion-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 6px;
}

.occasion-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === Gallery Section === */
.gallery {
    padding: var(--section-padding);
    background: var(--cream);
}

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

.filter-btn {
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 24px;
    transition: all var(--transition-medium);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--maroon);
    color: var(--gold-light);
    border-color: var(--maroon);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transition: all var(--transition-elegant);
}

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

.gallery-item.gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item.hidden {
    display: none;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--peach-light));
    transition: transform var(--transition-slow);
    overflow: hidden;
}

.gallery-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 14, 28, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

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

.gallery-category {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.gallery-zoom:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(42, 10, 16, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

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

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-caption {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cream);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

.lightbox-close {
    top: 24px;
    right: 24px;
}

.lightbox-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

/* === CTA Section === */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: var(--maroon);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 14px;
}

.cta-text {
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--cream);
    opacity: 0.75;
    max-width: 550px;
    margin: 0 auto 32px;
    font-style: italic;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* === Contact Section === */
.contact {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-title,
.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--maroon-dark);
    margin-bottom: 24px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.contact-number-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: all var(--transition-medium);
}

.contact-number-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-number-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--maroon-dark);
    font-size: 1rem;
}

.contact-number-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--maroon-dark);
}

.contact-options {
    display: flex;
    gap: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-medium);
    flex: 1;
    justify-content: center;
}

.whatsapp-option {
    background: #25D366;
    color: var(--white);
}

.whatsapp-option:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.phone-option {
    background: var(--gold);
    color: var(--maroon-dark);
}

.phone-option:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-body);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%237A6A5A'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.contact-form .btn {
    grid-column: 1 / -1;
    margin-top: 8px;
}

/* === Final CTA === */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-motif {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 14px;
    line-height: 1.3;
}

.final-cta-text {
    font-family: var(--font-elegant);
    font-size: 1.05rem;
    color: var(--cream);
    opacity: 0.75;
    margin-bottom: 32px;
    font-style: italic;
    line-height: 1.7;
}

/* === Footer === */
.footer {
    background: var(--maroon-footer);
    color: var(--cream);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    line-height: 1.1;
}

.footer-brand-sub {
    font-size: 0.65rem;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
}

.footer-brand-tagline {
    font-family: var(--font-elegant);
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.5;
    font-style: italic;
    margin-bottom: 20px;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--maroon-footer-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--cream);
    opacity: 0.6;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: var(--cream);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-contact-item a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--cream);
    opacity: 0.4;
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-medium);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all var(--transition-medium);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 96px;
    width: 44px;
    height: 44px;
    background: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--maroon-dark);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .btn-enquire {
        display: none;
    }

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

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* Tablet Small (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-image-inner {
        aspect-ratio: 16/10;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .crafts-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .crafts-image {
        order: -1;
    }

    .crafts-image-inner {
        aspect-ratio: 16/10;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .custom-cta {
        padding: 40px 24px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }

    .header-container {
        height: 64px;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        text-align: center;
    }

    .product-grid-3 {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .gallery-item.gallery-item-tall {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }

    .gallery-item.gallery-item-wide {
        grid-column: span 1;
        aspect-ratio: 4/3;
    }

    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

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

    .contact-options {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 16px;
        right: 16px;
    }

    .back-to-top {
        bottom: 16px;
        right: 78px;
        width: 40px;
        height: 40px;
    }

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

    .lightbox-close {
        top: 12px;
        right: 12px;
    }
}

/* Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Large Desktop (min-width: 1400px) */
@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .mobile-menu,
    .preloader {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}