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

:root {
    --primary: #c8a26b;
    --primary-dark: #a8834a;
    --secondary: #2d2d2d;
    --accent: #d4a843;
    --light: #fff8f0;
    --dark: #1a1a1a;
    --text: #444;
    --text-light: #888;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
}

/* img { max-width: 100%; height: auto; } */
  img {  max-width: 58%;
    height: auto;
    border-radius: 22px
  }
/* ─── Preloader ─── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-spinner {
    width: 60px; height: 60px;
    border: 4px solid rgba(200,162,107,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Navbar ─── */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent !important;
    z-index: 999;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
    padding: 8px 0;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary) !important;
    letter-spacing: 1px;
}
.navbar-brand span { color:rgb(241, 13, 51);}
.navbar.scrolled .navbar-brand span { color: var(--secondary); }
.navbar-logo {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
    border: 2px solid var(--primary);
}
.navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px !important;
    position: relative;
    transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--secondary) !important; }
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 18px; right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover { color: var(--primary) !important; }

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #3d2c1a 0%, #5a3d24 50%, #3d2c1a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1769255485022-f9bb6d6e8169?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.85;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61,44,26,0.4) 0%, rgba(90,61,36,0.25) 50%, rgba(61,44,26,0.35) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(200,162,107,0.15);
    border: 1px solid rgba(200,162,107,0.3);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--primary); }
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 35px;
}
.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-gold {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}
.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200,162,107,0.3);
}
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    background: transparent;
    text-decoration: none;
    display: inline-block;
}
.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
    transform: translateY(-2px);
}
.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin: 0;
}
.hero-stat p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 2s ease-in-out infinite;
}
.hero-scroll a {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.hero-scroll .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ─── Section Titles ─── */
.section-padding { padding: 100px 0; }
.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
}
.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: inline-block;
    width: 30px; height: 1px;
    background: var(--primary);
    vertical-align: middle;
    margin: 0 12px;
}
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-desc {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ─── About Section ─── */
.about-img-wrap {
    position: relative;
    padding-right: 30px;
}
.about-img-wrap img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.about-img-wrap .exp-badge {
    position: absolute;
    bottom: -19px;
    right: 214px;
    background: var(--primary);
    color: #fff;
    width: 114px; height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(200,162,107,0.4);
    animation: pulse-shadow 2s ease-in-out infinite;
}
@keyframes pulse-shadow {
    0%, 100% { box-shadow: 0 10px 40px rgba(200,162,107,0.4); }
    50% { box-shadow: 0 10px 60px rgba(200,162,107,0.6); }
}
.exp-badge h3 { font-size: 36px; margin: 0; color: #fff; }
.exp-badge p { font-size: 11px; margin: 0; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }

/* ─── Products ─── */
.product-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.product-card .card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition);
}
.product-card:hover .card-img-top { transform: scale(1.05); }
.product-card .card-body { padding: 25px 20px; }
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
    z-index: 2;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.product-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}
.product-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}
.product-card .badge-tag {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 500;
    z-index: 2;
}

/* ─── Counters ─── */
.counter-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1776188590471-db74f543cf52?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}
.counter-box {
    text-align: center;
    position: relative;
    z-index: 1;
}
.counter-box .counter {
    font-size: 52px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1;
}
.counter-box .counter-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ─── Services ─── */
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.5s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-card .icon-box {
    width: 70px; height: 70px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .icon-box {
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
}
.service-card h5 { font-size: 18px; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ─── Testimonials ─── */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.testimonial-card .stars { color: #f5b342; margin-bottom: 15px; }
.testimonial-card p { font-size: 15px; font-style: italic; line-height: 1.8; color: var(--text); }
.testimonial-card .author { display: flex; align-items: center; gap: 15px; margin-top: 20px; }
.testimonial-card .author img {
    width: 50px; height: 50px; border-radius: 50%;
    object-fit: cover;
}
.testimonial-card .author h6 { margin: 0; font-size: 15px; font-family: 'Poppins', sans-serif; }
.testimonial-card .author small { color: var(--text-light); font-size: 12px; }

/* ─── Contact ─── */
.contact-info-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(200,162,107,0.1);
}
.contact-info-card:hover {
    transform: translateX(5px);
    border-color: var(--primary);
}
.contact-info-card .icon {
    width: 55px; height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h6 { margin: 0 0 4px; font-family: 'Poppins', sans-serif; }
.contact-info-card p { margin: 0; font-size: 14px; color: var(--text-light); }

.contact-form .form-control {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--light);
}
.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(200,162,107,0.1);
}
.contact-form textarea { resize: none; min-height: 140px; }

/* ─── GST Badge ─── */
.gst-badge {
    display: inline-block;
    background: rgba(200,162,107,0.1);
    border: 1px solid rgba(200,162,107,0.2);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ─── Footer ─── */
.footer {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.footer h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.footer p, .footer a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    transition: var(--transition);
}
.footer a:hover { color: var(--primary); padding-left: 5px; }
.footer .social-links a {
    display: inline-flex;
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    margin-right: 8px;
    font-size: 16px;
    transition: var(--transition);
}
.footer .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    padding-left: 0;
    transform: translateY(-3px);
}
.footer .gst-footer {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ─── Page Header ─── */
.page-header {
    padding: 180px 0 80px;
    background: var(--dark);
    position: relative;
    text-align: center;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1759250451851-7f7cfe10d249?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    opacity: 0.08;
}
.page-header h1 {
    color: #fff;
    font-size: 48px;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb {
    background: transparent;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    text-decoration: none;
}
.page-header .breadcrumb-item.active { color: var(--primary); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ─── Buy / Product Grid ─── */
.product-grid-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}
.product-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.product-grid-card .img-wrap {
    height: 220px;
    overflow: hidden;
}
.product-grid-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.product-grid-card:hover .img-wrap img { transform: scale(1.08); }
.product-grid-card .body { padding: 25px; }
.product-grid-card .body h5 { font-size: 17px; margin-bottom: 6px; }
.product-grid-card .body p { font-size: 13px; color: var(--text-light); margin: 0; }
.product-grid-card .body .price { font-size: 18px; font-weight: 700; color: var(--primary); margin-top: 10px; }
.product-grid-card .body .btn-sm {
    padding: 8px 24px;
    font-size: 12px;
    border-radius: 50px;
    margin-top: 12px;
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.fade-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-scale.visible { opacity: 1; transform: scale(1); }

.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }
.stagger-children.visible > *:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.stagger-children.visible > *:nth-child(9) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.stagger-children.visible > *:nth-child(10) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }
.stagger-children.visible > *:nth-child(11) { opacity: 1; transform: translateY(0); transition-delay: 1.0s; }
.stagger-children.visible > *:nth-child(12) { opacity: 1; transform: translateY(0); transition-delay: 1.1s; }
.stagger-children.visible > *:nth-child(13) { opacity: 1; transform: translateY(0); transition-delay: 1.2s; }
.stagger-children.visible > *:nth-child(14) { opacity: 1; transform: translateY(0); transition-delay: 1.3s; }
.stagger-children.visible > *:nth-child(15) { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.stagger-children.visible > *:nth-child(16) { opacity: 1; transform: translateY(0); transition-delay: 1.5s; }
.stagger-children.visible > *:nth-child(17) { opacity: 1; transform: translateY(0); transition-delay: 1.6s; }
.stagger-children.visible > *:nth-child(18) { opacity: 1; transform: translateY(0); transition-delay: 1.7s; }

/* ─── Back to Top ─── */
#back-to-top {
    position: fixed;
    bottom: 40px; right: 40px;
    width: 48px; height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(200,162,107,0.3);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ─── Responsive ─── */

/* Large devices (desktops, <1200px) */
@media (max-width: 1199px) {
    .hero h1 { font-size: 54px; }
    .product-grid-card .img-wrap { height: 190px; }
}

/* Medium devices (tablets, <992px) */
@media (max-width: 991px) {
    .section-padding { padding: 80px 0; }
    .hero {
        min-height: 90vh;
        text-align: center;
    }
    .hero h1 { font-size: 42px; }
    .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; padding-top: 30px; }
    .hero-stat h3 { font-size: 28px; }
    .hero-scroll { bottom: 20px; }
    .section-title { font-size: 32px; }
    .section-desc { margin-bottom: 40px; }
    .navbar .nav-link { color: var(--secondary) !important; }
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        margin-top: 10px;
    }
    .page-header { padding: 150px 0 60px; }
    .page-header h1 { font-size: 36px; }
    .about-img-wrap { padding-right: 0; margin-bottom: 30px; }
    .product-card .card-img-top { height: 160px; }
    .product-grid-card .img-wrap { height: 170px; }
    .service-card { padding: 30px 24px; }
    .testimonial-card { padding: 30px 24px; }
    .counter-box .counter { font-size: 44px; }
    .about-img-wrap .exp-badge { width: 110px; height: 110px; }
    .exp-badge h3 { font-size: 28px; }
    .contact-info-card { padding: 24px; }
    iframe { height: 300px; }
}

/* Small-medium devices (large phones, <768px) */
@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .hero {
        min-height: 85vh;
        padding: 100px 0 60px;
    }
    .hero h1 { font-size: 34px; }
    .hero p { font-size: 15px; margin-bottom: 25px; }
    .hero-badge { font-size: 11px; padding: 5px 16px; letter-spacing: 1px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn-gold,
    .hero-cta .btn-outline-light { width: 100%; max-width: 280px; text-align: center; }
    .hero-stats { gap: 20px; margin-top: 30px; padding-top: 20px; }
    .hero-stat h3 { font-size: 24px; }
    .hero-stat p { font-size: 11px; letter-spacing: 0.5px; }
    .section-title { font-size: 28px; }
    .section-desc { font-size: 14px; margin-bottom: 30px; }
    .section-subtitle { font-size: 11px; letter-spacing: 2px; }
    .section-subtitle::before,
    .section-subtitle::after { width: 20px; margin: 0 8px; }
    .page-header { padding: 120px 0 50px; }
    .page-header h1 { font-size: 30px; }
    .btn-gold { padding: 12px 28px; font-size: 13px; }
    .btn-outline-light { padding: 10px 28px; font-size: 13px; }
    .product-card .card-img-top { height: 140px; }
    .product-card .card-body { padding: 18px 14px; }
    .product-card h5 { font-size: 14px; }
    .product-card p { font-size: 12px; }
    .product-grid-card .img-wrap { height: 150px; }
    .product-grid-card .body { padding: 18px; }
    .product-grid-card .body h5 { font-size: 15px; }
    .product-grid-card .body p { font-size: 12px; }
    .product-grid-card .body .price { font-size: 16px; }
    .service-card { padding: 28px 20px; }
    .service-card .icon-box { width: 60px; height: 60px; font-size: 24px; }
    .service-card h5 { font-size: 16px; }
    .service-card p { font-size: 13px; }
    .testimonial-card { padding: 28px 20px; }
    .testimonial-card p { font-size: 14px; }
    .counter-box .counter { font-size: 38px; }
    .counter-box .counter-label { font-size: 12px; letter-spacing: 0.5px; }
    .about-img-wrap .exp-badge { width: 90px; height: 90px; bottom: -15px; }
    .exp-badge h3 { font-size: 22px; }
    .exp-badge p { font-size: 9px; }
    .contact-info-card { padding: 20px; gap: 14px; }
    .contact-info-card .icon { width: 44px; height: 44px; font-size: 16px; }
    .contact-info-card h6 { font-size: 14px; }
    .contact-info-card p { font-size: 13px; }
    iframe { height: 250px; }
    .footer { text-align: center; }
    .footer .social-links { justify-content: center; }
    .footer h5 { margin-bottom: 14px; }
}

/* Small devices (phones, <576px) */
@media (max-width: 575px) {
    .section-padding { padding: 50px 0; }
    .navbar-brand { font-size: 22px; }
    .navbar-logo { height: 36px; width: 36px; }
    .navbar .nav-link { font-size: 13px; padding: 6px 14px !important; letter-spacing: 0.5px; }
    .hero { min-height: 80vh; padding: 90px 0 50px; }
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 14px; }
    .hero-badge { font-size: 10px; padding: 4px 12px; }
    .hero-stat h3 { font-size: 20px; }
    .hero-stat p { font-size: 10px; }
    .hero-scroll { display: none; }
    .section-title { font-size: 24px; }
    .section-desc { font-size: 13px; }
    .page-header { padding: 100px 0 40px; }
    .page-header h1 { font-size: 26px; }
    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a { font-size: 12px; }
    .product-card .card-img-top { height: 120px; }
    .product-card .card-body { padding: 14px 10px; }
    .product-card h5 { font-size: 13px; }
    .product-card p { font-size: 11px; }
    .product-grid-card .img-wrap { height: 130px; }
    .product-grid-card .body { padding: 14px; }
    .product-grid-card .body h5 { font-size: 14px; }
    .product-grid-card .body .price { font-size: 15px; }
    .product-grid-card .body .btn-sm { font-size: 11px; padding: 6px 18px; }
    .counter-box .counter { font-size: 32px; }
    .counter-box .counter-label { font-size: 11px; }
    .service-card { padding: 24px 16px; }
    .service-card .icon-box { width: 50px; height: 50px; font-size: 20px; }
    .service-card h5 { font-size: 15px; }
    .service-card p { font-size: 12px; }
    .testimonial-card { padding: 24px 16px; }
    .testimonial-card .author img { width: 40px; height: 40px; }
    .contact-info-card { padding: 16px; gap: 12px; flex-direction: column; text-align: center; }
    .contact-info-card .icon { width: 40px; height: 40px; font-size: 14px; }
    .contact-form .form-control { padding: 12px 14px; font-size: 13px; }
    iframe { height: 200px; }
    #back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; font-size: 14px; }
    .footer p, .footer a { font-size: 13px; }
    .footer .social-links a { width: 36px; height: 36px; font-size: 14px; }
}

/* Extra small devices (<400px) */
@media (max-width: 399px) {
    .hero h1 { font-size: 24px; }
    .navbar-brand { font-size: 18px; }
    .navbar-logo { height: 30px; width: 30px; }
    .section-title { font-size: 20px; }
    .product-card .card-img-top { height: 100px; }
    .product-grid-card .img-wrap { height: 110px; }
    .counter-box .counter { font-size: 28px; }
    .page-header h1 { font-size: 22px; }
    .hero-stat h3 { font-size: 18px; }
    .hero-stat p { font-size: 9px; }
}
