/* PACCION DISTILLED WATER - Custom Styles */
:root {
    --primary: #007BFF;
    --secondary: #0056b3;
    --accent: #e3f2fd;
    --dark: #121212;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --font-main: 'Poppins', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logonav ul li a { text-decoration: none; color: #334155; font-weight: 500; font-size: 0.95rem; transition: 0.3s; padding: 5px 0; }
nav ul li a:hover { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu { 
    position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); 
    padding: 10px 0; min-width: 180px; border-radius: 8px; display: none; z-index: 100;
}
.dropdown-menu li { display: block; margin: 0; }
.dropdown-menu li a { padding: 10px 20px; display: block; font-size: 0.85rem; }
.dropdown-menu li a:hover { background: #f8fafc; }
.dropdown:hover .dropdown-menu { display: block; }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

.btn-admin {
    padding: 8px 12px;
    border: 1px solid var(--primary);
    border-radius: 2px;
    color: var(--primary);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.btn {
    padding: 15px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0; /* Sharp Edges */
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

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

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

.btn-wa {
    background: #25D366;
    color: var(--white);
    border: none;
}

.btn-wa:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px);
}

/* Sections Global */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
}

/* About Section */
.about {
    background: var(--light);
}

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

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

.about-image img {
    width: 100%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything including images/text */
    gap: 15px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%; /* Stretch actions container */
}

.product-card .btn {
    width: 100%;
    margin: 0;
    display: inline-block;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.product-card img {
    height: 200px;
    margin-bottom: 20px;
    object-fit: contain;
}

.product-card h3 {
    margin-bottom: 10px;
}

.product-card .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.why-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-item h4 {
    margin-bottom: 10px;
}

/* Order Form */
.order {
    background: var(--accent);
}

.order-form {
    background: var(--white);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.full-width {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: inherit;
}

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

/* ══════════════════════════════════════════════════════
   CUSTOMER REVIEWS — Premium Bento Layout
══════════════════════════════════════════════════════ */
.reviews-section {
    background: linear-gradient(160deg, #050d1a 0%, #0c1e3a 45%, #071224 100%);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
}

/* ── Floating bubbles ── */
.rv-bubbles { position:absolute; inset:0; pointer-events:none; }
.rv-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.25), rgba(14,165,233,.02));
    border: 1px solid rgba(14,165,233,.12);
    animation: bubbleFloat linear infinite;
}
.rv-bubble:nth-child(1)  { width:60px;  height:60px;  left:5%;  top:15%; animation-duration:18s; animation-delay:0s;   }
.rv-bubble:nth-child(2)  { width:30px;  height:30px;  left:12%; top:70%; animation-duration:12s; animation-delay:2s;   }
.rv-bubble:nth-child(3)  { width:90px;  height:90px;  left:22%; top:40%; animation-duration:22s; animation-delay:1s;   opacity:.5; }
.rv-bubble:nth-child(4)  { width:20px;  height:20px;  left:35%; top:80%; animation-duration:10s; animation-delay:3s;   }
.rv-bubble:nth-child(5)  { width:50px;  height:50px;  left:50%; top:10%; animation-duration:16s; animation-delay:0.5s; }
.rv-bubble:nth-child(6)  { width:75px;  height:75px;  left:62%; top:60%; animation-duration:20s; animation-delay:4s;   opacity:.4; }
.rv-bubble:nth-child(7)  { width:25px;  height:25px;  left:72%; top:30%; animation-duration:11s; animation-delay:1.5s; }
.rv-bubble:nth-child(8)  { width:45px;  height:45px;  left:80%; top:75%; animation-duration:14s; animation-delay:2.5s; }
.rv-bubble:nth-child(9)  { width:100px; height:100px; left:88%; top:20%; animation-duration:25s; animation-delay:0.8s; opacity:.3; }
.rv-bubble:nth-child(10) { width:15px;  height:15px;  left:93%; top:55%; animation-duration:9s;  animation-delay:5s;   }
.rv-bubble:nth-child(11) { width:55px;  height:55px;  left:8%;  top:50%; animation-duration:19s; animation-delay:3.5s; opacity:.6; }
.rv-bubble:nth-child(12) { width:35px;  height:35px;  left:45%; top:90%; animation-duration:13s; animation-delay:1.2s; }
@keyframes bubbleFloat {
    0%   { transform: translateY(0)   scale(1);    opacity: .6; }
    50%  { transform: translateY(-40px) scale(1.05); opacity: .3; }
    100% { transform: translateY(0)   scale(1);    opacity: .6; }
}

/* ── Hero Split Row ── */
.rv-hero {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.rv-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0ea5e9;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(14,165,233,.1);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(14,165,233,.2);
}

.rv-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 36px;
    letter-spacing: -.5px;
}
.rv-headline span {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats bar */
.rv-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(8px);
}
.rv-stat { flex: 1; text-align: center; }
.rv-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.rv-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.rv-stat-num span { font-size: 1.1rem; color: #0ea5e9; }
.rv-stat-label { font-size: .7rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.rv-stat-stars { color: #fbbf24; font-size: .85rem; margin-top: 4px; letter-spacing: 2px; }

/* Featured card */
.rv-featured {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 28px;
    padding: 44px;
    position: relative;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color .3s;
}
.rv-featured:hover { border-color: rgba(14,165,233,.35); }
.rv-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(14,165,233,.08), transparent 60%);
    pointer-events: none;
}
.rv-featured-quote {
    position: absolute;
    top: 16px; right: 28px;
    font-size: 8rem;
    line-height: 1;
    color: rgba(14,165,233,.12);
    font-family: Georgia, serif;
    pointer-events: none;
}
.rv-featured-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.rv-featured-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    font-style: italic;
    margin-bottom: 28px;
    position: relative;
}
.rv-featured-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.rv-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; color: #fff;
    flex-shrink: 0;
}
.rv-avatar-lg { width: 54px; height: 54px; font-size: 1rem; }
.rv-author-name { font-weight: 700; color: #fff; font-size: .95rem; }
.rv-author-role { font-size: .78rem; color: #0ea5e9; margin-top: 2px; }
.rv-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: #10b981;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.2);
    padding: 5px 14px;
    border-radius: 100px;
}

/* ── Bento Grid ── */
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.rv-card {
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    transition: transform .3s ease, border-color .3s, box-shadow .3s;
    animation: cardIn .5s ease both;
    animation-delay: var(--card-delay, 0s);
    cursor: default;
}
.rv-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(14,165,233,.3);
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(14,165,233,.15);
}
@keyframes cardIn {
    from { opacity:0; transform:translateY(24px); }
    to   { opacity:1; transform:translateY(0);    }
}

/* Accent top border per card */
.rv-card-1 { border-top: 3px solid #0ea5e9; }
.rv-card-2 { border-top: 3px solid #10b981; }
.rv-card-3 { border-top: 3px solid #f59e0b; }

.rv-card-inner { padding: 28px; height: 100%; display: flex; flex-direction: column; }

.rv-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}
.rv-card-stars { color: #fbbf24; font-size: .9rem; letter-spacing: 2px; }
.rv-card-quote-mark {
    font-size: 3rem;
    line-height: .8;
    color: rgba(255,255,255,.07);
    font-family: Georgia, serif;
}
.rv-card-text {
    flex: 1;
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    font-style: italic;
    margin-bottom: 22px;
}
.rv-card-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.rv-card-name { font-weight: 700; color: #fff; font-size: .85rem; }
.rv-card-role { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.rv-verified-icon {
    margin-left: auto;
    color: #10b981;
    font-size: .9rem;
}

/* ── CTA Strip ── */
.rv-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(14,165,233,.08);
    border: 1px solid rgba(14,165,233,.2);
    border-radius: 16px;
    padding: 24px 36px;
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
    gap: 16px;
}
.rv-cta p { color: rgba(255,255,255,.75); font-size: .95rem; }
.rv-cta strong { color: #0ea5e9; }
.rv-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0ea5e9;
    color: #fff;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: .25s;
    white-space: nowrap;
}
.rv-cta-btn:hover { background: #0284c7; transform: translateY(-2px); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .rv-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .reviews-section { padding: 70px 0 60px; }
    .rv-hero { grid-template-columns: 1fr; gap: 30px; }
    .rv-headline { font-size: 2.2rem; }
    .rv-stats { padding: 16px; }
    .rv-stat-num { font-size: 1.5rem; }
    .rv-featured { padding: 28px; }
    .rv-featured-text { font-size: 1rem; }
    .rv-grid { grid-template-columns: 1fr; }
    .rv-cta { flex-direction: column; text-align: center; }
}


.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(14,165,233,.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 80% 30%, rgba(99,102,241,.10) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-title h2 { color: #fff; }
.testimonials .section-title h2::after { background: #0ea5e9; }
.testimonials .section-title p { color: rgba(255,255,255,.6); margin-top: 10px; font-size: .95rem; }

/* Carousel track */
.reviews-carousel {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(20px);
}

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

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0,0,0,.4);
    border-color: rgba(14,165,233,.4);
}

/* Large decorative quote */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 14px; right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: rgba(14,165,233,.2);
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: #fbbf24;
    font-size: .9rem;
}

.review-text {
    font-size: .95rem;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: .5px;
}

.review-name {
    font-weight: 700;
    font-size: .9rem;
    color: #fff;
}

.review-tag {
    font-size: .75rem;
    color: #0ea5e9;
    margin-top: 2px;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.reviews-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    border: none;
    transition: .3s;
}

.reviews-dot.active {
    background: #0ea5e9;
    width: 24px;
    border-radius: 4px;
}

/* Mobile: 1 card */
@media(max-width: 768px) {
    .review-card { flex: 0 0 100%; }
}
/* Tablet: 2 cards */
@media(min-width: 769px) and (max-width: 1024px) {
    .review-card { flex: 0 0 calc(50% - 12px); }
}


/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info div {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary);
}

.map h3 {
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer h3 span {
    color: var(--primary);
}

.footer h4 {
    margin-bottom: 20px;
    position: relative;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.social-icons a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-grid, .footer-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    
    .full-width {
        grid-column: span 1;
    }
}

/* WhatsApp Floating Button */
.wa-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
    background-color: #128c7e;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .wa-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}
