/* ========================================
   BENCHA TRANSPORT & REMOVALS
   Professional Website Stylesheet
   Colors: Red #C41E3A, Black #1A1A1A
   ======================================== */

/* --- CSS Variables --- */
:root {
    --red: #C41E3A;
    --red-dark: #A01830;
    --red-light: #E8354F;
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #CCCCCC;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    --whatsapp: #25D366;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.7;
    background: var(--white);
    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: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--black); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header p { color: var(--gray-700); font-size: 1.05rem; margin-top: 12px; }
.section-header-light h2, .section-header-light p { color: var(--white); }

.section-tag {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    color: var(--red);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.section-tag-light {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,58,0.3); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); border-color: var(--whatsapp); }
.btn-whatsapp:hover { background: #1EB954; border-color: #1EB954; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--red); }
.btn-block { width: 100%; }

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--red);
    transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: var(--radius);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(196,30,58,0.2); }
.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('../images/truck-hero.jpg') center/cover no-repeat;
    padding: 120px 20px 40px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.9) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid rgba(196, 30, 58, 0.4);
    color: var(--red-light);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero h1 br { display: block; }
.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
}
.stat-item {
    flex: 1;
    padding: 24px 16px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    color: var(--red-light);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ========================================
   SERVICES
   ======================================== */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(196,30,58,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay .btn { border-color: var(--white); }
.service-content { padding: 28px; }
.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(196,30,58,0.1);
    color: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.service-content h3 { margin-bottom: 12px; }
.service-content > p { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 16px; }
.service-benefits { margin-bottom: 16px; }
.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
}
.service-benefits li i { color: var(--red); font-size: 0.75rem; }
.service-for { font-size: 0.88rem; color: var(--gray-500); margin-bottom: 20px; }

/* ========================================
   ABOUT
   ======================================== */
.about {
    padding: 100px 0;
    background: var(--gray-100);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.badge-number { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.about-lead { font-size: 1.1rem; color: var(--black); font-weight: 500; margin-bottom: 16px; }
.about-content > p { color: var(--gray-700); margin-bottom: 16px; }
.about-values { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.value-item > i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(196,30,58,0.1);
    color: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 2px;
}
.value-item h4 { margin-bottom: 4px; font-size: 1rem; }
.value-item p { font-size: 0.9rem; color: var(--gray-700); }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
    padding: 100px 0;
    background: var(--black);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.why-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.why-item:hover { background: rgba(255,255,255,0.08); border-color: var(--red); transform: translateY(-4px); }
.why-icon {
    width: 64px;
    height: 64px;
    background: rgba(196,30,58,0.2);
    color: var(--red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 20px;
}
.why-item h3 { color: var(--white); margin-bottom: 10px; font-size: 1.15rem; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ========================================
   SERVICE AREA
   ======================================== */
.service-area {
    padding: 100px 0;
    background: var(--white);
}
.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
}
.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    border: 1px solid rgba(0,0,0,0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    transition: var(--transition);
}
.area-tag:hover { background: rgba(196,30,58,0.1); border-color: var(--red); color: var(--red); }
.area-tag i { color: var(--red); font-size: 0.8rem; }
.area-tag.highlight { background: var(--red); color: var(--white); border-color: var(--red); font-weight: 700; }
.area-tag.highlight i { color: var(--white); }
.area-cta { text-align: center; }
.area-cta p { color: var(--gray-700); margin-bottom: 20px; font-size: 1.05rem; }
.area-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 100px 0;
    background: var(--gray-100);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26,26,26,0.9));
    padding: 40px 16px 16px;
    transform: translateY(100%);
    transition: var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.gallery-caption p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}
.lightbox-img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }

/* ========================================
   CONTACT
   ======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { margin-bottom: 20px; }
.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gray-900);
}
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196,30,58,0.1);
}
.form-disclaimer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray-500);
}
.form-disclaimer i { margin-right: 4px; }
.form-success {
    text-align: center;
    padding: 60px 20px;
}
.form-success i { font-size: 4rem; color: var(--whatsapp); margin-bottom: 20px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--gray-700); }

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.contact-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.contact-card > p { color: var(--gray-700); font-size: 0.92rem; margin-bottom: 20px; }
.dark-card {
    background: var(--black);
    border-color: transparent;
}
.dark-card h3 { color: var(--white); }

.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}
.contact-method:hover { border-color: var(--red); background: rgba(196,30,58,0.03); }
.method-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}
.phone-icon { background: var(--red); }
.whatsapp-icon { background: var(--whatsapp); }
.email-icon { background: var(--black); }
.contact-method h4 { font-size: 0.85rem; margin-bottom: 2px; color: var(--gray-500); font-weight: 600; }
.contact-method p { font-size: 1rem; font-weight: 600; color: var(--black); }

.hours-list { margin-top: 16px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
}
.hours-row:last-child { border-bottom: none; }

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--black);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer h4 { color: var(--white); margin-bottom: 20px; font-size: 1rem; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a, .footer ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer ul li a:hover { color: var(--red-light); }
.footer ul li i { color: var(--red); font-size: 0.85rem; min-width: 16px; }
.footer-bottom {
    padding: 24px 0;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ========================================
   FLOATING WHATSAPP
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.5); }
@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ========================================
   ANIMATIONS
   ======================================== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-110%);
        transition: var(--transition);
        border-bottom: 3px solid var(--red);
    }
    .nav-menu.active { transform: translateY(0); }
    .nav-cta { display: none; }
    .nav-link { width: 100%; padding: 12px 16px; }

    .hero { min-height: auto; padding: 120px 20px 60px; }
    .hero-stats { flex-wrap: wrap; }
    .stat-item { flex: 1 0 45%; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-image img { height: 300px; }
    .why-us-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-buttons .btn { width: 100%; max-width: 300px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 100px 16px 40px; }
    .hero-stats { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 16px; }
    .stat-item:last-child { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px 16px; }
    .service-image { height: 200px; }
    .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
}
