/* ===== CSS Variables & Base - Logo Color Palette ===== */
:root {
    --color-fuchsia: #D81B60;
    --color-fuchsia-dark: #AD1457;
    --color-fuchsia-light: #EC407A;
    --color-rose-gold: #B76E79;
    --color-rose-gold-light: #E8A0A8;
    --color-peach: #FFAB91;
    --color-plum: #4A3F5C;
    --color-plum-dark: #352D40;
    --color-light-pink: #F8BBD9;
    --color-primary: #D81B60;
    --color-primary-dark: #AD1457;
    --color-primary-light: #EC407A;
    --color-accent: #B76E79;
    --color-gold: #E8A0A8;
    --color-cream: #FFF5F8;
    --color-cream-dark: #FFE4EC;
    --color-charcoal: #4A3F5C;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 100%;
    margin: 0 7%;
}

@media (max-width: 768px) {
    .container {
        margin: 0 4%;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, #EC407A 0%, #D81B60 50%, #AD1457 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(216,27,96,0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F06292 0%, #EC407A 50%, #D81B60 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216,27,96,0.5);
}

.btn:active {
    transform: translateY(0);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #34D399 0%, #25D366 50%, #16A34A 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.5);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #4ADE80 0%, #34D399 50%, #25D366 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.6);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.directions-btn {
    margin-bottom: 20px;
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #34D399 0%, #25D366 50%, #16A34A 100%);
    color: var(--color-white);
    padding: 14px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float i {
    font-size: 24px;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    transition: var(--transition);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 100%;
    margin: 0 7%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-primary);
    display: none; /* Shown via onerror when logo img fails */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-charcoal);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.btn-call-nav {
    padding: 10px 20px !important;
    font-size: 14px !important;
    background: linear-gradient(135deg, #34D399 0%, #25D366 50%, #16A34A 100%) !important;
    color: var(--color-white) !important;
    border-radius: var(--radius);
}

.btn-call-nav:hover {
    background: linear-gradient(135deg, #4ADE80 0%, #34D399 50%, #25D366 100%) !important;
    color: var(--color-white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1558171813-4c088753af8f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74,63,92,0.65) 0%, rgba(173,20,87,0.5) 50%, rgba(74,63,92,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 24px 80px;
}

.hero-content-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 24px;
    padding: 48px 56px 44px;
    max-width: 780px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-white);
    background: rgba(255,255,255,0.2);
    padding: 10px 22px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-title span {
    display: block;
    font-size: 0.5em;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.25em;
    margin-top: 6px;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero-tagline {
    font-size: clamp(14px, 2vw, 17px);
    font-family: var(--font-heading);
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

.hero-desc {
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 22px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    margin-bottom: 22px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.hero-features i {
    color: #FFD54F;
    font-size: 18px;
}

.hero-cta {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-hero {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 16px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    background: rgba(0,0,0,0.2);
    padding: 10px 18px;
    border-radius: 50px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.about-whatsapp {
    margin-top: 24px;
}

/* ===== Scroll Animations ===== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.animate-section .section-header {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.animate-section.visible .section-header {
    opacity: 1;
    transform: translateY(0);
}

.animate-card {
    opacity: 0;
    transform: translateY(32px);
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-card {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header.light .section-label,
.section-header.light h2 {
    color: var(--color-white);
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 12px;
}

.about-title,
.why-title {
    white-space: nowrap;
}

.about-credit {
    font-size: 14px;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 17px;
}

/* ===== About Section ===== */
.about-section {
    background: var(--color-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--color-text);
    font-size: 16px;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    overflow: hidden;
}

.service-card .btn:hover {
    transform: scale(1.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: calc(100% + 56px);
    aspect-ratio: 1920 / 1080;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    margin: -36px -28px 24px -28px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Products Section ===== */
.products-section {
    background: var(--color-white);
}

.products-section-header {
    text-align: center;
}

.products-section-header h2,
.products-section-header p {
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info .product-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.product-info .product-buttons .btn {
    flex: 1;
    min-width: 120px;
}

.product-info .product-buttons .btn {
    white-space: nowrap;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 6px;
}

.product-info p {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ===== Why Choose Us Section ===== */
.why-section {
    background: linear-gradient(135deg, var(--color-plum) 0%, var(--color-fuchsia-dark) 50%, var(--color-primary) 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    opacity: 0.5;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 28px;
    color: var(--color-rose-gold-light);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* ===== Reviews Section ===== */
.reviews-section {
    background: var(--color-cream);
}

.reviews-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: 33.333%;
    width: 33.333%;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    flex-shrink: 0;
}

.review-stars {
    color: var(--color-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.review-card p {
    font-size: 15px;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card cite {
    font-style: normal;
    font-weight: 500;
    color: var(--color-primary);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.slider-btn.prev {
    left: -24px;
}

.slider-btn.next {
    right: -24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-cream-dark);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--color-primary);
    width: 28px;
    border-radius: 5px;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: var(--color-cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-primary);
}

.contact-trust {
    display: flex;
    gap: 20px;
    margin: 24px 0;
}

.contact-trust .trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: var(--color-cream);
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--color-primary);
}

.contact-trust .trust-badge i {
    font-size: 20px;
    margin-bottom: 4px;
}

.contact-trust .trust-badge span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-light);
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.contact-form-map {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--color-cream);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-charcoal);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-question i {
    font-size: 14px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-charcoal);
    padding: 32px 0;
    text-align: center;
}

.footer-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-credit {
    margin-top: 8px;
}

.footer-credit a {
    color: var(--color-accent);
}

.footer-credit a:hover {
    color: var(--color-white);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card {
        min-width: 50%;
        width: 50%;
    }
    
    .slider-btn.prev { left: 0; }
    .slider-btn.next { right: 0; }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
    
    .hero-content-card {
        padding: 36px 24px 32px;
        margin: 0 12px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .hero-badge {
        font-size: 11px;
        letter-spacing: 0.1em;
        padding: 8px 18px;
    }
    
    .hero-title span {
        letter-spacing: 0.15em;
    }
    
    .nav-container {
        margin: 0 4%;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-title,
    .why-title {
        white-space: normal;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section {
        padding: 72px 0;
    }
    
    .review-card {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .whatsapp-float span {
        display: none;
    }
    
    .whatsapp-float {
        padding: 16px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .service-buttons {
        flex-direction: column;
    }
    
    .service-buttons .btn {
        width: 100%;
    }
    
    .product-buttons {
        flex-direction: column;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-buttons .btn {
        width: 100%;
    }
}
