/* ===== CSS Reset & Variables ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e31f26;
    --primary-dark: #9b0008;
    --primary-light: #ff4f55;
    --accent: #FFD700;
    --accent-light: #FFE94D;

    /* Light theme backgrounds */
    --bg-dark: #fafafa;
    --bg-section: #f4f1f1;
    --bg-card: #ffffff;
    --bg-card-hover: #fff8f8;

    /* Light theme text */
    --text-primary: #1a1010;
    --text-secondary: #4a3535;
    --text-muted: #7a5e5e;

    /* Borders */
    --border: rgba(227, 31, 38, 0.18);
    --border-gold: rgba(255, 215, 0, 0.3);

    /* Shadows */
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 8px 32px rgba(227, 31, 38, 0.2);
    --shadow-gold: 0 8px 32px rgba(255, 215, 0, 0.25);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Montserrat', sans-serif;

    --whatsapp: #25D366;
    --instagram-1: #f09433;
    --instagram-2: #e6683c;
    --instagram-3: #dc2743;
    --instagram-4: #cc2366;
    --instagram-5: #bc1888;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(135deg, #e31f26 20%, #ff5e00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
    font-weight: 900 !important;
}

/* ===== Section Header ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(198, 40, 40, 0.15);
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(227, 31, 38, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    font-size: 1.1rem;
    color: white;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    color: #4a3535;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 10px;
    opacity: 0;
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(227, 31, 38, 0.07);
}

.nav-link.active::after {
    width: 12px;
    opacity: 1;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.order-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white !important;
    box-shadow: 0 4px 15px rgba(227, 31, 38, 0.25);
}

.order-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(227, 31, 38, 0.35);
}

.wa-cta {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366 !important;
    border: 1.5px solid rgba(37, 211, 102, 0.2);
}

.wa-cta:hover {
    background: #25D366;
    color: white !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger .bar {
    width: 28px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.96) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(251, 192, 45, 0.15);
    border: 1px solid rgba(251, 192, 45, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 700px;
    color: #1a1010;
    animation: fadeInUp 0.8s ease 0.1s both;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-shadow: 0 1px 5px rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(198, 40, 40, 0.4);
}

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

.btn-outline:hover {
    border-color: var(--primary-light);
    background: rgba(198, 40, 40, 0.1);
    transform: translateY(-3px);
}

.btn-outline-card {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
    width: 100%;
    justify-content: center;
}

.btn-outline-card:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(227, 31, 38, 0.15);
    border-radius: var(--radius);
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: fit-content;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(227, 31, 38, 0.3);
    border-radius: 50%;
    color: var(--primary);
    animation: bounce 2s infinite;
}

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

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 4px solid #f4f1f1;
    box-shadow: var(--shadow);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    top: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.exp-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.exp-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.about-content .section-badge {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-red);
}

.feature:hover .feature-icon {
    background: var(--primary);
    color: white;
}

/* Feature Icon Animations */
.feature:hover .fa-truck {
    animation: truckMove 0.8s ease-in-out infinite;
}

.feature:hover .fa-leaf {
    animation: leafSway 1s ease-in-out infinite;
    transform-origin: bottom center;
}

.feature:hover .fa-shield-alt {
    animation: shieldPulse 1s ease-in-out infinite;
}

.feature:hover .fa-clock {
    animation: clockSpin 2s linear infinite;
}

@keyframes truckMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

@keyframes leafSway {
    0%, 100% { transform: rotate(0); }
    50% { transform: rotate(20deg); }
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

@keyframes clockSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 31, 38, 0.1);
    border-radius: var(--radius-xs);
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.feature p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== Services Section ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(198, 40, 40, 0.15);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    padding: 20px 20px 8px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--bg-section);
}

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

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(198, 40, 40, 0.12);
}

.price-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(198, 40, 40, 0.12) 0%, var(--bg-card) 100%);
    box-shadow: 0 8px 32px rgba(198, 40, 40, 0.15);
    transform: scale(1.04);
}

.price-card.popular:hover {
    transform: scale(1.04) translateY(-6px);
}


.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.price-header {
    text-align: center;
    margin-bottom: 24px;
}

.price-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 31, 38, 0.08);
    border-radius: var(--radius-sm);
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--primary);
}

.price-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.price-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-amount {
    text-align: center;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.unit {
    color: var(--text-muted);
    font-size: 1rem;
}

.price-features {
    flex: 1;
    margin-bottom: 28px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-features li i {
    color: var(--primary-light);
    font-size: 0.8rem;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--bg-card);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--primary-light);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10000;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {  
    left: 40px; 
}
.lightbox-next {  
    right: 40px; 
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .lightbox-prev { left: 16px; }
    .lightbox-next { right: 16px; }
}

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



.contact-info-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info-box h3 i {
    color: var(--primary-light);
}

.work-hours {
    margin-bottom: 28px;
}

.work-hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.work-hour-row:last-child {
    border-bottom: none;
}

.cta-box {
    background: linear-gradient(135deg, rgba(198, 40, 40, 0.15), rgba(198, 40, 40, 0.05));
    border: 1px solid rgba(198, 40, 40, 0.3);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
}

.cta-box p {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 16px 0 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links-group h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulse-green 3s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.floating-tooltip {
    position: absolute;
    right: 72px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.floating-whatsapp:hover .floating-tooltip {
    opacity: 1;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Scroll Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    filter: blur(5px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Float Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Pulse animation for service icons */
.service-card:hover .service-icon img {
    transform: scale(1.15) rotate(1deg);
}

/* Feature icon animation */
.feature:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary);
    color: white;
}

/* ===== Mega Menu ===== */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 650px;
    background: #ffffff;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 1000;
    padding: 32px;
    border: 1px solid rgba(227, 31, 38, 0.1);
    cursor: default;
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
    pointer-events: auto;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-left: 1px solid rgba(227, 31, 38, 0.1);
    border-top: 1px solid rgba(227, 31, 38, 0.1);
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.mega-menu-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mega-menu-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.mega-menu-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mega-menu-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: left;
}

.mega-menu-item:hover {
    background: rgba(227, 31, 38, 0.02);
    border-color: rgba(227, 31, 38, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(227, 31, 38, 0.06);
}

.mega-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(227, 31, 38, 0.1), rgba(255, 79, 85, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.mega-menu-item:hover .mega-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    transform: scale(1.05) rotate(5deg);
}

.mega-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.mega-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 10px;
}

.mega-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-menu-item:hover .mega-link {
    color: var(--accent);
}

.mega-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.mega-menu-item:hover .mega-link i {
    transform: translateX(4px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.mobile-only-ctas {
    display: none;
}

@media (max-width: 868px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 8px;
        z-index: 999;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: auto;
        padding: 10px 24px;
        font-size: 1.25rem;
        font-weight: 700;
        border-radius: 50px;
        color: #1a1010;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        opacity: 0;
        transition: var(--transition);
        z-index: -1;
        border-radius: inherit;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #fff;
        transform: translateY(-3px);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        opacity: 1;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Show WhatsApp and Instagram links in mobile menu */
    .nav-links::after {
        display: none;
    }

    .has-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .mega-menu {
        position: static;
        width: 100%;
        max-width: 320px;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0 10px;
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        margin: 0;
        background: transparent;
        transition: all 0.3s ease;
    }
    
    .has-dropdown.open .mega-menu {
        opacity: 1;
        visibility: visible;
        height: auto;
        padding: 10px 0 20px;
        margin-top: 10px;
        border-top: 1px solid rgba(227, 31, 38, 0.1);
    }

    .has-dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }
    
    .mega-menu::before, .has-dropdown::after {
        display: none;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .mega-menu-header {
        display: none;
    }

    .mega-menu-item {
        background: rgba(255,255,255,0.8);
        border: 1px solid rgba(227, 31, 38, 0.08);
        padding: 10px 8px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .mega-menu-item .mega-content p,
    .mega-menu-item .mega-link {
        display: none;
    }

    .mega-menu-item .mega-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .mega-menu-item .mega-content h5 {
        font-size: 0.8rem;
        margin-bottom: 0;
        line-height: 1.2;
    }

    .mobile-only-ctas {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 0 20px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .mobile-only-ctas .nav-cta {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1.05rem;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .mobile-only-ctas .order-cta {
        background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
        color: white !important;
        border: none !important;
    }

    .mobile-only-ctas .wa-cta {
        background: #25D366 !important;
        color: white !important;
        border: none !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-images {
        max-width: 500px;
    }

    .hero-stats {
        gap: 20px;
        padding: 20px 24px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .price-card.popular:hover {
        transform: translateY(-6px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }



    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 540px) {
    .section {
        padding: 72px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-img-secondary {
        width: 140px;
        height: 140px;
        right: -10px;
        bottom: -20px;
    }

    .about-experience {
        left: -10px;
        top: -15px;
        padding: 14px 18px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }



    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-tooltip {
        display: none;
    }
}

/* ===== Extras ===== */

/* === Logo === */
.navbar .logo-img {
    height: 110px;
}
.navbar.scrolled .logo-img {
    height: 85px;
}
@media (max-width: 868px) {
    .navbar .logo-img, .navbar.scrolled .logo-img {
        height: 90px;
    }
}
@media (max-width: 480px) {
    .navbar .logo-img, .navbar.scrolled .logo-img {
        height: 65px;
    }
}
.logo-img {
    height: 100px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(227, 31, 38, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: contain;
}

.hero-title-logo {
    height: 1.3em;
    vertical-align: middle;
    display: inline-block;
    margin-bottom: 0.1em;
    filter: drop-shadow(0 4px 16px rgba(227, 31, 38, 0.25));
}
.logo:hover .logo-img {
    transform: scale(1.08);
    filter: drop-shadow(0 6px 24px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 16px rgba(227, 31, 38, 0.5));
}

/* === Hero Logo Watermark — CENTERED === */
.hero-logo-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    height: 580px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.18;
    animation: watermark-float 7s ease-in-out infinite;
}
.hero-logo-watermark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.2));
}

@keyframes watermark-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%       { transform: translateY(-18px) rotate(0deg); }
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--accent-light));
}

/* === Enhanced btn-primary with logo red === */
.btn-primary {
    background: linear-gradient(135deg, #e31f26, #ff4f55);
    color: #fff;
    box-shadow: 0 4px 20px rgba(227, 31, 38, 0.35);
}
.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(227, 31, 38, 0.45);
    background: linear-gradient(135deg, #ff4f55, #FFD700);
}

/* === hero-badge gold === */
.hero-badge {
    background: rgba(255, 215, 0, 0.22) !important;
    border: 1px solid rgba(255, 215, 0, 0.6) !important;
    color: #b8860b !important; /* Darker gold for better readability on light bg */
    font-weight: 700 !important;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

/* === Section badge red tint === */
.section-badge {
    background: rgba(227, 31, 38, 0.12);
    border: 1px solid rgba(227, 31, 38, 0.25);
    color: var(--primary-light);
}

/* === Hero stats — handled in main rule above === */
/* === Popular badge gold === */
.popular-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* === Service and price card red hover glow === */
.service-card:hover {
    box-shadow: 0 16px 48px rgba(227, 31, 38, 0.18);
}
.price-card:hover {
    box-shadow: 0 12px 40px rgba(227, 31, 38, 0.15);
}
.price-card.popular {
    box-shadow: 0 8px 32px rgba(227, 31, 38, 0.2);
    border-color: var(--primary);
}

/* === Popular badge red→yellow gradient === */
.popular-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* === Service and price card red hover glow === */
.service-card:hover {
    box-shadow: 0 16px 48px rgba(227, 31, 38, 0.15);
}
.price-card:hover {
    box-shadow: 0 12px 40px rgba(227, 31, 38, 0.12);
}
.price-card.popular {
    box-shadow: 0 8px 32px rgba(227, 31, 38, 0.18);
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(227, 31, 38, 0.06) 0%, #ffffff 100%);
}

/* === btn-outline light theme === */
.btn-outline {
    background: transparent;
    color: #1a1010;
    border: 2px solid rgba(227, 31, 38, 0.3);
}
.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(227, 31, 38, 0.07);
    color: var(--primary);
    transform: translateY(-3px);
}



/* === Mobile menu watermark stays centered === */
@media (max-width: 868px) {
    .hero-logo-watermark {
        width: 300px;
        height: 300px;
        /* stays centered via top:50% left:50% translate */
    }
}

@media (min-width: 1025px) {
    /* Restore system cursor and ensure it behaves normally */
    body { cursor: auto; }
}

@media (max-width: 1024px) {
    #cursor-dot, #cursor-ring {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    html, body {
        cursor: none !important;
    }
    
    a, button, .service-card, .price-card, .gallery-item, .contact-card, .feature, .nav-link, .logo, .floating-whatsapp, .mega-menu-item, .process-item, .mebel-type-card {
        cursor: none !important;
    }
}

#cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
    box-shadow: 0 0 8px rgba(227, 31, 38, 0.6);
}

#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1), height 0.35s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.3s ease, opacity 0.3s ease;
    opacity: 0.55;
    /* flower petal background pattern */
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
}

/* cursor grows on hoverable elements */
body.cursor-hover #cursor-dot {
    width: 18px;
    height: 18px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(255, 215, 0, 0.8);
}
body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: var(--accent);
    opacity: 0.7;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
}

/* ===== Smooth Hover Animations ===== */
.service-card,
.price-card,
.gallery-item,
.contact-card,
.feature,
.btn,
.nav-link,
.footer-socials a,
.logo-img,
.process-item,
.mebel-type-card {
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}

.service-card img,
.gallery-item img,
.about-img-main img {
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Gallery overlay smooth */
.gallery-overlay {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Watermark float animation — must reset transform origin for centered version */
/* === Aesthetic Text === */
.aesthetic-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    position: relative;
    display: inline-block;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(227, 31, 38, 0.3);
}

.aesthetic-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 215, 0, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Watermark float animation — must reset transform origin for centered version */
@keyframes watermark-float {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(-2deg); }
    33%       { transform: translate(-50%, -52%) scale(1.02) rotate(0deg); }
    66%       { transform: translate(-50%, -48%) scale(0.99) rotate(1deg); }
}


