@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #1a5c4a;
    --secondary-color: #2e3d62;
    --text-color: #555;
    --bg-light: #f8f9fa;
    --accent-color: #1a8b6e;
    --footer-bg: #2c353f;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

body.blocked {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
.navbar-brand {
    font-weight: 700;
    color: var(--secondary-color);
}

.navbar {
    padding: 1.5rem 0;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 139, 110, 0.3);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Age Restriction Overlay */
#age-confirmation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.age-box img {
    height: 50px;
    margin-bottom: 20px;
}

.age-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.age-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.5;
}

.age-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 12px 0;
    width: 140px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    font-size: 0.9rem;
}

.age-btn-yes {
    background-color: #4caf50;
    color: #fff;
}

/* Green match */
.age-btn-no {
    background-color: #f44336;
    color: #fff;
}

/* Red match */
.age-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Form Alert Overlay */
#form-alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

#form-alert-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    border-top: 5px solid;
}

#form-alert-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.close-alert-btn {
    margin-top: 20px;
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 25px;
    border-radius: 5px;
    cursor: pointer;
}

/* Main content visibility handled by JS and body.blocked */

/* Sections */
.hero-section {
    padding: 80px 0;
    position: relative;
}

.about-section,
.vision-mission-section,
.wwd-section,
.wcu-section,
.products-section,
.partner-section,
.contact-section {
    padding: 80px 0;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #666;
}

.hero-image-container {
    text-align: right;
}

.hero-image-container img {
    width: 85%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 25px;
}

.decorator {
    position: absolute;
    z-index: -1;
}

.diamond {
    width: 20px;
    height: 20px;
    background: #add8e6;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #a2e4d0;
}

.decorator-1 {
    top: 10%;
    left: 5% !important;
}

.decorator-2 {
    top: 40%;
    left: 2% !important;
    opacity: 0.3;
}

.decorator-3 {
    bottom: 5%;
    right: 40% !important;
    background: #e0b0ff;
}

.about-content-heading {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-wrapper {
    background-color: var(--accent-color);
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
    border: 2px solid var(--accent-color);
}

.toggle-btn {
    padding: 10px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    border: none;
    background: transparent;
    transition: 0.3s;
}

.toggle-btn.active {
    background-color: #fff;
    color: var(--accent-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.wwd-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.wwd-item {
    border-bottom: 1px solid #eef2f6;
}

.wwd-header {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: #fff;
}

.wwd-header.active {
    background-color: var(--accent-color);
    color: #fff;
}

.wwd-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-weight: 600;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.wwd-header.active .wwd-number {
    background-color: #fff;
    color: var(--accent-color);
    border: none;
}

.wwd-body {
    display: none;
    padding: 25px 30px 25px 80px;
    background: #fff;
}

.wwd-item.active .wwd-body {
    display: block;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    height: 100%;
    text-align: left;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.icon-orange {
    background-color: #fff4e6;
    color: #f59f00;
}

.icon-green {
    background-color: #ebfbee;
    color: #37b24d;
}

.icon-blue {
    background-color: #e7f5ff;
    color: #1c7ed6;
}

.icon-red {
    background-color: #fff5f5;
    color: #f03e3e;
}

.product-card {
    text-align: center;
    margin-bottom: 40px;
}

.product-image-wrapper {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.product-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.partnership-image-wrapper img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.partner-info-box {
    background-color: #f1f8f6;
    border: 1px solid #d4ece6;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.partner-info-text {
    color: var(--accent-color);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 15px 0;
    font-size: 0.95rem;
    color: #333;
    background: transparent;
}

.contact-form .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.submit-btn {
    background-color: #1a8b6e;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: #146e57;
}

/* Custom border-box sizing for recaptcha widget container */
#captchaV {
    display: inline-block;
    padding: 2px;
    border-radius: 3px;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 80px 0 0 0;
}

.footer h4 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 1.25rem;
}

.footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-desc {
    font-size: 0.9rem;
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item i {
    margin-right: 15px;
    color: #fff;
    margin-top: 5px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: #adb5bd;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}