/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-buttons.left {
    left: 20px;
    right: auto;
}
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.floating-btn.whatsapp {
    background-color: #25D366;
    animation-delay: 0.2s;
}

.floating-btn.call {
    background-color: #34B7F1;
    animation-delay: 0.4s;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Base Styles & Variables */
:root {
    --primary-color: #1a237e;
    --secondary-color: #d4af37;
    --accent-color: #c5cae9;
    --text-color: #333;
    --light-gray: #f5f5f5;
    --dark-overlay: rgba(0, 0, 0, 0.7);
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
    background: #303f9f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.section-padding {
    padding: 6rem 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        height: 50px;
    }
    
    .logo img {
        max-width: 160px;
    }
}

/* .logo a::before {
    content: '🏠';
    margin-right: 10px;
    font-size: 1.8rem;
} */

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 3.5rem;
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    padding-left: 25px;
    color: var(--primary-color);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../images/carpet1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* --- Modern Futuristic Cushion Gallery --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
    padding: 0 10px;
    perspective: 900px;
}

.product-card {
    background: rgba(255,255,255,0.85);
    border-radius: 22px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18), 0 0 0 1.5px #d4af37;
    backdrop-filter: blur(7px);
    border: 1.5px solid rgba(212,175,55,0.15);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1), box-shadow 0.35s, border 0.35s;
    position: relative;
    z-index: 1;
    min-height: 350 px;
    animation: fadeInUp 1.2s cubic-bezier(.39,.575,.565,1) both;
}

.product-card:hover {
    transform: translateY(-18px) scale(1.03) rotateY(1deg);
    box-shadow: 0 16px 40px 0 rgba(31, 38, 135, 0.25), 0 0 16px 2px #d4af37;
    border: 1.5px solid #d4af37;
}

.product-image {
    height: 230px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(.42,0,.58,1);
    filter: drop-shadow(0 4px 16px rgba(26,35,126,0.10));
}

.product-card:hover .product-image img {
    transform: scale(1.09) rotate(-2deg);
    filter: drop-shadow(0 8px 32px #d4af37cc);
}

.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(90deg, #d4af37 60%, #fffbe6 100%);
    color: #222;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px #d4af3722;
    letter-spacing: 1px;
    z-index: 2;
    text-shadow: 0 1px 4px #fffbe6aa;
    border: 1px solid #fffbe6;
}

.product-info {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.product-title {
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
    color: #1a237e;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 0 #fff;
}

.product-description {
    color: #757575;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.btn-enquire {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #1a237e 60%, #d4af37 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px #1a237e22;
    margin-top: 1.2rem;
    transition: background 0.3s, box-shadow 0.3s, transform 0.25s;
    outline: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-enquire:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: rgba(212,175,55,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s cubic-bezier(.25,.8,.25,1), height 0.4s cubic-bezier(.25,.8,.25,1);
    z-index: 0;
}

.btn-enquire:hover:before {
    width: 300px;
    height: 300px;
}

.btn-enquire:hover {
    background: linear-gradient(90deg, #d4af37 60%, #1a237e 100%);
    color: #fff;
    box-shadow: 0 8px 32px #d4af37aa;
    transform: translateY(-2px) scale(1.03);
}

.btn-enquire span {
    position: relative;
    z-index: 1;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .product-card {
        min-height: 340px;
    }
    .product-info {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .product-image {
        height: 160px;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- End Modern Futuristic Cushion Gallery --- */

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0.8rem 0;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

/* About Section */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.features {
    margin-top: 2rem;
}

.features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.features ul {
    margin-top: 1rem;
}

.features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact h2 {
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 3rem;
}

.contact-form {
    padding-right: 2rem;
    border-right: 1px solid #eee;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    display: none;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
    display: block;
}

.contact-info {
    padding-left: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-item p {
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-newsletter h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-links h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #c19b2e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding-right: 0;
        padding-bottom: 3rem;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .contact-info {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .nav {
        position: relative;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0 0 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.8rem 0;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        margin-bottom: 0.5rem;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
        background: var(--light-gray);
        border-radius: 4px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .swiper-container, .swiper-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .swiper-slide img {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }
    .hero-section {
        padding: 60px 0 30px 0;
        min-height: 70vh;
    }
    .hero-content {
        padding: 1rem 0.5rem;
    }
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 0.95rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 1.5rem;
    }
    .product-image {
        height: 140px;
    }
    .category-image {
        height: 120px;
    }
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .swiper-container, .swiper-wrapper {
        width: 100vw;
        margin-left: -16px;
    }
    .swiper-slide img {
        height: 120px;
    }
    .section-header h2 {
        font-size: 1.3rem;
    }
    .about-preview-content, .features-grid, .testimonials-slider {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-about, .footer-links, .footer-newsletter {
        text-align: center;
    }
}
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.2rem;
    }
    .hero-content p {
        font-size: 0.85rem;
    }
}
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-about,
    .footer-links,
    .footer-newsletter {
        text-align: center;
    }
    
    .footer-about h3::after,
    .footer-links h3::after,
    .footer-newsletter h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .filters::-webkit-scrollbar {
        height: 5px;
    }
    
    .filters::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .filters::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
    
    .filters::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Enquiry Form Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-in-out;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 50px 30px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 5px;
    line-height: 1;
    z-index: 1001;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.close-modal:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Add a subtle hover effect */
.close-modal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.close-modal:hover::before {
    opacity: 1;
}

.enquiry-form {
    margin-top: 20px;
}

.enquiry-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form input[type="number"],
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.enquiry-form input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.size-fields {
    display: flex;
    align-items: center;
    gap: 10px;
}

.size-separator {
    font-size: 18px;
    color: #666;
    margin: 0 5px;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 15% auto;
        padding: 40px 20px 20px;
        width: 95%;
    }
    
    .close-modal {
        right: 10px;
        top: 5px;
        font-size: 24px;
        width: 32px;
        height: 32px;
    }
    
    .close-modal::before {
        width: 36px;
        height: 36px;
    }
    
    .size-fields {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .size-separator {
        display: none;
    }
    
    .enquiry-form input[type="number"] {
        width: 100%;
    }
    
    .enquiry-form .btn {
        width: 100%;
    }
}

/* ===== Enhanced Footer Styles ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 70px 0 0;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about, 
.footer-links, 
.footer-contact,
.footer-newsletter {
    padding: 0 15px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
}

.footer h3 {
    color: rgb(232, 23, 23);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 3px;
}

.footer-about p {
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Contact Info */
.contact-info p {
    color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 12px;
    margin-top: 5px;
    min-width: 16px;
    text-align: center;
}

.certification {
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary-color);
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.85rem;
    margin-top: 10px;
    border-left: 3px solid var(--secondary-color);
}

/* Map Container */
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    border-radius: 6px;
}

/* Products List */
.products-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.products-list li {
    margin-bottom: 10px;
    color: #ddd;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.products-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 0.7rem;
}

.exhibition {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
}

.exhibition h4 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.exhibition p {
    margin: 0;
    color: #ddd;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.exhibition i {
    margin-right: 8px;
    color: var(--secondary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
}

.footer-bottom a {
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-bottom strong {
    color: var(--secondary-color);
    font-weight: 500;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 1.5rem;
    color: #aaa;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about, 
    .footer-links, 
    .footer-contact,
    .footer-newsletter {
        padding: 0;
        text-align: center;
    }
    
    .footer h3 {
        margin-bottom: 20px;
    }
    
    .footer-links ul,
    .contact-info,
    .products-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-methods {
        margin-top: 15px;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-about, 
.footer-links, 
.footer-contact,
.footer-newsletter {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.footer-links { animation-delay: 0.1s; }
.footer-contact { animation-delay: 0.2s; }
.footer-newsletter { animation-delay: 0.3s; }
