@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D2691E;
    --secondary-color: #F4A460;
    --accent-color: #FFD700;
    --dark-brown: #8B4513;
    --light-brown: #DEB887;
    --text-color: #2C2416;
    --text-light: #6B5B4A;
    --light-bg: #FFFBF7;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(210, 105, 30, 0.1);
    --shadow: 0 4px 25px rgba(210, 105, 30, 0.15);
    --shadow-lg: 0 10px 40px rgba(210, 105, 30, 0.2);
    --gradient-primary: linear-gradient(135deg, #D2691E 0%, #F4A460 50%, #FFD700 100%);
    --gradient-hero: linear-gradient(135deg, rgba(210, 105, 30, 0.85) 0%, rgba(244, 164, 96, 0.85) 100%);
    --gradient-card: linear-gradient(135deg, #FFFBF7 0%, #FFF8E7 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF7 100%);
    overflow-x: hidden;
}

/* Decorative Background Elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 164, 96, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* General Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-color);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(210, 105, 30, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-container img {
    height: 70px;
    width: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.2);
    border: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.logo-container:hover img {
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    transform: rotate(2deg);
}

.logo-container h1 {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    position: relative;
    font-size: 0.95rem;
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.6) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: var(--gradient-hero); */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    max-width: 900px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1.2;
    animation: fadeInUp 1.2s ease-out 0.2s both;
}

.hero-content .tagline {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease-out 0.4s both;
    font-family: 'Playfair Display', serif;
}

.hero-content .tagline:last-of-type {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 400;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.8s both;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 3rem;
    position: relative;
    z-index: 1;
}

/* Section Headings */
.section-title {
    text-align: center;
    font-size: 3.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title::before {
    content: '✨';
    position: absolute;
    bottom: -15px;
    left: calc(50% - 60px);
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* About Section */
.about-content {
    background: var(--gradient-card);
    padding: 5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    border: 2px solid rgba(210, 105, 30, 0.1);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(210, 105, 30, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content h2 {
    color: var(--dark-brown);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
}

.about-content ul {
    margin-left: 3rem;
    margin-bottom: 2.5rem;
}

.about-content li {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
}

.about-content li::marker {
    color: var(--primary-color);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Products Section */
.products-section {
    background: var(--light-bg);
    border-radius: 30px;
    margin: 4rem auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    border: 3px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    z-index: 2;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover img {
    transform: scale(1.15);
}

.product-card-content {
    padding: 2.5rem;
    position: relative;
    background: var(--white);
}

.product-card h3 {
    color: var(--dark-brown);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.product-detail img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
    border: 4px solid var(--accent-color);
}

.product-detail img:hover {
    transform: scale(1.03);
}

.product-detail-content h1 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
}

.product-detail-content h2 {
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
}

.product-detail-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 90%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.product-detail-content h3 {
    color: var(--dark-brown);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.7rem;
    font-weight: 600;
}

.product-detail-content p,
.product-detail-content li {
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-color);
}

.product-detail-content ul {
    margin-left: 2rem;
    margin-bottom: 2.5rem;
    list-style: none;
}

.product-detail-content ul li {
    position: relative;
    padding-left: 2rem;
}

.product-detail-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow);
    aspect-ratio: 1;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.5s ease;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    position: relative;
    z-index: 0;
}

.gallery-item:hover img {
    transform: scale(1.2);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    background: var(--gradient-card);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(210, 105, 30, 0.1);
}

.contact-info h3 {
    color: var(--dark-brown);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-color);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form {
    background: var(--white);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(210, 105, 30, 0.1);
}

.contact-form h3 {
    color: var(--dark-brown);
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid #E8E8E8;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(210, 105, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 6px 20px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--gradient-card);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid rgba(210, 105, 30, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-color);
    position: absolute;
    top: 10px;
    left: 25px;
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-text {
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    line-height: 2;
    padding-top: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author::before {
    content: '—';
    margin-right: 0.8rem;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease-out 1s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.floating-btn:hover::before {
    width: 120px;
    height: 120px;
}

.floating-btn:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.floating-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 3rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

footer::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

footer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

footer p:first-child {
    font-weight: 600;
    font-size: 1.2rem;
}

footer p:last-child {
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .logo-container h1 {
        font-size: 1.8rem;
    }

    .logo-container img {
        height: 60px;
    }

    .nav-links {
        gap: 0.2rem;
        justify-content: center;
    }

    .nav-links a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero {
        height: 75vh;
        min-height: 550px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hero-content .tagline {
        font-size: 1.4rem;
    }

    .hero-content .tagline:last-of-type {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .about-content {
        padding: 3rem 2rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-content h1 {
        font-size: 2.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info,
    .contact-form {
        padding: 3rem 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .floating-buttons {
        bottom: 25px;
        right: 25px;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

