/*
Theme Name: Westart Theme
Theme URI: https://westartindia.com/
Author: Westart Sustainable Systems
Description: Exact 1-to-1 clone theme for Westart Sustainable Systems Pvt. Ltd. matching westartindia.com
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: westart
*/

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #c9f31d;
    --primary-hover: #b4db15;
    --secondary: #2c2c2c;
    --black: #000000;
    --black-2: #121212;
    --black-3: #555555;
    --black-4: #1d1d1d;
    --black-5: #343434;
    --black-6: #262626;
    --d-black-2: #171717;
    --white: #ffffff;
    --white-2: #efefef;
    --gray: #c2c2c2;
    --gray-2: #999999;
    --gray-3: #a8a8a8;
    --border-color: rgba(255, 255, 255, 0.1);
    --font-heading: 'Kanit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--black-2);
    color: var(--gray-2);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

i[class*="fa-"], .fa-solid, .fas, .fab, .far {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome, sans-serif !important;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS --- */
.btn-wc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-wc {
    background-color: var(--primary);
    color: var(--black-2);
}

.btn-primary-wc:hover {
    background-color: var(--white);
    color: var(--black-2);
    transform: translateY(-2px);
}

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

.btn-outline-wc:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-header-bar {
    background-color: #0b0b0b;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 13px;
    color: var(--gray-3);
}

.top-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contacts {
    display: flex;
    gap: 24px;
}

.top-contacts span i {
    color: var(--primary);
    margin-right: 6px;
}

/* --- HEADER & NAVIGATION --- */
.main-header-wc {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.header-wc-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo-wc img {
    height: 98px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.footer-logo-wc {
    height: 65px;
    width: auto;
    margin-bottom: 20px;
    transition: var(--transition);
}

.main-nav-wc ul {
    display: flex;
    list-style: none;
    gap: 36px;
}

.main-nav-wc a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
}

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

.mobile-btn-wc {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-wc-section {
    background-color: var(--d-black-2);
    padding: 100px 0 80px;
    position: relative;
}

.hero-wc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-wc-sub {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-wc-title {
    font-size: 54px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-wc-desc {
    font-size: 16px;
    color: var(--gray-2);
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-wc-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-down-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 15px;
    text-transform: uppercase;
}

.scroll-down-btn img {
    filter: invert(1);
    width: 24px;
}

.hero-wc-img {
    border-radius: 16px;
    overflow: hidden;
    border: 1fr solid var(--border-color);
}

.hero-wc-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* --- SECTION COMMON --- */
.section-space {
    padding: 100px 0;
}

.sec-head {
    margin-bottom: 50px;
}

.sec-sub-title {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.sec-title {
    font-size: 40px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- ABOUT SECTION --- */
.about-wc-section {
    background-color: var(--black-2);
}

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

.about-wc-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.about-bullets {
    list-style: none;
    margin: 24px 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-bullets li {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-bullets li i {
    color: var(--primary);
}

/* --- SERVICES SECTION --- */
.service-wc-section {
    background-color: var(--d-black-2);
}

.service-wc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-wc-card {
    background-color: var(--black-4);
    background-size: cover;
    background-position: center;
    border-radius: 14px;
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-wc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.88) 0%, rgba(18, 18, 18, 0.96) 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-wc-card:hover::before {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.75) 0%, rgba(18, 18, 18, 0.90) 100%);
}

.service-wc-card > * {
    position: relative;
    z-index: 2;
}

.service-wc-card.bg-wood { background-image: url('../../uploads/westart/wood-briquette.png'); }
.service-wc-card.bg-coir { background-image: url('../../uploads/westart/coir-pith.png'); }
.service-wc-card.bg-msand { background-image: url('../../uploads/westart/m-sand.png'); }
.service-wc-card.bg-psand { background-image: url('../../uploads/westart/p-sand.png'); }

.service-wc-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.service-wc-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
}

.service-wc-card p {
    font-size: 14px;
    color: var(--gray-2);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-wc-link {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-wc-card:hover .service-wc-link {
    color: var(--white);
}

/* --- PRODUCTS SECTION --- */
.products-wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-wc-card {
    background: var(--black-4);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.product-wc-img {
    height: 240px;
    overflow: hidden;
}

.product-wc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-wc-card:hover .product-wc-img img {
    transform: scale(1.06);
}

.product-wc-body {
    padding: 24px;
}

.product-wc-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* --- WHY CHOOSE US --- */
.features-wc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-wc-box {
    background: var(--black-4);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px;
    transition: var(--transition);
}

.feature-wc-box:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.feature-wc-box h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 10px;
}

/* --- CTA BANNER --- */
.cta-wc-box {
    background: linear-gradient(135deg, rgba(23, 23, 23, 0.95) 0%, rgba(18, 18, 18, 0.95) 100%),
                url('../../uploads/westart/gradient-bg.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 70px 40px;
    text-align: center;
}

.cta-wc-box h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 18px;
}

/* --- FAQ SECTION --- */
.faq-wc-wrapper {
    max-width: 840px;
    margin: 0 auto;
}

.faq-wc-item {
    background: var(--black-4);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-wc-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-wc-answer {
    padding: 0 24px 20px;
    display: none;
    color: var(--gray-2);
    font-size: 15px;
}

.faq-wc-item.active .faq-wc-answer {
    display: block;
}

.faq-wc-item.active .faq-wc-question {
    color: var(--primary);
}

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

.contact-wc-card {
    background: var(--black-4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 36px;
}

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

.form-group-wc label {
    display: block;
    margin-bottom: 8px;
    color: var(--white);
    font-size: 14px;
}

.form-control-wc {
    width: 100%;
    padding: 14px 18px;
    background: var(--black-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
}

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

textarea.form-control-wc {
    min-height: 120px;
    resize: vertical;
}

/* --- FOOTER --- */
.site-footer-wc {
    background-color: #0b0b0b;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
}

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

.footer-wc-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-wc-col ul {
    list-style: none;
}

.footer-wc-col ul li {
    margin-bottom: 12px;
}

.footer-wc-col ul a:hover {
    color: var(--primary);
}

.footer-wc-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--black-3);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .hero-wc-grid, .about-wc-grid, .contact-wc-grid {
        grid-template-columns: 1fr;
    }
    .service-wc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-wc-grid, .products-wc-grid {
        grid-template-columns: 1fr;
    }
    .footer-wc-grid {
        grid-template-columns: 1fr 1fr;
    }
    .main-header-wc {
        position: sticky;
        top: 0;
        z-index: 9999;
    }
    .main-nav-wc {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(18, 18, 18, 0.98);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--border-color);
        border-bottom: 2px solid var(--primary);
        padding: 24px 30px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.9);
        z-index: 9999;
    }
    .main-nav-wc.active {
        display: block !important;
    }
    .main-nav-wc ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        align-items: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    .main-nav-wc ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 12px;
    }
    .main-nav-wc ul li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .main-nav-wc a {
        display: block;
        font-size: 18px !important;
        font-weight: 600;
        color: var(--white) !important;
        padding: 6px 0;
        transition: var(--transition);
    }
    .main-nav-wc a:hover {
        color: var(--primary) !important;
        padding-left: 8px;
    }
    .mobile-btn-wc {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: 8px;
        color: var(--white);
        font-size: 22px;
        cursor: pointer;
        transition: var(--transition);
    }
    .mobile-btn-wc:hover, .mobile-btn-wc.active {
        background: var(--primary);
        color: var(--black-2);
        border-color: var(--primary);
    }
    .hero-wc-title {
        font-size: 38px;
    }
    .site-logo-wc img {
        height: 76px;
    }
}

@media (max-width: 576px) {
    .site-logo-wc img {
        height: 62px;
    }
    .footer-logo-wc {
        height: 54px;
    }
    .service-wc-grid {
        grid-template-columns: 1fr;
    }
    .footer-wc-grid {
        grid-template-columns: 1fr;
    }
}
