:root {
    /* ─── NEW BRAND PALETTE (LIGHT THEME) ─── */
    --bg-dark:        #ffffff;   /* Pure white */
    --bg-darker:      #f9fafb;   /* Very light gray for alternate sections */
    --bg-section:     #ffffff;   /* Section backgrounds */
    --primary-color:  #0ea5e9;   /* sky blue */
    --primary-dark:   #0284c7;   /* deeper sky blue */
    --primary-glow:   rgba(14, 165, 233, 0.25);
    --accent-color:   #38bdf8;   /* light sky blue */
    --charcoal:       #1f2937;   /* charcoal grey for borders */
    --charcoal-light: #9ca3af;   /* lighter gray */
    --text-light:     #111827;   /* Dark text (was white previously) */
    --text-muted:     #4b5563;   /* Muted gray text */
    --glass-bg:       rgba(255, 255, 255, 0.85); /* Light glass */
    --glass-border:   rgba(14, 165, 233, 0.2);
    --glass-dark:     rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(14,165,233,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 110%, rgba(2,132,199,0.08) 0%, transparent 60%);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

html { scroll-behavior: smooth; }

a { text-decoration: none; color: inherit; }

/* ─── GLASSMORPHISM ─── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
}
.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--glass-border);
}
.glass-panel {
    background: rgba(14,165,233,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    transition: all 0.35s ease;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar.scrolled {
    padding: 0.7rem 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

/* Logo image in navbar */
.logo {
    display: flex;
    align-items: center;
}
.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 0 8px rgba(14,165,233,0.35));
    mix-blend-mode: multiply;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-links a:hover { color: var(--text-light); }
.nav-links a:hover::after { width: 100%; }

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1aad52);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(14,165,233,0.13) 0%, transparent 70%);
    top: -150px; left: -150px;
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(2,132,199,0.1) 0%, transparent 70%);
    bottom: -100px; right: 5%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    padding-top: 5rem;
}
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Stats bar */
.stats-bar {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}
.stat-item { text-align: left; }
.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
    padding-top: 5rem;
    position: relative;
    max-width: 50%;
}
.hero-slider {
    position: relative;
    width: 90%;
    height: 480px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2), 0 0 0 1px var(--glass-border);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
.slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 4s linear;
    transform: scale(1.05);
}
.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 10;
    pointer-events: none;
}
.slider-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: auto;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}
.slider-controls button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}
@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

/* ─── BUTTONS ─── */
.btn {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 18px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(14,165,233,0.5);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}
.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--charcoal-light);
}
.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(14,165,233,0.07);
}

/* ─── PRODUCTS SECTION ─── */
.section {
    padding: 5rem 5%;
    background-color: var(--bg-section);
    position: relative;
}
.section:nth-child(even) { background-color: var(--bg-darker); }

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 { font-size: 2.8rem; font-weight: 800; }
.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 0.75rem;
}

/* Top accent line */
.section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.category {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}
.flex-row-reverse { flex-direction: row-reverse; }

.cat-image {
    flex: 1;
    border-radius: 20px;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
.cat-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.cat-image:hover img { transform: scale(1.04); }

/* Blue glow on image panels */
.cat-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(14,165,233,0.2);
}

.cat-content { flex: 1; }
.cat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 14px;
}
.cat-content h3 i { color: var(--primary-color); }
.cat-content > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-list { list-style: none; margin-bottom: 0.5rem; }
.feature-list li {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}
.feature-list li i { color: var(--primary-color); font-size: 0.85rem; }

.mt-5 { margin-top: 5rem; }
.mt-2 { margin-top: 2rem; }

/* Grid Cards */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 6rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}
.glass-card {
    background: rgba(14,165,233,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
}
.card-img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 2rem; }
.card-body h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card-body h3 i { color: var(--primary-color); }

/* ─── WHY CHOOSE US / TRUST STRIP ─── */
.trust-strip {
    background: linear-gradient(135deg, var(--bg-darker) 0%, rgba(14,165,233,0.07) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 4rem 5%;
    text-align: center;
}
.trust-strip h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.trust-item {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.trust-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px var(--primary-glow);
}
.trust-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}
.trust-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── PARTNERS SECTION ─── */
.partners-section {
    padding: 4rem 5%;
    background: var(--bg-darker);
    text-align: center;
    border-top: 1px solid var(--glass-border);
}
.partners-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.partner-logo-wrap {
    background: rgba(255,255,255,0.92);
    border-radius: 14px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(14,165,233,0.15);
    min-width: 170px;
    min-height: 90px;
}
.partner-logo-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(14,165,233,0.2);
    border-color: var(--primary-color);
}
.partner-logo-wrap img {
    max-height: 70px;
    max-width: 150px;
    object-fit: contain;
    filter: none;
}

/* ─── FOOTER ─── */
.footer {
    padding: 5rem 5% 3rem;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 56px;
    width: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
    filter: drop-shadow(0 0 10px rgba(14,165,233,0.3));
    mix-blend-mode: multiply;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.8;
}
.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li i { color: var(--primary-color); font-size: 0.8rem; width: 16px; }
.footer-col ul li a:hover { color: var(--primary-color); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(14,165,233,0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom a { color: var(--primary-color); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: center;
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)), linear-gradient(135deg, #1f2937, #0284c7);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(14,165,233,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}
.page-header h1 span { color: var(--accent-color); text-shadow: 0 0 20px rgba(56,189,248,0.3); }
.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease, box-shadow 0.3s;
}
.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.details-section {
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}
.details-content { margin-bottom: 4rem; }
.details-list { list-style: none; }
.details-list li {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.2s;
    border-radius: 8px;
}
.details-list li:hover { background: var(--glass-bg); }
.details-list li i { color: var(--primary-color); }

/* ─── QUOTE FORM ─── */
.quote-container {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(14,165,233,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}
.quote-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}
.form-control {
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    border: 1.5px solid var(--charcoal-light);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, background 0.3s;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
textarea.form-control { resize: vertical; min-height: 150px; }

/* ─── ANIMATIONS ─── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible,
.fade-in-right.visible { opacity: 1; transform: translate(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    .hero-content { margin-bottom: 3rem; max-width: 100%; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { margin: 0 auto 2.5rem; }
    .hero-buttons { justify-content: center; }
    .stats-bar { justify-content: center; }
    .hero-image { justify-content: center; padding-top: 0; max-width: 100%; width: 100%; }
    .hero-slider { width: 100%; height: 350px; }

    .category, .flex-row-reverse {
        flex-direction: column;
        text-align: center;
    }
    .feature-list li { justify-content: center; }
    .cat-content h3 { justify-content: center; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .nav-links { display: none; }
    .section-title h2 { font-size: 2.2rem; }

    .partners-logos { gap: 1.5rem; }
    .partner-logo-wrap { min-width: 130px; padding: 0.8rem 1.2rem; }
}

/* ─── FLOATING SOCIAL MEDIA ─── */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.floating-icon:hover {
    transform: scale(1.1) translateX(-5px);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 12px 24px var(--primary-glow);
}

.floating-icon.whatsapp { color: #25D366; }
.floating-icon.whatsapp:hover { background: #25D366; color: #fff; }

@media (max-width: 768px) {
    .floating-social {
        right: 15px;
        gap: 10px;
    }
    .floating-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}
