@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Import the downloaded font CSS */
@import url('google-fonts.css');


:root {
    --primary-color: #8b6f5e;
    --secondary-color: #6b5645;
    --accent-color: #c4916c;
    --accent-light: #d2a294;
    --gold-accent: #f0e1da;
    --orange-accent: #cc7d33;
    --text-primary: #4a3c31;
    --text-secondary: #6b5645;
    --text-light: #8b6f5e;
    --bg-primary: #f0e1da;
    --bg-secondary: #f8f4ed;
    --bg-light: #fef8f3;
    --bg-dark: #6b5645;
    --border-color: #d2a294;
    --shadow-light: 0 2px 10px rgba(139, 111, 94, 0.08);
    --shadow-medium: 0 5px 20px rgba(139, 111, 94, 0.1);
    --shadow-heavy: 0 15px 35px rgba(139, 111, 94, 0.15);
    --gradient-primary: linear-gradient(135deg, #d2a294, #c4916c);
    --gradient-secondary: linear-gradient(135deg, #8b6f5e, #6b5645);
    --gradient-accent: linear-gradient(135deg, #f0e1da, #d2a294);
    --gradient-warm: linear-gradient(135deg, #d2a294, #c4916c);
    --gradient-orange: linear-gradient(135deg, #d2a294, #c4916c);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-primary);
}

/* Header Styles */
header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-light);
    /*position: sticky;*/
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 200px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.6rem;
    position: relative;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.logo-icon::after {
    content: "™";
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 0.7rem;
}

.logo-text {
    margin-left: 20px;
}

.logo-text h1 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.logo-text h1::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover .logo-text h1::after {
    transform: scaleX(1);
}

.logo-text p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-info div::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.contact-info div:hover::before {
    width: 100%;
}

.contact-info div:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: transparent;
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-info div:hover i {
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Navigation Menu */
.nav-container {
    background: var(--gradient-warm);
    position: relative;
    overflow: hidden;
}

.nav-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 18px 25px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link i {
    margin-left: 6px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    min-width: 220px;
    box-shadow: var(--shadow-heavy);
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--bg-secondary);
    color: var(--accent-color);
    padding-left: 25px;
}

.dropdown-item i {
    margin-right: 10px;
    width: 16px;
    text-align: center;
    color: var(--accent-color);
}

/* Hero Section with Enhanced Design */
.hero {
    background: url('../images/banner (4).jpg');		
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, transparent 50%, rgba(107, 86, 69, 0.3) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0e1da" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 0;
    padding: 0 20px;
}


.hero-content-h{
    color:#c09962;
    letter-spacing: 2px;
}



.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hero h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
    border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--bg-secondary);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    margin-right: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-secondary);
}

.breadcrumb li a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: var(--orange-accent);
}

.breadcrumb li::after {
    content: ">";
    margin-left: 10px;
    color: var(--text-secondary);
}

.breadcrumb li:last-child::after {
    content: "";
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: var(--gradient-warm);
    color: white;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--orange-accent);
    color: white;
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-accent);
}

/* Two-Section Layout */
.content-wrapper {
    display: flex;
    max-width: 1400px;
    margin: 60px auto 0;
    padding: 0 20px;
    gap: 40px;
}

/* Left Sidebar Section */
.left-sidebar {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 140px;
    height: fit-content;
}

.sidebar-section {
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.sidebar-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-section:hover::before {
    transform: scaleY(1);
}

.sidebar-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.sidebar-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.sidebar-section h3::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--orange-accent);
}

.sidebar-section h3 i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Enhanced Filter Styles */
.filter-group {
    margin-bottom: 5px;
    height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 15px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 
        inset 0 2px 5px rgba(0,0,0,0.02),
        0 5px 15px rgba(0,0,0,0.05),
        0 0 0 1px rgba(255,107,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* Custom Scrollbar Styling */
.filter-group::-webkit-scrollbar {
    width: 8px;
}

.filter-group::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
    margin: 5px 0;
}

.filter-group::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b00, #ff8c33);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
}

.filter-group::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff8c33, #ff6b00);
    transform: scale(1.1);
}

/* For Firefox */
.filter-group {
    scrollbar-width: thin;
    scrollbar-color: #c4916c #f0e1da;
}

/* Optional: Add gradient overlay for smooth edge */
.filter-group::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to top, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    border-radius: 0 0 16px 16px;
    opacity: 0.8;
}

.filter-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
    opacity: 0.8;
}

/* Style for filter items inside */
.filter-group .filter-item,
.filter-group .filter-btn {
    margin: 8px 0;
    padding: 10px 15px;
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.filter-group .filter-item:hover,
.filter-group .filter-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255,107,0,0.15);
    background: linear-gradient(135deg, #fff, #fff5eb);
}

.filter-group .filter-item.active,
.filter-group .filter-btn.active {
    background: linear-gradient(135deg, #ff6b00, #ff8c33);
    color: white;
    box-shadow: 0 5px 15px rgba(255,107,0,0.3);
}

/* Optional: Add scroll indicator animation */
@keyframes scrollHint {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

.filter-group:not(:hover)::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8c33, #ff6b00);
    opacity: 0.8;
}

.filter-group-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    position: relative;
}

.filter-group-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange-accent);
}

.filter-group-title i {
    font-size: 0.8rem;
    color: var(--accent-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    position: relative;
}

.filter-option::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.filter-option:hover::before {
    transform: scaleY(1);
}

.filter-option:hover {
    background: var(--bg-secondary);
    transform: translateX(5px);
}

.filter-option input {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    accent-color: var(--orange-accent);
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    flex: 1;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
}

.filter-count {
    font-size: 0.85rem;
    color: white;
    background: var(--gradient-orange);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

/* Enhanced Price Range Slider */
.price-range {
    margin: 20px 0;
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    gap: 15px;
}

.price-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.price-input:focus {
    outline: none;
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 3px rgba(204, 125, 51, 0.1);
}

.range-slider {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--border-color) 0%, var(--orange-accent) 50%, var(--border-color) 50%, var(--border-color) 100%);
    border-radius: 8px;
    margin: 20px 0;
    position: relative;
    cursor: pointer;
}

.range-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--orange-accent);
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    cursor: grab;
}

.range-slider:active::before {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Enhanced Popular Products Sidebar */
.sidebar-product {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    padding: 15px;
    position: relative;
}

.sidebar-product::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-product:hover::before {
    transform: scaleY(1);
}

.sidebar-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.sidebar-product:hover {
    background: var(--bg-secondary);
    transform: translateX(-5px);
    box-shadow: var(--shadow-light);
}

.sidebar-product-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

.sidebar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-product:hover .sidebar-product-image img {
    transform: scale(1.1);
}

.sidebar-product-info {
    flex: 1;
}

.sidebar-product-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-product-category {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 6px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.sidebar-product-price {
    font-weight: 800;
    color: var(--secondary-color);
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.sidebar-product-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: var(--shadow-light);
}

/* Main Content Section */
.main-content {
    flex: 1;
    min-width: 0;
}

/* Enhanced Products Section */
.products {
    background: var(--bg-primary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.section-title p::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--orange-accent);
    opacity: 0.5;
}

.product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-orange);
    transition: width 0.3s ease;
    z-index: -1;
}

.filter-btn.active, .filter-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--orange-accent);
}

.filter-btn.active::before, .filter-btn:hover::before {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(107, 86, 69, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-light);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.product-category::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover .product-category::after {
    transform: scaleX(1);
}

.product-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    position: relative;
}

.product-title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover .product-title::after {
    transform: scaleX(1);
}

.product-description {
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.product-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 0.85rem;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.product-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    position: relative;
}

.product-details span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.product-details span:hover::after {
    width: 100%;
}

.product-details i {
    color: var(--accent-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.product-details span:hover i {
    color: var(--orange-accent);
}

.product-actions {
    display: flex;
    gap: 12px;
}

/* Product Banner Styles */
.product-banner {
    background: linear-gradient(135deg, rgba(240, 225, 218, 0.95), rgba(248, 244, 237, 0.95)),
                url('https://picsum.photos/seed/textilepattern/1500/800.jpg');
    background-size: cover, cover;
    background-position: center, center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.product-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-orange);
}

.product-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-orange);
}

.btn-enquire {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--shadow-light);
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-enquire::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: left 0.6s ease;
    z-index: 1;
}

.btn-enquire:hover::before {
    left: 0;
}

.btn-enquire span {
    position: relative;
    z-index: 2;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-view {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%; 
    cursor: pointer;
    font-weight: 700;
    transition: all 0.6s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-view::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: left 0.3s ease;
    z-index: 1;
}

.btn-view:hover::before {
    left: 0;
}

.btn-view span {
    position: relative;
    z-index: 2;
}

.btn-view:hover {
    color: white;
    border: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 16px;
    width: 90%;
    max-width: 550px;
    padding: 40px;
    position: relative;
    animation: modalFadeIn 0.4s ease;
    box-shadow: var(--shadow-heavy);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    border-radius: 16px 16px 0 0;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-secondary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--gradient-orange);
    color: white;
    transform: rotate(90deg);
}

.enquiry-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.enquiry-form h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-accent);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.form-group label::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 20px;
    height: 2px;
    background: var(--orange-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange-accent);
    box-shadow: 0 0 0 3px rgba(204, 125, 51, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Enhanced About Section */
.about {
    background: var(--bg-secondary);
    padding: 80px 0;
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d2a294" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 1;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(204, 125, 51, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    position: relative;
    text-align: justify;
}

.about-text p:last-of-type {
    position: relative;
    padding-left: 20px;
}

.about-text p:last-of-type::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature i {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.feature:hover i {
    color: var(--orange-accent);
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature h4::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature:hover h4::after {
    transform: scaleX(1);
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

/* Testimonials Carousel Section */
.testimonials {
    background: var(--bg-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 60px 40px;
    background: var(--bg-secondary);
    text-align: center;
    position: relative;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    position: relative;
}

.testimonial-text::before, .testimonial-text::after {
    content: "\201C";
    font-size: 4rem;
    color: var(--orange-accent);
    position: absolute;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.testimonial-text::before {
    top: -20px;
    left: -30px;
}

.testimonial-text::after {
    content: "\201D";
    bottom: -40px;
    right: -30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid var(--bg-primary);
    position: relative;
}

.author-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--orange-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial:hover .author-image::after {
    opacity: 1;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    display: inline-block;
}

.author-info h4::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial:hover .author-info h4::after {
    transform: scaleX(1);
}

.author-info p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.testimonial-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-orange);
    transition: left 0.3s ease;
    z-index: 1;
}

.testimonial-btn:hover::before {
    left: 0;
}

.testimonial-btn i {
    position: relative;
    z-index: 2;
}

.testimonial-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    background: var(--orange-accent);
    border-radius: 50%;
    opacity: 0.3;
    transition: transform 0.3s ease;
}

.indicator.active {
    background: var(--gradient-orange);
    transform: scale(1.2);
}

.indicator.active::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Enhanced Footer */
footer {
    background: var(--gradient-secondary);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--orange-accent);
}

.footer-column p {
    margin-bottom: 15px;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    position: relative;
}

.footer-column p:last-child {
    position: relative;
    padding-left: 25px;
}

.footer-column p:last-child i {
    position: absolute;
    left: 0;
    color: var(--orange-accent);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--orange-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li:hover::before {
    opacity: 1;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.footer-links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-orange);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 1;
}

.social-links a i {
    position: relative;
    z-index: 2;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-medium);
}

.social-links a:hover::before {
    transform: scale(1);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.copyright::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--orange-accent);
}

/* Enhanced Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-orange);
    color: white;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    transform: translateX(400px);
    transition: transform 0.4s ease;
    z-index: 3000;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    visibility: hidden;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.toast i {
    font-size: 1.5rem;
}

/* Enhanced Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .left-sidebar {
        width: 100%;
        position: static;
        padding: 0;
        margin-bottom: 40px;
    }
    
    .sidebar-section {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 30px !important;
    }
    
    .about-text h3 {
        font-size: 2.2rem;
        text-align: center;
    }
    
     .about-text {
        order: 2; /* Text after image */
        text-align: center;
        padding: 0 15px;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }
    
    .about-text p {
        text-align: justify;
    }
    
    .about-text p:last-child {
        padding-left: 0;
    }
    
    .about-text p:last-child::before {
        display: none;
    }
    
    .about-image {
        order: 1; /* Image first */
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .nav-link {
        padding: 15px 20px;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link:hover {
        background: var(--bg-secondary);
        color: var(--accent-color);
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-secondary);
        margin-top: 5px;
        border-radius: 8px;
        display: none;
    }
    
    .nav-item.active .dropdown {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .nav-wrapper {
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .products {
        padding: 25px 20px;
    }
    
    .testimonial {
        padding: 40px 20px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 25px !important;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 20px !important;
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -36px !important;
        right: auto !important;
    }
    
    .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }
    
}

@media screen and (max-width: 576px) {
    .hero {
        height: 450px;
    }
    
    .hero-content {
       font-size: .8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    
    
    .logo-icon {
        width: 160px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        margin-top: 40px;
    }
    
    .testimonial-text::before, .testimonial-text::after {
        font-size: 3rem;
    }
    
    .testimonial-text::before {
        left: -15px;
    }
    
    .testimonial-text::after {
        right: -15px;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        gap: 30px;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-image {
        border-radius: 8px;
    }
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (min-width: 769px) {
    .mobile-menu-close {
        display: none !important;
    }
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(204, 125, 51, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.about-text p:last-child {
    position: relative;
    padding-left: 20px;
}

.about-text p:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.timeline-container h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--orange-accent);
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.timeline-content {
    background: var(--bg-primary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.timeline-content::before {
    content: "";
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--bg-primary);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -11px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -11px;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange-accent);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.timeline-description {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--orange-accent);
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-container h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.values-container h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--orange-accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.value-description {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-container h3 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.team-container h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--orange-accent);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.member-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.member-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 70%, rgba(107, 86, 69, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-image::before {
    opacity: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px 20px;
}

.member-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.member-position {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.member-bio {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.member-social a:hover {
    background: var(--gradient-orange);
    color: white;
    transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(210, 162, 148, 0.9), rgba(196, 145, 108, 0.9)),
                url('../images/banner (4).jpg');
    background-size: cover, cover;
    background-position: center, center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(107, 86, 69, 0.4) 100%);
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-container h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Contact Section - Completely Redesigned */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Completely New Contact Items Layout */
.contact-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
    background: var(--bg-primary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.contact-icon i {
    font-size: 1.3rem;
    color: #c4916c;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.contact-details p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--orange-accent);
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.contact-form h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
}

/* Map Section */
.map-section {
    padding: 0 0 60px;
}

.map-container {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.map-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
}

.map-overlay p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.faq-container h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}    

/* Privacy Policy Content */
.privacy-section {
    padding: 60px 0;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    text-align: justify;
}

.privacy-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.privacy-content h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
}

.privacy-content h4 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.privacy-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.privacy-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.privacy-content li {
    margin-bottom: 10px;
}

.privacy-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--orange-accent);
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    padding: 30px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-style: italic;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-text {
    padding-right: 20px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.brand-name::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--orange-accent);
}

.product-tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.product-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-medium);
    border-left: 4px solid var(--orange-accent);
}

.product-summary h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.product-summary h3 i {
    color: var(--orange-accent);
    margin-right: 10px;
}

.product-summary p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: justify;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.spec-item {
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.spec-details h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 3px;
}

.spec-details p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.key-highlights {
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-medium);
}

.key-highlights h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.key-highlights h3 i {
    color: var(--orange-accent);
    margin-right: 10px;
}

.highlight-list {
    list-style: none;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
}

.highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.highlight-item i {
    color: var(--orange-accent);
    margin-right: 10px;
    margin-top: 3px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.banner-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: scale(1.05);
}

.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-orange);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    transform: rotate(3deg);
}

.price-tag span {
    display: block;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    opacity: 0.9;
}

.color-swatch {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
}

.color-swatch-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-right: 10px;
    font-weight: 600;
}

.color-dots {
    display: flex;
    gap: 5px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: var(--shadow-light);
}

.sitemap-section {
    padding: 60px 0;
}

.sitemap-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
}

.sitemap-container h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
    text-align: center;
}

.sitemap-container h3::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--orange-accent);
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sitemap-category {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.sitemap-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sitemap-category:hover::before {
    transform: scaleY(1);
}

.sitemap-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.category-title i {
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.sitemap-links {
    list-style: none;
}

.sitemap-links li {
    margin-bottom: 12px;
    position: relative;
}

.sitemap-links li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sitemap-links li:hover::before {
    opacity: 1;
}

.sitemap-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    position: relative;
}

.sitemap-links a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-accent);
    transition: width 0.3s ease;
}

.sitemap-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.sitemap-links a:hover::before {
    width: 100%;
}

.terms-section {
    padding: 60px 0;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    text-align: justify;
}

.terms-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    position: relative;
}

.terms-content h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--orange-accent);
}

.terms-content h4 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.terms-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.terms-content ul {
    margin: 20px 0 20px 30px;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.terms-content li {
    margin-bottom: 10px;
}

.terms-content a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: var(--orange-accent);
    text-decoration: underline;
}

.hero-testimonials {
    background: url('../images/banner (4).jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 80%, transparent 50%, rgba(107, 86, 69, 0.3) 100%);
}

.hero-testimonials::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0e1da" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 2;
}

.hero-testimonials h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hero-testimonials h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
    border-radius: 2px;
}

.hero-testimonials p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d2a294" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 1;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--bg-primary);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-orange);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Grid Section */
.testimonials-grid-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--orange-accent);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--orange-accent);
    opacity: 0.1;
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--orange-accent);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
    border: 3px solid var(--bg-secondary);
    position: relative;
}

.author-avatar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--orange-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .author-avatar::after {
    opacity: 1;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.video-testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d2a294" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    z-index: 1;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--gradient-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}

.video-card:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gradient-primary);
}

.video-info {
    padding: 30px;
}

.video-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
    background: var(--bg-primary);
    text-align: center;
}

.client-logos h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.logo-item {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-item:hover::before {
    opacity: 0.1;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}


/* Timeline Media Query */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px !important;
        padding-right: 20px !important;
        left: 0 !important;
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -36px !important;
        right: auto !important;
    }
    
    .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }
    
    .contact-container {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-form {
        width: 100%;
        padding: 20px 15px; /* Adjust padding for mobile */
        margin: 0; /* Remove any margins */
        box-sizing: border-box; /* Ensure padding doesn't add to width */
    }
    
    .contact-form h3 {
        font-size: 1.5rem; /* Slightly smaller heading on mobile */
    }
    
    .form-row {
        flex-direction: column; /* Stack form fields vertically */
        gap: 15px;
    }
    
    .form-group {
        width: 100%; /* Full width inputs */
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box; /* Prevent inputs from overflowing */
    }
    
    /* Adjust contact items for mobile */
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    /* Map overlay adjustments */
    .map-overlay {
        left: 10px;
        right: 10px;
        padding: 10px 15px;
    }
    
    .map-overlay h4 {
        font-size: 1rem;
    }
    
    .map-overlay p {
        font-size: 0.8rem;
    }
    
    /* FAQ adjustments */
    .faq-container h3 {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
}


