@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Great+Vibes&display=swap');

:root {
    --primary: #8b0000; /* Deep Kantaron Red */
    --primary-light: #b22222;
    --secondary: #2e8b57; /* Forest Green */
    --accent: #c5a059; /* Muted Gold - Updated per user request */
    --bg-light: #fdfaf5;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

/* Global Scrollbar - Elegance */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 0, 0, 0.1);
    border-radius: 10px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Global Grid Background */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease, background 0.3s ease;
    mix-blend-mode: difference;
}

/* Header - Restored Floating Circular Design */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px); /* For entrance animation */
    width: 90%;
    max-width: 1200px;
    height: 65px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: headerSlideDown 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes headerSlideDown {
    from { transform: translate(-50%, -150px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.logo img {
    height: 55px; /* Scaled down for elegance */
    width: auto;
    display: block;
    transition: var(--transition-fast);
}

.logo img:hover {
    transform: scale(1.1) rotate(-5deg);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition-fast);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.2);
}

/* Hero Section Enhanced */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column; /* Centered layout */
    align-items: center;
    justify-content: center;
    padding: 120px 5% 0;
    background: radial-gradient(circle at center, #fff4f4 0%, #fdfaf5 70%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    max-width: 650px;
    z-index: 5;
}

.hero-content {
    max-width: 800px;
    z-index: 10; /* Above images */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -3px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-content h1.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.text-red {
    color: var(--primary); /* Using the primary red color */
    display: inline-block;
}

.reveal-up {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal-up.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero-title-wrap {
    position: relative;
    margin-bottom: 10px;
}

.hero-back-text {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    z-index: -1;
    white-space: nowrap;
    letter-spacing: 20px;
    opacity: 0;
    transition: all 1.5s ease-out;
}

.hero-back-text.animate {
    opacity: 1;
    letter-spacing: 25px;
}

.accent-text {
    color: var(--primary);
    position: relative;
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent);
    opacity: 0.2;
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 500px;
}

/* Dynamic Pill in Hero */
.dynamic-cta-pill {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    height: 50px;
    min-width: 250px; /* Force width as absolute children collapse it */
    justify-content: center;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pill-track {
    position: relative;
    height: 100%;
    width: 100%;
}

.pill-track span {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(100%) scale(0.8);
    opacity: 0;
    filter: blur(12px) brightness(0.5);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #ffd700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.pill-track span.active {
    opacity: 1;
    filter: blur(0) brightness(1.2);
    transform: translateY(-50%) scale(1);
    animation: cta-glow 2s infinite alternate;
}

.pill-track span.exit {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(-150%) scale(1.1);
}

@keyframes cta-glow {
    from { text-shadow: 0 0 10px rgba(255, 215, 0, 0.2); }
    to { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
}

.hero-image-scatter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* In background */
    pointer-events: none;
}

.scatter-img {
    position: absolute;
    filter: drop-shadow(0 15px 45px rgba(0,0,0,0.12));
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: center;
    border-radius: 25px;
    opacity: 0; /* Start hidden */
}

/* Enhanced Automatic floating animation - no mouse needed */
@keyframes floatContinuous {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(1deg); }
    50% { transform: translateY(5px) rotate(-1deg); }
    75% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Ultra-Smooth Hero Explosion - Truly from screen center */
@keyframes explodeFromCenter {
    0% {
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0) scale(0) rotate(45deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    100% {
        /* Final positions are defined in individual .sX classes */
        opacity: 0.5;
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

.hero-image-scatter .scatter-img {
    will-change: transform, opacity;
    animation: explodeFromCenter 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards,
               floatContinuous 15s infinite ease-in-out 1.8s;
}

/* Product Showcase Detail Section */
.product-showcase {
    padding: 150px 10%;
    background: #fff;
}

.showcase-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.showcase-row:nth-child(even) { flex-direction: row-reverse; }

.showcase-img {
    flex: 0.8; /* Shrinked as requested */
    max-width: 450px; /* More elegant size */
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    background: var(--white);
    padding: 15px;
}

.showcase-img img {
    width: 100%;
    border-radius: 30px;
    display: block;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.showcase-img:hover img { transform: scale(1.1); }

.showcase-content {
    flex: 1;
}

.showcase-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(139, 0, 0, 0.05);
    line-height: 1;
}

.showcase-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-list li i { color: var(--accent); }

.scatter-img.s1 { top: 15%; left: 10%; width: 220px; }
.scatter-img.s2 { top: 40%; left: 75%; width: 140px; }
.scatter-img.s3 { top: 10%; left: 80%; width: 180px; }
.scatter-img.s4 { top: 60%; left: 5%; width: 150px; }
.scatter-img.s5 { top: 20%; left: 70%; width: 160px; }
.scatter-img.s6 { top: 65%; left: 85%; width: 130px; }

/* Deco images removed from CSS */

.hero-image-scatter:hover .scatter-img {
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 120px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Products Grid Overhaul */
.products-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    justify-items: center;
}

.product-card {
    width: 100%;
    max-width: 350px;
    background: var(--white);
    padding: 30px;
    border-radius: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(80px) rotateX(15deg) scale(0.85); /* Premium 3D start */
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
}

.product-card:hover { transform: translateY(-15px); box-shadow: var(--shadow); border-color: rgba(139, 0, 0, 0.1); }
.product-card img { 
    width: 100%; 
    height: 240px; 
    object-fit: contain; 
    margin-bottom: 20px; 
    border-radius: 25px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img { transform: scale(1.05); }

.product-card h3 {
    margin-bottom: 15px;
}

.product-card .price {
    margin-bottom: 25px; /* Added margin to prevent overlap */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

/* Benefits Section Elegant */
.benefits-section { background: #fdfdfd; }
.benefits-container { max-width: 1000px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.benefit-item {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 45px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.02);
    transition: var(--transition-slow);
}
.benefit-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.benefit-item:hover { transform: translateY(-10px); box-shadow: var(--shadow); }

.benefit-icon-wrap {
    font-size: 3.5rem;
    min-width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fdfaf5 0%, #fff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.benefit-text h3 { font-size: 2.2rem; margin-bottom: 15px; color: var(--primary); }
.benefit-text p { font-size: 1.15rem; color: var(--text-muted); }

/* Testimonials Bento Grid */
.testimonials-section { padding: 120px 10%; background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: 1.2fr 2fr; gap: 25px; margin-top: 60px; }
.testi-card {
    background: var(--white);
    padding: 50px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid rgba(37, 211, 102, 0.15);
}
.testi-card:hover { transform: scale(1.02); box-shadow: 0 30px 60px rgba(37, 211, 102, 0.1); border-color: rgba(37, 211, 102, 0.4); }
.testi-icon { font-size: 2.5rem; margin-bottom: 25px; color: #25d366; }
.testi-content { font-size: 1.15rem; line-height: 1.8; color: var(--text-dark); margin-bottom: 40px; }
.testi-user { display: flex; align-items: center; gap: 20px; }
.user-avatar { width: 60px; height: 60px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #666; }
.testi-col { display: flex; flex-direction: column; gap: 25px; }
.testi-row-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.testi-card.large { height: 100%; background: linear-gradient(to bottom right, #fff, #f8fffb); }

/* Animations & Reveal */
@keyframes slideDown { from { transform: translateY(-70px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: var(--transition-slow); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* WhatsApp & Footer */
.whatsapp-float-wrap { position: fixed; bottom: 40px; right: 40px; display: flex; align-items: center; gap: 15px; z-index: 1000; }
.whatsapp-label { background: white; padding: 10px 20px; border-radius: 30px; font-weight: 600; opacity: 0; transform: translateX(20px); transition: var(--transition-fast); box-shadow: var(--shadow); pointer-events: none; }
.whatsapp-float-wrap:hover .whatsapp-label { opacity: 1; transform: translateX(0); }
.whatsapp-float { width: 65px; height: 65px; background: linear-gradient(135deg, #25d366, #128c7e); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; animation: pulse-wa 2s infinite; box-shadow: 0 15px 35px rgba(37, 211, 102, 0.3); }
@keyframes pulse-wa { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); } 70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* FAQ Section Style */
.faq-section { background: var(--bg-light); padding: 100px 10%; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; margin-bottom: 20px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.03); overflow: hidden; transition: var(--transition-fast); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.faq-header { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-header h3 { font-size: 1.1rem; color: var(--text-dark); }
.faq-toggle { font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-body { max-height: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); padding: 0 30px; opacity: 0; }
.faq-item.expanded { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.faq-item.expanded .faq-body { max-height: 500px; padding-bottom: 25px; opacity: 1; margin-top: 10px; }
.faq-item.expanded .faq-toggle { transform: rotate(-180deg); }

/* Product Details Modal */
.product-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-modal.active { visibility: visible; opacity: 1; }
.modal-backdrop {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}
.product-modal.active .modal-content {
    transform: scale(1) translateY(0);
}
.modal-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}
.modal-close:hover { color: var(--primary); transform: rotate(90deg); }
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    background: var(--bg-light);
    padding: 20px;
}
.modal-badge {
    background: rgba(139,0,0,0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}
.modal-info h2 { font-size: 2.2rem; color: var(--text-dark); margin-bottom: 10px; letter-spacing: -1px; }
.modal-price { font-size: 1.8rem; font-weight: 700; color: var(--accent); margin-bottom: 25px; }
.modal-features h4 { margin-bottom: 10px; font-size: 1.1rem; }
.modal-features ul { list-style: none; padding: 0; margin-bottom: 30px; }
.modal-features li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.modal-features li::before { content: '✓'; color: var(--primary); font-weight: bold; }
.modal-action { display: flex; gap: 20px; align-items: center; }
.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 5px;
}
.quantity-selector button {
    width: 40px; height: 40px;
    border: none; background: #fff;
    border-radius: 8px; cursor: pointer;
    font-size: 1.2rem; font-weight: 600;
    transition: all 0.2s;
}
.quantity-selector button:hover { background: #eee; }
.quantity-selector span { width: 40px; text-align: center; font-weight: 700; font-size: 1.1rem; }
.btn-block { flex: 1; text-align: center; font-size: 1.1rem; padding: 15px; }

/* Contact Section */
.contact-section { padding: 100px 5%; background: var(--bg-light); text-align: center; }
.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.08);
}
.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}
.contact-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.contact-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    text-align: left;
    margin-bottom: 60px;
}
.footer-info img {
    height: 70px;
    margin-bottom: 20px;
}
.footer-info p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}
.footer-links h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.2rem;
    font-weight: 700;
}
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* Mobile Optimization - Ultimate Responsiveness */
@media (max-width: 768px) {
    header { padding: 0 20px; height: 55px; }
    .logo img { height: 45px; }
    nav { display: none; }
    
    .hero { flex-direction: column; text-align: center; height: auto; padding: 140px 5% 60px; }
    .hero-content { align-items: center; display: flex; flex-direction: column; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-back-text { font-size: 3.5rem; top: -30px; left: 50%; width: 100%; text-align: center; transform: translateX(-50%); letter-spacing: 5px; }
    .hero-content p { font-size: 1rem; margin: 20px auto; }
    
    .hero-image-scatter { 
        width: 100%; 
        height: 100%; 
        position: absolute; 
        top: 0; 
        left: 0; 
        z-index: 1;
        overflow: hidden;
    }
    .scatter-img { width: 80px !important; border-radius: 12px; opacity: 0.4 !important; }
    .scatter-img.s1 { top: 10%; left: 10%; }
    .scatter-img.s2 { top: 60%; left: 75%; }
    .scatter-img.s3 { top: 15%; left: 70%; }
    .scatter-img.s4 { top: 70%; left: 15%; }
    .scatter-img.s5 { display: none; }
    .scatter-img.s6 { display: none; }

    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 2.2rem; }
    
    .products-container {
        padding: 20px 10px;
    }

    .products-grid { 
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        width: 100%;
        padding: 0;
    }
    
    .product-card {
        width: 100%;
        padding: 15px;
        border-radius: 20px;
    }
    .product-card img { height: 120px; margin-bottom: 10px; border-radius: 15px; }
    .product-card h3 { font-size: 0.85rem; margin-bottom: 5px; }
    .product-card .price { font-size: 1rem; }
    .product-card .btn-primary { padding: 8px 15px; font-size: 0.8rem; }
    .benefit-item { flex-direction: column !important; text-align: center !important; gap: 20px; padding: 30px; }
    .benefit-icon-wrap { margin: 0 auto; }
    
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-row-inner { grid-template-columns: 1fr; }
    
    .showcase-row { flex-direction: column !important; gap: 40px; margin-bottom: 80px; padding: 0 5%; }
    .showcase-img { width: 100%; max-width: 100%; flex: none; height: 300px; padding: 10px; }
    .showcase-img img { height: 100%; object-fit: cover; }
    .showcase-content { text-align: center; }
    .showcase-num { font-size: 4rem; opacity: 0.1; }
    .showcase-content h2 { font-size: 2.2rem; }
    .feature-list li { justify-content: center; font-size: 0.95rem; }
    
    .contact-container { flex-direction: column; gap: 20px; }
    .contact-card { padding: 30px 20px; }



    /* Modal Responsive */
    .modal-grid { grid-template-columns: 1fr; gap: 20px; }
    .modal-image img { height: 250px; }
    .modal-content { padding: 25px; width: 95%; max-height: 90vh; overflow-y: auto; }
    .modal-info h2 { font-size: 1.8rem; }
    .modal-action { flex-direction: column; }
    .btn-block { width: 100%; }

    .footer-top-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-links h3 { margin-bottom: 15px; }
    .footer-links a:hover { padding-left: 0; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .btn-primary { padding: 10px 20px; font-size: 0.9rem; }
}


/* Footer Image Logo Styles */
.footer-brand-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.footer-logo-img {
    max-width: 100%;
    height: auto;
    width: clamp(250px, 60vw, 700px); /* Fully responsive: min 250px, max 700px */
    object-fit: contain;
    display: block;
}

.footer-subtext {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--accent);
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    text-align: center;
    margin: 10px auto 30px auto;
}

.footer-brand-title span:hover {
    color: var(--primary);
    -webkit-text-stroke: 1.5px var(--primary);
    transform: translateY(-15px) scale(1.1);
    text-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition-fast);
    border: 1px solid rgba(0,0,0,0.05);
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 0, 0, 0.15);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    header { width: 95%; height: 60px; padding: 0 25px; }
    .logo img { height: 50px; }
    .hero { flex-direction: column; padding-top: 140px; text-align: center; height: auto; padding-bottom: 80px; }
    .hero-content { max-width: 100%; }
    .hero-content h1 { font-size: 3.5rem; }
    .hero-image-scatter { width: 100%; height: 400px; margin-top: 50px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-row-inner { grid-template-columns: 1fr; }
    .footer-brand-title { font-size: 4rem; letter-spacing: 5px; }
}
