/* --- GLOBAL VARIABLES --- */
:root {
    --navy: #0f172a;
    --slate: #64748b;
    --orange: #f97316;
    --light: #f8fafc;
    --white: #ffffff;
    --green: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .mobile-hide {
        display: none;
    }
    
}
@media (min-width: 600px) {
    .pc-hide {
        display: none;
    }
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background: var(--light);
    color: var(--navy);
    overflow-x: hidden;
    line-height: 1.7;
}
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}
ul {
    list-style: none;
}
html {
    scroll-behavior: smooth;
}

/* Layout Utilities */
/* .container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
} */
.section {
    padding: 100px 0;
}
.section-bg {
    background: white;
}
.text-center {
    text-align: center;
}
section[id] {
    scroll-margin-top: 100px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    line-height: 1.2;
    font-weight: 800;
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--navy);
}
.section-subtitle {
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

/* Buttons */
.btn {
    background: #e84b37;
    color: white;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.6);
}
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    box-shadow: none;
}
.btn-outline:hover {
    background: white;
    color: var(--navy);
}

/* TOP BAR & LANGUAGE */
.top-bar {
    background: #020617;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 10px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-info span {
    margin-right: 20px;
}
.top-info i {
    color: var(--orange);
    margin-right: 5px;
}
.lang-select {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
}
.lang-select option {
    color: black;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo i {
    color: var(--orange);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    position: relative;
}
.nav-links a:hover {
    color: var(--orange);
}
/* .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--orange);
    transition: 0.3s;
} */
.nav-links a:hover::after {
    /* width: 100%; */
}

/* HERO SLIDER */
.hero-video-wrapper {
    position: relative;
    height: 95vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 15s infinite;
    z-index: 0;
}
.slide:nth-child(1) {
    background-image: url("https://images.unsplash.com/photo-1604176354204-9268737828e4?auto=format&fit=crop&w=1600&q=80");
    animation-delay: 0s;
}
.slide:nth-child(2) {
    background-image: url("https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?auto=format&fit=crop&w=1600&q=80");
    animation-delay: 5s;
}
.slide:nth-child(3) {
    background-image: url("https://images.unsplash.com/photo-1550967396-1c05d7616235?auto=format&fit=crop&w=1600&q=80");
    animation-delay: 10s;
}
@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.05);
    }
    33% {
        opacity: 1;
        transform: scale(1.1);
    }
    43% {
        opacity: 0;
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
}

/* CLIENTS, ABOUT, STATS (Existing) */
.client-section {
    background: white;
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}
.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: 0.3s;
}
.client-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}
.client-logos i {
    font-size: 3rem;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-img {
    position: relative;
}
.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--light);
}
.exp-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--navy);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.stats-section {
    background: var(--navy);
    color: white;
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}
.stat-item h3 {
    font-size: 3.5rem;
    color: var(--orange);
    margin-bottom: 5px;
}

/* PRODUCT GRIDS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.p-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    border: 1px solid #f1f5f9;
}
.p-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}
.p-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.p-card:hover .p-img img {
    transform: scale(1.1);
}
.p-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--orange);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}
.p-body {
    padding: 30px;
}
.p-spec {
    font-size: 0.85rem;
    color: #64748b;
    background: #f1f5f9;
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* PROCESS & SUSTAINABILITY (Existing) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.process-card {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.process-card:hover {
    transform: translateY(-10px);
}
.p-icon {
    width: 70px;
    height: 70px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}
.sustain-section {
    background: #ecfdf5;
    padding: 100px 0;
}
.sustain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.check-list i {
    color: var(--green);
    background: white;
    padding: 10px;
    border-radius: 50%;
}

/* === NEW: TEAM SECTION === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 30px;
    border: 1px solid #f1f5f9;
    transition: 0.3s;
}
.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
}
.team-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
    background: #ddd;
}
.team-role {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-social i {
    color: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}
.team-social i:hover {
    color: var(--navy);
}

/* === NEW: BLOG SECTION === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
}
.blog-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.blog-content {
    padding: 25px;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--slate);
    margin-bottom: 10px;
    display: block;
}
.blog-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
}

/* TESTIMONIALS & FOOTER */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.review-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
footer {
    background: #0b1121;
    color: #94a3b8;
    padding: 100px 0 0;
    font-size: 0.95rem;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col h4 {
    color: white;
    margin-bottom: 25px;
}
.footer-col ul li {
    margin-bottom: 15px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}
.social-links a:hover {
    background: var(--orange);
}
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

/* WIDGETS */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
}

/* NEW: LIVE CHAT BUTTON */
.chat-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: var(--orange);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: 0.3s;
}
.chat-btn:hover {
    transform: scale(1.1);
}

.top-btn {
    position: fixed;
    bottom: 30px;
    right: 24px;
    background: var(--navy);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}
.top-btn:hover {
    opacity: 1;
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .nav-links,
    .top-bar {
        display: none;
    }
    .about-split,
    .sustain-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }
    .stats-grid,
    .process-grid,
    .review-grid,
    .product-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title{
        font-size:2rem;
    }
}
