
:root {
    /* Colors */
    --color-green-dark: #2C4620;
    --color-green: #3B5D33;
    --color-green-light: #EDF3E8;
    --color-brown-dark: #2B1D12;
    --color-brown: #7A4A26;
    --color-beige: #F6F0E4;
    --color-beige-light: #FBF8F3;
    --color-white: #FFFFFF;
    --color-gold: #C9A227;
    --color-gold-light: #E8D9A0;
    --color-text: #2B2118;
    --color-text-light: #6B5D4F;
    --color-border: #E7DFCF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(43, 33, 24, 0.08);
    --shadow-medium: 0 15px 40px rgba(43, 33, 24, 0.12);
    --shadow-strong: 0 25px 60px rgba(43, 33, 24, 0.18);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 50px;

    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =====================================================
   RESET & BASE
   ===================================================== */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--color-brown-dark);
    font-weight: 700;
    margin: 0;
}

p { margin: 0; color: var(--color-text-light); }

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

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

ul { list-style: none; margin: 0; padding: 0; }

button { font-family: var(--font-body); cursor: pointer; }

.container { max-width: 1320px; }

/* Preloader */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--color-beige-light);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }
.preloader-spinner {
    width: 48px; height: 48px;
    border: 3px solid var(--color-green-light);
    border-top-color: var(--color-green);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Section spacing helpers */
section { padding: 90px 0; }
.section-heading { max-width: 640px; margin: 0 auto 50px; }
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 10px;
}
.section-label::after {
    content: "";
    position: absolute; left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: 40px; height: 2px;
    background: var(--color-gold);
}
.section-heading h2 { font-size: 42px; margin-bottom: 14px; }
.section-heading p { font-size: 16px; }
.section-heading.light h2,
.section-heading.light .section-label { color: var(--color-beige-light); }
.section-heading.light p { color: rgba(251, 248, 243, 0.75); }

/* Buttons */
.btn-premium-gold, .btn-premium-outline, .btn-cat, .btn-add-cart {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-weight: 600; font-size: 15px;
    padding: 15px 34px;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-premium-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #B68C1E 100%);
    color: var(--color-white);
    box-shadow: 0 12px 25px rgba(201, 162, 39, 0.35);
}
.btn-premium-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(201, 162, 39, 0.45);
    color: var(--color-white);
}
.btn-premium-outline {
    background: transparent;
    border-color: rgba(251, 248, 243, 0.6);
    color: var(--color-beige-light);
}
.btn-premium-outline:hover {
    background: var(--color-beige-light);
    color: var(--color-green-dark);
    border-color: var(--color-beige-light);
    transform: translateY(-3px);
}

/* =====================================================
   TOP UTILITY BAR
   ===================================================== */
.top-bar {
    background: #333;
    color: rgba(251, 248, 243, 0.75);
    font-size: 13px;
    padding: 9px 0;
}
.top-bar-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 28px; }
.top-bar-left a {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(251, 248, 243, 0.8);
}
.top-bar-left a:hover { color: var(--color-gold); }
.top-bar-left svg { color: var(--color-gold); flex-shrink: 0; }

.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-social-label {
    font-size: 12px; letter-spacing: 0.5px;
    color: rgba(251, 248, 243, 0.5);
}
.top-bar-social.social-icons { gap: 8px; }
.top-bar-social.social-icons a {
    width: 26px; height: 26px;
    background: rgba(251, 248, 243, 0.08);
}
.top-bar-social.social-icons a:hover { background: var(--color-gold); transform: translateY(-2px); }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(251, 248, 243, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }

.navbar { padding: 7px 0; transition: var(--transition); }
.site-header.scrolled .navbar { padding: 10px 0; }

.brand-logo { display: flex; align-items: center; gap: 10px; color: var(--color-green-dark); }
.brand-logo svg { flex-shrink: 0; }
.brand-text {
    font-family: var(--font-heading);
    font-size: 24px; font-weight: 700;
    color: var(--color-brown-dark);
    letter-spacing: 0.3px;
}
.brand-text em { font-style: normal; color: var(--color-gold); font-weight: 600; }

.main-nav { gap: 6px; }
.main-nav .nav-link {
    font-size: 15px; font-weight: 500;
    color: var(--color-text);
    padding: 10px 18px !important;
    position: relative;
}
.main-nav .nav-link::after {
    content: "";
    position: absolute; left: 18px; right: 18px; bottom: 4px;
    height: 2px; background: var(--color-gold);
    transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--color-green-dark); }
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after { transform: scaleX(1); }

.main-nav .dropdown-menu {
    border: none; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-medium);
    padding: 10px; margin-top: 10px;
    animation: fadeDown 0.25s ease;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.main-nav .dropdown-item {
    padding: 10px 16px; border-radius: 8px; font-size: 14.5px;
    color: var(--color-text);
}
.main-nav .dropdown-item:hover { background: var(--color-green-light); color: var(--color-green-dark); }

.header-icons { gap: 6px; }
.icon-btn {
    position: relative;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--color-green-dark);
    background: transparent;
    border: none;
    transition: var(--transition);
}
.icon-btn:hover { background: var(--color-green-light); color: var(--color-gold); transform: translateY(-2px); }
.badge-count {
    position: absolute; top: 2px; right: 2px;
    background: #841818;
    color: var(--color-white);
    font-size: 10px; font-weight: 700;
    min-width: 17px; height: 17px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid var(--color-beige-light);
}

.navbar-toggler { border: none; padding: 4px; background: none; }
.toggler-bar {
    display: block; width: 24px; height: 2px; margin: 5px 0;
    background: var(--color-green-dark); transition: var(--transition);
}

/* =====================================================
   FULLSCREEN SEARCH OVERLAY
   ===================================================== */
.search-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(43, 29, 18, 0.97);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
.search-close {
    position: absolute; top: 34px; right: 34px;
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-beige-light);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.search-close:hover { background: var(--color-gold); transform: rotate(90deg); border-color: var(--color-gold); }
.search-overlay-inner { width: 100%; max-width: 720px; padding: 0 20px; text-align: center; }
.search-eyebrow { color: var(--color-gold); letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin-bottom: 20px; font-weight: 600; }
.search-form { display: flex; align-items: center; border-bottom: 2px solid rgba(255,255,255,0.25); padding-bottom: 16px; }
.search-form input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--color-beige-light); font-family: var(--font-heading);
    font-size: 32px; padding: 8px 0;
}
.search-form input::placeholder { color: rgba(251,248,243,0.4); }
.search-form button { background: none; border: none; color: var(--color-gold); }
.search-suggestions { margin-top: 30px; color: rgba(251,248,243,0.6); font-size: 14px; }
.search-suggestions span { margin-right: 10px; }
.search-suggestions a { color: rgba(251,248,243,0.85); margin: 0 8px; border-bottom: 1px solid transparent; }
.search-suggestions a:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* =====================================================
   HERO BANNER
   ===================================================== */
.hero-banner {
    position: relative;
/*    min-height: 92vh;*/
    overflow: hidden;
}

/* Carousel wrapper fills the section; slides handle their own centering */
.hero-carousel { position: absolute; inset: 0; z-index: 0; }
.hero-carousel, .hero-carousel .carousel-inner { height: 100%; }
.hero-carousel .carousel-item { height: 100%; min-height: 92vh; }

.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(30, 22, 14, 0.88) 10%, rgba(30, 22, 14, 0.55) 55%, rgba(44, 70, 32, 0.35) 100%);
}

/* Vertically center each slide's content */
.hero-slide-inner {
    position: relative; z-index: 2;
    height: 100%;
    display: flex; align-items: center;
    padding: 60px 0;
}

/* Fade transition between slides (smoother than the default slide) */
.hero-carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.9s ease;
}
.hero-carousel.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Premium arrow controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%; z-index: 3; opacity: 1;
}
.hero-arrow {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(251, 248, 243, 0.1);
    border: 1px solid rgba(251, 248, 243, 0.3);
    color: var(--color-beige-light);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.hero-carousel .carousel-control-prev:hover .hero-arrow,
.hero-carousel .carousel-control-next:hover .hero-arrow {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.08);
}

/* Premium indicators */
.hero-indicators {
    z-index: 3;
    bottom: 30px;
    margin-bottom: 0;
    gap: 8px;
}
.hero-indicators button {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(251, 248, 243, 0.4);
    border: none; opacity: 1;
    transition: var(--transition);
}
.hero-indicators button.active { background: var(--color-gold); width: 26px; border-radius: 5px; }

.hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: 0.35; z-index: 1;
}
.blob-1 { width: 380px; height: 380px; background: var(--color-gold); top: -80px; right: 10%; }
.blob-2 { width: 300px; height: 300px; background: var(--color-green); bottom: -60px; right: 25%; }

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.eyebrow-badge {
    display: inline-flex; align-items: center;
    background: rgba(251, 248, 243, 0.12);
    border: 1px solid rgba(251, 248, 243, 0.3);
    color: var(--color-beige-light);
    font-size: 13.5px; font-weight: 500;
    padding: 9px 20px; border-radius: var(--radius-pill);
    margin-bottom: 24px;
    backdrop-filter: blur(6px);
}
.hero-content h1 {
    color: var(--color-white);
    font-size: 58px; line-height: 1.15;
    margin-bottom: 22px;
}
.hero-content h1 span { color: var(--color-gold-light); }
.hero-content p {
    color: rgba(251, 248, 243, 0.82);
    font-size: 17px; max-width: 520px;
    margin-bottom: 34px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 55px; }
.hero-stats { display: flex; gap: 42px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-heading); font-size: 30px; color: var(--color-gold-light); }
.hero-stats span { font-size: 13px; color: rgba(251, 248, 243, 0.7); letter-spacing: 0.4px; }

.floating-spice {
    position: absolute; z-index: 2;
    width: 110px; height: 110px; border-radius: 50%;
    border: 4px solid rgba(251, 248, 243, 0.5);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    animation: floaty 6s ease-in-out infinite;
}
.floating-spice img { width: 100%; height: 100%; object-fit: cover; }
.fs-1 { width: 130px; height: 130px; top: 14%; right: 8%; animation-delay: 0s; }
.fs-2 { width: 95px; height: 95px; top: 42%; right: 20%; animation-delay: 1.2s; }
.fs-3 { width: 80px; height: 80px; top: 65%; right: 6%; animation-delay: 2.1s; }
.fs-4 { width: 70px; height: 70px; top: 10%; right: 30%; animation-delay: 0.6s; }
.fs-5 { width: 100px; height: 100px; top: 75%; right: 26%; animation-delay: 1.8s; }
@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-22px) rotate(4deg); }
}

/* =====================================================
   CATEGORY SECTION
   ===================================================== */
.category-section { background: var(--color-beige-light); }
.category-card {
    position: relative;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.category-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(27, 17, 8, 0) 30%, rgba(27, 17, 8, 0.88) 100%);
}
.category-content {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 40px;
    color: var(--color-white);
}
.category-tag {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 12px; font-weight: 600;
    padding: 6px 16px; border-radius: var(--radius-pill);
    margin-bottom: 14px;
}
.category-content h3 { color: var(--color-white); font-size: 30px; margin-bottom: 10px; }
.category-content p { color: rgba(255,255,255,0.8); margin-bottom: 22px; max-width: 380px; }
.btn-cat {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: var(--color-white);
    padding: 12px 26px; font-size: 14px;
    backdrop-filter: blur(4px);
}
.btn-cat:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-white); }

/* =====================================================
   PRODUCT TABS & CARDS
   ===================================================== */
.product-tabs { gap: 10px; margin-bottom: 45px; }
.product-tabs .nav-link {
    border-radius: var(--radius-pill);
    padding: 12px 32px;
    font-weight: 600; font-size: 14.5px;
    color: var(--color-text);
    background: var(--color-beige);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.product-tabs .nav-link.active {
    background: var(--color-green-dark);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.product-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }

.product-badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 14px; border-radius: var(--radius-pill);
    color: var(--color-white);
}
.badge-bestseller { background: var(--color-gold); }
.badge-new { background: var(--color-green); }

.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1 / 1; background: var(--color-beige); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.1); }

.product-actions {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateX(12px);
    transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--color-white);
    border: none; color: var(--color-brown-dark);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.action-btn:hover { background: var(--color-gold); color: var(--color-white); transform: scale(1.1); }
.action-btn.wishlist-active { background: #D0453A; color: var(--color-white); }

.product-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--color-gold); font-weight: 600; }
.product-title { font-size: 19px; margin: 8px 0 6px; }
.product-rating { color: var(--color-gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 10px; }
.product-rating span { color: var(--color-text-light); font-size: 12.5px; letter-spacing: 0; margin-left: 4px; }
.product-price { margin-bottom: 16px; }
.current-price { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--color-green-dark); }
.old-price { font-size: 14px; color: var(--color-text-light); text-decoration: line-through; margin-left: 8px; }

.btn-add-cart {
    margin-top: auto;
    background: var(--color-beige);
    color: var(--color-brown-dark);
    border: 1.5px solid var(--color-border);
    width: 100%;
}
.btn-add-cart:hover { background: var(--color-green-dark); color: var(--color-white); border-color: var(--color-green-dark); }

.product-card-sm .product-info { padding: 16px; }
.product-card-sm .product-title { font-size: 16px; }

/* Bestseller section bg */
.bestseller-section { background: var(--color-beige-light); }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-choose-section {
    position: relative;
    background: var(--color-green-dark);
    color: var(--color-beige-light);
}
.why-bg-texture { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.why-choose-section .container { position: relative; z-index: 1; }

.feature-card {
    background: rgba(251, 248, 243, 0.06);
    border: 1px solid rgba(251, 248, 243, 0.14);
    border-radius: var(--radius-md);
    padding: 40px 28px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}
.feature-card:hover {
    background: rgba(251, 248, 243, 0.12);
    transform: translateY(-8px);
}
.feature-icon {
    width: 78px; height: 78px; margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), #B68C1E);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-white);
}
.feature-card h3 { color: var(--color-white); font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: rgba(251, 248, 243, 0.72); font-size: 14.5px; margin: 0; }

/* =====================================================
   SPECIAL OFFER SECTION
   ===================================================== */
.offer-section { position: relative; overflow: hidden; }
.offer-bg { position: absolute; inset: 0; }
.offer-bg img { width: 100%; height: 100%; object-fit: cover; }
.offer-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20, 14, 8, 0.9) 30%, rgba(20, 14, 8, 0.55) 100%); }
.offer-content { position: relative; z-index: 1; max-width: 620px; padding: 40px 0; }
.offer-content .section-label { color: var(--color-gold-light); }
.offer-content h2 { color: var(--color-white); font-size: 44px; margin: 16px 0 18px; }
.offer-content p { color: rgba(251, 248, 243, 0.8); margin-bottom: 30px; font-size: 16px; }
.discount-circle {
    position: absolute; top: -10px; right: -30px;
    width: 130px; height: 130px; border-radius: 50%;
    background: var(--color-gold);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--color-white); box-shadow: var(--shadow-strong);
    transform: rotate(12deg);
    animation: pulse-badge 2.4s ease-in-out infinite;
}
.discount-circle strong { font-family: var(--font-heading); font-size: 34px; line-height: 1; }
.discount-circle span { font-size: 12px; letter-spacing: 2px; }
@keyframes pulse-badge { 0%, 100% { transform: rotate(12deg) scale(1); } 50% { transform: rotate(12deg) scale(1.06); } }

/* =====================================================
   OUR PROCESS
   ===================================================== */
.process-section { background: var(--color-beige-light); }
.process-row { position: relative; }
.process-card {
    text-align: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 44px 26px 34px;
    height: 100%;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); }
.process-step {
    position: absolute; top: 18px; right: 24px;
    font-family: var(--font-heading);
    font-size: 34px; font-weight: 700;
    color: var(--color-beige);
}
.process-icon {
    width: 72px; height: 72px; margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--color-green-light);
    color: var(--color-green-dark);
    display: flex; align-items: center; justify-content: center;
}
.process-card h3 { font-size: 19px; margin-bottom: 8px; }
.process-card p { font-size: 14px; margin: 0; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonial-section { background: var(--color-brown-dark); position: relative; }
.testimonial-carousel { max-width: 760px; margin: 0 auto; }
.testimonial-card { text-align: center; padding: 20px 20px 10px; }
.quote-icon { color: var(--color-gold); margin-bottom: 20px; }
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 24px; font-style: italic;
    color: var(--color-beige-light);
    line-height: 1.6;
    margin-bottom: 26px;
}
.testimonial-rating { color: var(--color-gold); letter-spacing: 3px; margin-bottom: 22px; }
.testimonial-user { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-user img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-gold); }
.testimonial-user h4 { color: var(--color-white); font-size: 16px; margin: 0; }
.testimonial-user span { color: rgba(251, 248, 243, 0.6); font-size: 13px; }

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next { width: 6%; opacity: 1; }
.testi-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(251, 248, 243, 0.08);
    border: 1px solid rgba(251, 248, 243, 0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-beige-light);
    transition: var(--transition);
}
.testi-arrow:hover { background: var(--color-gold); border-color: var(--color-gold); }
.testimonial-indicators { position: static; margin-top: 30px; }
.testimonial-indicators button {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(251, 248, 243, 0.3);
    border: none; opacity: 1;
}
.testimonial-indicators button.active { background: var(--color-gold); width: 24px; border-radius: 5px; }

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex; flex-direction: column;
    transition: var(--transition);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.blog-img-wrap { position: relative; overflow: hidden; height: 230px; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.08); }
.blog-category {
    position: absolute; top: 18px; left: 18px;
    background: var(--color-gold); color: var(--color-white);
    font-size: 11.5px; font-weight: 600; text-transform: uppercase;
    padding: 6px 14px; border-radius: var(--radius-pill);
}
.blog-content { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-date {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; color: var(--color-text-light);
    margin-bottom: 12px;
}
.blog-content h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.35; }
.blog-content h3 a:hover { color: var(--color-gold); }
.blog-content p { font-size: 14.5px; margin-bottom: 18px; }
.read-more {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600; font-size: 14px; color: var(--color-green-dark);
    width: fit-content;
}
.read-more svg { transition: var(--transition); }
.read-more:hover { color: var(--color-gold); }
.read-more:hover svg { transform: translateX(4px); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-section { position: relative; overflow: hidden; }
.newsletter-bg { position: absolute; inset: 0; }
.newsletter-bg img { width: 100%; height: 100%; object-fit: cover; }
.newsletter-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44, 70, 32, 0.92), rgba(27, 17, 8, 0.9)); }
.newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter-content h2 { color: var(--color-white); font-size: 38px; margin-bottom: 14px; }
.newsletter-content p { color: rgba(251, 248, 243, 0.82); margin-bottom: 32px; }
.newsletter-form {
    display: flex; background: var(--color-white);
    border-radius: var(--radius-pill);
    padding: 6px; box-shadow: var(--shadow-strong);
}
.newsletter-form input {
    flex: 1; border: none; outline: none; background: transparent;
    padding: 14px 22px; font-size: 15px; font-family: var(--font-body);
}
.newsletter-form button {
    background: var(--color-gold); color: var(--color-white);
    border: none; border-radius: var(--radius-pill);
    padding: 14px 32px; font-weight: 600; font-size: 14.5px;
    transition: var(--transition);
}
.newsletter-form button:hover { background: var(--color-green-dark); }
.newsletter-msg { margin-top: 16px; font-size: 14px; color: var(--color-gold-light); min-height: 20px; }

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer { background: #000; color: rgba(251, 248, 243, 0.7); padding: 80px 0 0; }
.footer-logo { color: var(--color-gold-light); margin-bottom: 18px; }
.footer-logo .brand-text { color: var(--color-beige-light); }
.footer-about { font-size: 14.5px; line-height: 1.8; margin-bottom: 24px; max-width: 340px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(251, 248, 243, 0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-beige-light);
    transition: var(--transition);
}
.social-icons a:hover { background: var(--color-gold); transform: translateY(-3px); }

.site-footer h4 { color: var(--color-white); font-size: 17px; margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14.5px; color: rgba(251, 248, 243, 0.65); }
.footer-links a:hover { color: var(--color-gold); padding-left: 4px; }

.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 16px; font-size: 14px; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--color-gold); }

.footer-divider { border-color: rgba(251, 248, 243, 0.12); margin: 20px 0; }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 14px;
    padding: 26px 0; font-size: 13.5px;
}
.payment-icons { display: flex; gap: 10px; }
.payment-icons span {
    background: rgba(251, 248, 243, 0.08);
    padding: 6px 14px; border-radius: 6px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.3px;
    color: rgba(251, 248, 243, 0.75);
}

/* =====================================================
   QUICK VIEW MODAL
   ===================================================== */
.quickview-modal .modal-content {
    border: none; border-radius: var(--radius-lg);
    overflow: hidden;
}
.btn-close-custom {
    position: absolute; top: 18px; right: 18px; z-index: 5;
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--color-white);
    border: none; box-shadow: var(--shadow-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-brown-dark);
}
.btn-close-custom:hover { background: var(--color-gold); color: var(--color-white); }
.qv-img-wrap { height: 100%; min-height: 340px; background: var(--color-beige); }
.qv-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.qv-details { padding: 40px; }
.qv-details h3 { font-size: 26px; margin: 8px 0 10px; }
.qv-details p { font-size: 14.5px; margin: 18px 0 24px; }
.qv-qty { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.qv-qty label { font-size: 14px; font-weight: 600; color: var(--color-text); }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--color-border); border-radius: var(--radius-pill); overflow: hidden; }
.qty-btn { width: 34px; height: 34px; background: var(--color-beige); border: none; font-size: 16px; color: var(--color-text); }
.qty-btn:hover { background: var(--color-gold); color: var(--color-white); }
#qvQty { width: 40px; text-align: center; border: none; outline: none; font-size: 14px; }

/* =====================================================
   TOAST
   ===================================================== */
.premium-toast {
    background: var(--color-green-dark);
    color: var(--color-white);
    border: none; border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
}
.premium-toast .toast-body { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 500; padding: 16px 22px; }
.premium-toast svg { color: var(--color-gold-light); flex-shrink: 0; }

/* =====================================================
   BACK TO TOP
   ===================================================== */
#backToTop {
    position: fixed; bottom: 30px; right: 30px; z-index: 900;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--color-green-dark);
    color: var(--color-white);
    border: none; box-shadow: var(--shadow-medium);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition);
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--color-gold); }

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }

.category-card, .product-card, .feature-card, .process-card, .blog-card {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease, translate 0.35s ease;
}
.category-card.aos-in, .product-card.aos-in, .feature-card.aos-in, .process-card.aos-in, .blog-card.aos-in { opacity: 1; transform: translateY(0); }

.navbar-brand img{
    width: 90px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    background:#841818;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s ease;
}

.cta-btn:hover{
    background:#8f4d12;
    color:#fff;
    transform:translateY(-3px);
}


/*--new home slider css--*/


.hero-banner{
    position:relative;
    overflow:hidden;
    padding: 0px !important;
}

.hero-banner .hero-next,
.hero-banner .hero-prev{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.35);
    box-shadow:0 12px 35px rgba(0,0,0,.18);

    opacity:0;
    visibility:hidden;

    transition:.4s ease;
}

/* Left Arrow */
.hero-banner .hero-prev{
    left:25px;
    transform:translateX(-30px);
}

/* Right Arrow */
.hero-banner .hero-next{
    right:25px;
    transform:translateX(30px);
}

/* Show On Hover */
.hero-banner:hover .hero-prev,
.hero-banner:hover .hero-next{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}

/* Icon */
.hero-banner .hero-next::after,
.hero-banner .hero-prev::after{
    font-size:20px;
    font-weight:700;
    color:#fff;
    transition:.3s;
}

/* Hover Effect */
.hero-banner .hero-next:hover,
.hero-banner .hero-prev:hover{
    background:#b56a21;
    border-color:#b56a21;
    transform:scale(1.08);
}

.hero-banner .hero-next:hover::after,
.hero-banner .hero-prev:hover::after{
    color:#fff;
}

.pdtop{
    padding-top: 50px;
}


/*--testimonial css--*/


.testimonial-section{
    position:relative;
}

.testimonial-section .testi-box{
    text-align:center;
    max-width:900px;
    margin:0 auto;
    padding:20px;
}

.testimonial-section .testi-wrapp{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:25px;
}

.testimonial-section .box-quote img{
    width:70px;
    opacity:.25;
}

.testimonial-section .box-review{
    color:#ffc107;
    font-size:18px;
    letter-spacing:4px;
}

.testimonial-section .box-text{
    color:#fff;
    font-size:25px;
    line-height:1.9;
    font-weight:300;
    font-style:italic;
    max-width:900px;
    margin:0 auto 35px;
}

.testimonial-section .box-title{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
}

.testimonial-section .box-desig{
    color:#d6b45f;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:0;
}

/* ===========================
   ARROWS
=========================== */

.testimonial-section .slider-arrow{
    width:58px;
    height:58px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.06);
    color:#fff;
    transition:.35s;
    backdrop-filter:blur(8px);
}

.testimonial-section .slider-arrow:hover{
    background:#d6b45f;
    border-color:#d6b45f;
    color:#222;
    transform:translateY(-3px);
}

.testimonial-section .slider-arrow i{
    font-size:18px;
}

/* Position */

.testimonial-section .slider-prev{
    left:-80px;
}

.testimonial-section .slider-next{
    right:-80px;
}

/* Pagination */

.testimonial-section .swiper-pagination{
    margin-top:40px;
    position:relative;
}

.testimonial-section .swiper-pagination-bullet{
    width:11px;
    height:11px;
    background:#fff;
    opacity:.25;
    transition:.35s;
}

.testimonial-section .swiper-pagination-bullet-active{
    width:34px;
    border-radius:30px;
    background:#d6b45f;
    opacity:1;
}

/* Mobile */

@media(max-width:991px){

.testimonial-section .box-text{
    font-size:18px;
    line-height:1.8;
}

.testimonial-section .box-title{
    font-size:22px;
}

.testimonial-section .slider-prev,
.testimonial-section .slider-next{
    display:none;
}

}

.testimonial-section .testi-wrapp{
    display: none;
}


/*--about us new css--*/


.about-agtri-sec{
    padding:60px 0;
    background:linear-gradient(180deg,#ffffff 0%,#faf8f3 100%);
    position:relative;
    overflow:hidden;
}

.about-agtri-sec:before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#f3e6c8;
    border-radius:50%;
    top:-220px;
    right:-180px;
    opacity:.45;
}

.about-agtri-sec:after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#f6edd8;
    border-radius:50%;
    left:-120px;
    bottom:-120px;
}

.about-agtri-img{
    position:relative;
    z-index:2;
}

.about-agtri-img img{
    width:100%;
    border-radius:28px;
    display:block;
    object-fit:cover;
    min-height:620px;
    box-shadow:0 25px 70px rgba(0,0,0,.12);
    transition:.5s;
}

.about-agtri-img:hover img{
    transform:scale(1.03);
}

.about-agtri-content{
    position:relative;
    z-index:2;
    padding-right:40px;
}

.about-tag{
    display:inline-block;
    background:#fff4d8;
    color:#9b6b00;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:20px;
}

.about-agtri-content h2{
    font-size:32px;
    line-height:1.2;
    font-weight:700;
    color:#1b1b1b;
    margin-bottom:10px;
    position:relative;
}

.about-agtri-content h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#821918;
    display:block;
    margin-top:10px;
    border-radius:30px;
}

.about-agtri-content p{
    color:#5d5d5d;
    font-size:15px;
    line-height:1.95;
    margin-bottom:12px;
    text-align:justify;
}

@media(max-width:991px){

.about-agtri-sec{
    padding:70px 0;
}

.about-agtri-content{
    padding-left:0;
    margin-top:40px;
}

.about-agtri-content h2{
    font-size:34px;
}

.about-agtri-img img{
    min-height:auto;
}

}

@media(max-width:576px){

.about-agtri-content h2{
    font-size:28px;
}

.about-agtri-content p{
    font-size:15px;
    line-height:1.8;
}

.about-tag{
    font-size:12px;
    letter-spacing:1px;
}

.about-agtri-img img{
    border-radius:18px;
}

}



/*--why choose us css--*/



/*==========================================
WHY CHOOSE US
==========================================*/

.why-agtri-sec{
    padding:70px 0;
    background:linear-gradient(180deg,#ffffff 0%,#faf8f2 100%);
    position:relative;
    overflow:hidden;
}

.why-agtri-sec:before{
    content:"";
    position:absolute;
    width:339px;
    height:339px;
    background:#f7efd8;
    border-radius:50%;
    top:-180px;
    left:-180px;
    opacity:.8;
}

.why-agtri-sec:after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:#f4ebd2;
    border-radius:50%;
    bottom:-140px;
    right:-140px;
    opacity:.8;
}

.why-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:#fff4dc;
    color:#b8860b;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.why-agtri-sec h2{
    font-size:32px;
    font-weight:700;
    line-height:1.2;
    color:#1e1e1e;
    margin-bottom:25px;
}

.why-agtri-sec h2:after{
    content:"";
    width:90px;
    height:4px;
    background:#b8860b;
    display:block;
    border-radius:30px;
    margin-top:18px;
}

.why-agtri-sec p{
    font-size:15px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.why-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    border:1px solid #ece5d7;
    position:relative;
    z-index:2;
}

.why-box:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:linear-gradient(#b8860b,#dcb654);
    border-radius:25px 0 0 25px;
}

/*==============================
Feature List
==============================*/

.why-box ul{
    margin:0;
    padding:0;
    list-style:none;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.why-box ul li{
    position:relative;
    background:#faf8f2;
    border:1px solid #eee5d3;
    border-radius:16px;
    padding:20px 18px 20px 60px;
    color:#444;
    font-size:14px;
    line-height:1.8;
    font-weight:500;
    transition:.35s;
    min-height:120px;
    display:flex;
    align-items:center;
}

.why-box ul li:hover{
    background:#fff;
    border-color:#d7bf84;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-box ul li:before{
    content:"✓";
    position:absolute;
    left:18px;
    top:22px;

    width:30px;
    height:30px;

    border-radius:50%;
    background:#b8860b;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:16px;
    font-weight:700;

    transition:.3s;
}

.why-box ul li:hover:before{
    transform:scale(1.15);
    background:#2d7c32;
}

/*==================================
Tablet
==================================*/

@media(max-width:991px){

.why-agtri-sec{
    padding:70px 0;
}

.why-agtri-sec h2{
    font-size:34px;
}

.why-box{
    margin-top:40px;
    padding:30px;
}

.why-box ul{
    gap:15px;
}

}

/*==================================
Mobile
==================================*/

@media(max-width:767px){

.why-agtri-sec{
    padding:60px 0;
}

.why-tag{
    font-size:12px;
    letter-spacing:1px;
}

.why-agtri-sec h2{
    font-size:28px;
}

.why-agtri-sec p{
    font-size:15px;
    line-height:1.8;
}

.why-box{
    padding:22px;
    border-radius:18px;
}

.why-box ul{
    grid-template-columns:1fr;
    gap:15px;
}

.why-box ul li{
    min-height:auto;
    padding:16px 16px 16px 52px;
    font-size:15px;
}

.why-box ul li:before{
    left:15px;
    top:18px;
    width:26px;
    height:26px;
    font-size:14px;
}

}



/*--mission vission css--*/


.vision-mission-sec{
    padding:70px 0;
    background:
    radial-gradient(circle at top left,#e9f6ec 0%,transparent 28%),
    radial-gradient(circle at bottom right,#f7efd9 0%,transparent 30%),
    #ffffff;
    position:relative;
    overflow:hidden;
}

.vision-mission-sec:before{
    content:"";
    position:absolute;
    width:310px;
    height:310px;
    background:#f6ecd4;
    border-radius:50%;
    top:-170px;
    right:-170px;
}

.vision-mission-sec:after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:#f9f3e5;
    border-radius:50%;
    bottom:-120px;
    left:-120px;
}

.section-title{
    max-width:760px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.section-title span{
    display:inline-block;
    background:#fff4db;
    color:#b8860b;
    padding:10px 24px;
    border-radius:40px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.section-title p{
    color:#666;
    font-size:16px;
    line-height:1.9;
}

.vm-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    position:relative;
    border:1px solid #ece5d7;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    transition:.4s;
    overflow:hidden;
}

.vm-card:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#b8860b,#e1bf61);
}

.vm-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(0,0,0,.10);
}

.vm-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#b8860b,#ddb44d);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:28px;
}

.vm-card h3{
    font-size:25px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
    position:relative;
}

.vm-card h3:after{
    content:"";
    display:block;
    width:70px;
    height:3px;
    background:#b8860b;
    margin-top:14px;
    border-radius:20px;
}

.vm-card p{
    color:#666;
    font-size:16px;
    line-height:2;
    margin:0;
    text-align:justify;
}

/*==========================
Tablet
==========================*/

@media(max-width:991px){

.vision-mission-sec{
    padding:70px 0;
}

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

.section-title h2{
    font-size:36px;
}

.vm-card{
    padding:35px;
}

.vm-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.vm-card h3{
    font-size:26px;
}

}

/*==========================
Mobile
==========================*/

@media(max-width:767px){

.vision-mission-sec{
    padding:60px 0;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:15px;
}

.vm-card{
    padding:25px;
    border-radius:18px;
}

.vm-icon{
    width:60px;
    height:60px;
    font-size:24px;
    border-radius:15px;
}

.vm-card h3{
    font-size:24px;
}

.vm-card p{
    font-size:15px;
    line-height:1.8;
}

}


/*--contact new css--*/


/*==================================================
CONTACT SECTION
==================================================*/

.contact-sec{
    padding:70px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

.contact-sec:before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#f5edd8;
    top:-180px;
    right:-180px;
}

.contact-sec:after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:#f9f5e8;
    bottom:-120px;
    left:-120px;
}

/*==================================================
Heading
==================================================*/

.contact-heading{
    max-width:760px;
    margin:0 auto 60px;
    position:relative;
    z-index:2;
}

.contact-heading span{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:#fff3dc;
    color:#b8860b;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.contact-heading h2{
    font-size:46px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.contact-heading p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin:0;
}

/*==================================================
Equal Height
==================================================*/

.contact-sec .row{
    align-items:stretch;
}

.contact-sec .col-lg-5,
.contact-sec .col-lg-7{
    display:flex;
}

/*==================================================
Left Contact Box
==================================================*/

.contact-info-box{
    width:100%;
    background:#fff;
    border-radius:24px;
    padding:45px;
    border:1px solid #ebe5d8;
    box-shadow:0 18px 50px rgba(0,0,0,.07);
    position:relative;
    overflow:hidden;
}

.contact-info-box:before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#b8860b,#e4c76c);
}

.contact-info-box h3{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin-bottom:18px;
}

.contact-info-box>p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
}

/*==================================================
Contact Item
==================================================*/

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px;
    border-radius:18px;
    border:1px solid #ece4d5;
    background:#fcfaf5;
    transition:.35s;
    margin-bottom:18px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item:hover{
    background:#fff;
    border-color:#d8bf83;
    transform:translateX(8px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-icon{
    width:58px;
    height:58px;
    flex-shrink:0;
    border-radius:16px;
    background:#fff3dc;
    color:#b8860b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-item h4{
    font-size:18px;
    color:#222;
    font-weight:700;
    margin-bottom:5px;
}

.contact-item a{
    color:#666;
    text-decoration:none;
    transition:.3s;
}

.contact-item a:hover{
    color:#b8860b;
}

.contact-item p{
    margin:0;
    color:#666;
    line-height:1.8;
}

/*==================================================
Form
==================================================*/

.contact-form-box{
    width:100%;
    background:#fff;
    border-radius:24px;
    padding:45px;
    border:1px solid #ebe5d8;
    box-shadow:0 18px 50px rgba(0,0,0,.07);
}

.contact-form-box h3{
    font-size:32px;
    font-weight:700;
    color:#222;
    margin-bottom:30px;
}

.contact-form-box .form-control{
    height:56px;
    border-radius:14px;
    border:1px solid #ddd;
    padding:15px 18px;
    font-size:15px;
    box-shadow:none;
    transition:.3s;
}

.contact-form-box textarea.form-control{
    height:170px;
    resize:none;
    padding-top:16px;
}

.contact-form-box .form-control:focus{
    border-color:#b8860b;
    box-shadow:0 0 0 4px rgba(184,134,11,.08);
}

.contact-btn{
    border:none;
    background:#b8860b;
    color:#fff;
    padding:16px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.contact-btn:hover{
    background:#9f7308;
    transform:translateY(-3px);
}

/*==================================================
Tablet
==================================================*/

@media(max-width:991px){

.contact-sec{
    padding:70px 0;
}

.contact-heading{
    margin-bottom:40px;
}

.contact-heading h2{
    font-size:36px;
}

.contact-info-box,
.contact-form-box{
    padding:30px;
}

.contact-info-box{
    margin-bottom:30px;
}

}

/*==================================================
Mobile
==================================================*/

@media(max-width:767px){

.contact-sec{
    padding:60px 0;
}

.contact-heading span{
    font-size:12px;
    letter-spacing:1px;
}

.contact-heading h2{
    font-size:30px;
}

.contact-heading p{
    font-size:15px;
}

.contact-info-box,
.contact-form-box{
    padding:22px;
    border-radius:18px;
}

.contact-info-box h3,
.contact-form-box h3{
    font-size:24px;
}

.contact-item{
    padding:15px;
    gap:15px;
}

.contact-item:hover{
    transform:none;
}

.contact-icon{
    width:50px;
    height:50px;
    border-radius:14px;
    font-size:20px;
}

.contact-item h4{
    font-size:16px;
}

.contact-item a,
.contact-item p{
    font-size:14px;
}

.contact-form-box .form-control{
    height:52px;
    font-size:14px;
}

.contact-form-box textarea.form-control{
    height:140px;
}

.contact-btn{
    width:100%;
    padding:15px;
}

}



/*--map css--*/