/* ===============================
   VARIABLES & RESET
=============================== */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --secondary: #ff8c42;
    --dark: #0a192f;
    --light: #f8fafc;
    --gray: #64748b;
    --success: #25d366;
    --radius: 1rem;
    --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
    --shadow-md: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f1f5f9 !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ===============================
   NAVBAR PREMIUM
=============================== */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 45px;
    transition: var(--transition);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.brand-text .highlight {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 12px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.btn-whatsapp {
    background: var(--success);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37,211,102,0.4);
    color: white;
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ===============================
   BADGES & BUTTONS
=============================== */
.badge-bg {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 4px 14px 0 rgba(0,102,204,0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(0,102,204,0.4);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

/* ===============================
   STATS SECTION
=============================== */
.about-stats {
    background: white;
}

.stats-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-image-grid img {
    border-radius: 30px;
    transition: var(--transition);
}

.about-image-grid img:hover {
    transform: scale(1.02);
}

/* ===============================
   GALERIE CARD
=============================== */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.gallery-card img {
    transition: var(--transition);
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,102,204,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* ===============================
   PRODUCT CARDS
=============================== */
.product-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    overflow: hidden;
}

.product-img img {
    transition: var(--transition);
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
}

.product-body {
    padding: 20px;
    text-align: center;
}

.product-price span {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===============================
   SERVICES CARD
=============================== */
.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h5 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
}

/* ===============================
   LOGISTICS LIST
=============================== */
.list-check {
    list-style: none;
    padding-left: 0;
}

.list-check li {
    margin-bottom: 12px;
}

.list-check i {
    color: var(--primary);
    margin-right: 10px;
}

/* ===============================
   CTA WHATSAPP
=============================== */
.cta-whatsapp {
    background: linear-gradient(135deg, #075e54, #128c7e);
    padding: 60px 0;
    color: white;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content .btn-success {
    background: white;
    color: #075e54;
    border: none;
    font-weight: bold;
    margin-top: 20px;
}

.cta-content .btn-success:hover {
    background: #f0f0f0;
    transform: scale(1.02);
}

/* ===============================
   FOOTER
=============================== */
.footer {
    background: #0a192f;
    color: #94a3b8;
    padding-top: 70px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
}

.footer-brand h4 {
    color: white;
    margin: 0;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    text-align: center;
    margin-top: 50px;
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .stats-row {
        justify-content: center;
    }
    .cta-whatsapp {
        clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
    }
}

.btn-call {
    background: linear-gradient(135deg, #0a7e8c, #0a5c6e);
    color: white;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-call:hover {
    background: linear-gradient(135deg, #0c6b78, #084c5c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10,126,140,0.4);
    color: white;
}