/* Global Styles */
:root {
    --primary-color: #c8a97e;
    --secondary-color: #b78a5c;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #6c757d;
    --transition: all 0.3s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--dark-color);
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title span {
    display: block;
    color: var(--primary-color);
    font-weight: 400;
    font-style: italic;
    margin-top: 5px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    font-size: 0.875rem;
    font-family: var(--font-secondary);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    /* vertically aligns text with image */
    gap: 10px;
    /* space between logo and text */
}

/* Logo Styles */
.logo a {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo span {
    color: var(--primary-color);
}

/* Main Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.main-menu li {
    position: relative;
}

.main-menu a {
    color: #333;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-menu a:hover,
.main-menu a.active {
    color: var(--primary-color);
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn,
.cart-btn {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    font-family: var(--font-secondary);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 100px 40px 40px;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-menu {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu a {
        padding: 12px 0;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* Light Background + Grid Pattern */
    background-color: #fcfbf9;
    background-image:
        linear-gradient(rgba(200, 169, 126, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 169, 126, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 120px 0 60px;
}

/* Wave Decoration */
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23c8a97e' fill-opacity='0.2' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,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'%3E%3C/path%3E%3Cpath fill='%23c8a97e' fill-opacity='1' d='M0,256L48,245.3C96,235,192,213,288,192C384,171,480,149,576,160C672,171,768,213,864,224C960,235,1056,213,1152,192C1248,171,1344,149,1392,138.7L1440,128L1440,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'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-content {
    flex: 0 0 45%;
    position: relative;
    z-index: 10;
    color: var(--dark-color);
}

.hero-images {
    flex: 0 0 50%;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: capitalize;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Hero Image Cards */
.hero-img-card {
    position: absolute;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: #000;
}

.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    opacity: 0.9;
}

/* Scattered Positions for Desktop - Spacing Increased */
.img-1 {
    top: -5%;
    left: -5%;
    transform: rotate(-12deg);
    z-index: 1;
}

.img-2 {
    top: 5%;
    right: -10%;
    transform: rotate(12deg);
    z-index: 2;
}

.img-3 {
    bottom: 5%;
    left: 0%;
    transform: rotate(-8deg);
    z-index: 3;
}

.img-4 {
    bottom: -5%;
    right: -5%;
    transform: rotate(10deg);
    z-index: 4;
}

.img-5 {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1.2);
    z-index: 5;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
    border-color: rgba(200, 169, 126, 0.4);
}

/* Hover Effects */
.hero-img-card:hover {
    z-index: 100 !important;
    transform: scale(1.3) rotate(0deg) !important;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-img-card:hover img {
    opacity: 1;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
        display: block;
        /* Allow block flow for scroll */
    }

    .hero-container {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .hero-content {
        width: 100%;
        padding: 0 20px;
        text-align: center;
        margin-bottom: 50px;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-images {
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 20px;
        gap: 20px;
        justify-content: flex-start;
        /* Hide scrollbar */
        scrollbar-width: none;
    }

    .hero-images::-webkit-scrollbar {
        display: none;
    }

    .hero-img-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        flex: 0 0 280px;
        /* Fixed width for cards in scroll */
        height: 350px;
        /* Fixed height */
        scroll-snap-align: center;
        margin: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .hero-img-card img {
        height: 100%;
    }

    .img-5 {
        transform: none !important;
    }

    /* Small animation hint for scrolling */
    .hero-images {
        background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0.5));
    }
}

/* Tailor Style Section */
.tailor-style {
    padding: 120px 0;
    background-color: #fff;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content,
.image-content {
    flex: 1;
}

.image-frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-frame img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
}

.feature-list h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-list p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Tailored Perfection Section */
.tailored-perfection {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(200, 169, 126, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(200, 169, 126, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.service-link i {
    margin-left: 5px;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Unparalleled Quality Section */
.unparalleled-quality {
    padding: 120px 0;
    background-color: #1a1a1a;
    color: white;
}

.unparalleled-quality .section-title,
.unparalleled-quality h2,
.unparalleled-quality h3,
.unparalleled-quality h4 {
    color: white;
}

.unparalleled-quality p {
    color: rgba(255, 255, 255, 0.8);
}

.quality-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.quality-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.quality-list h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.quality-list p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Categories Section */
.categories {
    padding: 120px 0;
    background-color: #fff;
}

.category-list {
    margin: 40px 0;
}

.category-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 15px;
}

.category-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.category-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Quality Showcase Section */
.quality-showcase {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background: url('./assets/images/Uncompromised.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quality-showcase h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.quality-showcase p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Shop Collection Section */
.shop-collection {
    padding: 120px 0;
    background-color: #f9f9f9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
    background-color: #25D366 !important;
    /* WhatsApp green */
    border-color: #25D366 !important;
    /* WhatsApp green */
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background-color: #128C7E !important;
    /* Darker WhatsApp green */
    border-color: #128C7E !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* WhatsApp button in product details */
.product-details .whatsapp-btn {
    margin-top: 15px;
    justify-content: center;
    width: 100%;
    padding: 10px 20px !important;
    text-align: center;
}

/* Hover content styling */
.hover-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-details {
    padding: 25px;
    text-align: center;
}

.product-details h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: #fff;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 0 20px;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    opacity: 0.2;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

.client {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.client-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.client-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    border-radius: 0;
    padding: 0 40px;
    margin-left: -1px;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: var(--font-secondary);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #999;
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
    font-family: var(--font-primary);
}

.footer-about .footer-logo span {
    color: var(--primary-color);
}

.footer-about p {
    margin-bottom: 20px;
    color: #999;
    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-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #999;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #999;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-hours ul li {
    margin-bottom: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-left: 20px;
}

.footer-hours ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}

.footer-legal {
    margin-top: 15px;
}

.footer-legal a {
    color: #777;
    margin: 0 10px;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-content {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 15px;
    }

    .section-content {
        flex-direction: column;
    }

    .text-content,
    .image-content {
        width: 100%;
    }

    .image-content {
        order: -1;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 0;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-outline {
        margin-left: 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    section {
        padding: 80px 0;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        margin: 15px 0 0;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 575px) {
    .container {
        width: 95%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}