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

:root {
    --primary-color: #002E79; /* Dark Blue */
    --secondary-color: #f3f6fa; /* Light Blue/Gray Background */
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --green: #25D366; /* WhatsApp Green */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--secondary-color);
}

.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.section-title.center {
    text-align: center;
}

section {
    padding: 5rem 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #0c2d6b;
    transform: translateY(-2px);
}

.header-actions .btn-primary:hover,
.header-actions .btn-primary:focus {
    transform: none;
    box-shadow: none;
}



/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}

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

.nav-links a.active {
    color: #ED4E01;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ED4E01;
    transition: var(--transition);
}

.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    color: var(--white);
}

.script-text {
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    line-height: 1;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.script-text .for-life {
    font-size: 4rem;
    margin-left: 2rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    color: var(--green);
    padding: 8px 20px 8px 8px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: var(--transition);
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: block;
}

.whatsapp-float .wa-text {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--green);
}

.whatsapp-float .wa-text span {
    font-weight: 600;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* About Us */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    /* Hover effect removed */
}

.about-content {
    flex: 1;
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* Core Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #edf0f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.value-icon {
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 120px;
    flex-shrink: 0;
}

.value-icon img {
    max-width: 70px;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.value-text {
    background: var(--white);
    width: calc(100% - 20px);
    margin: 0 auto 10px;
    padding: 1.2rem 0.8rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.value-text h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.value-text p {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
}

/* Our Products */
.products {
    background-color: #F5F7FA;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    align-items: start;
}

.product-card {
    background: var(--white);
    border: 1px solid #d0dff5;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 46, 121, 0.03);
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 46, 121, 0.08);
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
    flex-grow: 1;
}

.product-card:has(.toggle-benefits-btn[aria-expanded="true"]) .product-card-top {
    flex-grow: 0;
}

.product-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.product-category {
    display: inline-block;
    background-color: #f3f6fa;
    border: 1px solid #a9bdde;
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.text-danger {
    color: #d6001c;
}

.text-primary {
    color: var(--primary-color);
}

.text-regular {
    font-weight: 400;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #f3f0ff;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.badge-text {
    color: #5b4cb5;
    font-size: 0.8rem;
    font-weight: 600;
}

.toggle-benefits-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-family: inherit;
    margin-top: auto;
}

.toggle-benefits-btn:hover {
    color: #001f52;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.toggle-benefits-btn[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.product-image-right {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-image-right img {
    max-height: 180px;
    object-fit: contain;
}

/* Collapsible Benefits Area */
.benefits-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefits-grid {
    border-top: 1px solid #eef2f6;
    padding-top: 1.8rem;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon-wrapper {
    flex-shrink: 0;
}

.benefit-icon-wrapper img {
    display: block;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.benefit-highlight {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
}

.benefit-desc {
    color: #555555;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .product-card {
        min-height: auto;
    }

    .product-card-top {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .product-image-right {
        width: 140px;
        align-self: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* Future Expansion */
.expansion-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.expansion-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    width: 18%;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.expansion-card:hover {
    transform: translateY(-5px);
}

.expansion-card img {
    margin: 0 auto 1.5rem;
    display: block;
}

.expansion-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Vision & Mission */
.vision-mission {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6rem 0;
}

.vm-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 3rem;
}

.vm-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex: 1;
}

.vm-icon {
    flex-shrink: 0;
}

.vm-icon img {
    display: block;
}

.vm-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-content p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.8;
}

.vm-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
}

/* Why Choose Us */
.wcu-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.wcu-content {
    flex: 1;
}

.wcu-list {
    margin-top: 2rem;
}

.wcu-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.check-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.wcu-image {
    flex: 1;
}

.wcu-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Us */
.contact-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

/* --- Contact Info Card --- */
.contact-info {
    flex: 1;
    background-color: #c9d8f0;
    padding: 2.5rem;
    border-radius: 18px;
    min-width: 280px;
}

.contact-info h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-sub {
    color: #555;
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
}

.info-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.info-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    min-width: 58px;
    flex-shrink: 0;
}

.info-value {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
}

a.info-value {
    text-decoration: none;
    color: var(--text-color);
}

a.info-value:hover {
    color: var(--primary-color);
}

/* --- Contact Form --- */
.contact-form {
    flex: 2;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-row {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Icon-prefixed input wrapper */
.input-icon-group {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s, box-shadow 0.25s;
    flex: 1;
}

.input-icon-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 50, 120, 0.08);
}

.field-icon {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    color: #94a3b8;
    flex-shrink: 0;
}

.field-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.field-icon--top {
    align-self: flex-start;
    padding-top: 0.9rem;
}

.input-icon-group input,
.input-icon-group textarea {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 1rem 1rem 1rem 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    border-radius: 12px;
}

.input-icon-group input::placeholder,
.input-icon-group textarea::placeholder {
    color: #aab4c4;
}

.textarea-group {
    align-items: flex-start;
    margin-bottom: 1.2rem;
    flex: 1;
}

.textarea-group textarea {
    resize: none;
    padding-top: 0.85rem;
    height: 100%;
    min-height: 80px;
}

/* Phone flag button */
.phone-group {
    position: relative;
}

.phone-flag-btn {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0 0.5rem;
    cursor: pointer;
    border-right: 1px solid #dde3ec;
    margin-right: 0.5rem;
    height: 100%;
    flex-shrink: 0;
}

.flag-emoji {
    font-size: 1.1rem;
    line-height: 1;
}

.phone-flag-btn svg {
    color: #94a3b8;
}

/* Submit row */
.form-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.submit-btn {
    padding: 0.8rem 2.2rem;
    font-size: 0.95rem;
}

.submit-btn:hover,
.submit-btn:focus {
    transform: none;
    box-shadow: none;
}


/* WhatsApp Banner */
.whatsapp-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid rgba(37, 211, 102, 0.4);
    padding: 1.5rem 2.5rem;
    border-radius: 15px;
    gap: 1.5rem;
}

.wa-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.wa-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon-wrap img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.wa-text-block {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wa-text-block strong {
    font-size: 1rem;
    color: var(--text-color);
}

.wa-text-block span {
    font-size: 0.88rem;
    color: #666;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: #fff;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    background: var(--green);
    opacity: 0.92;
}

.wa-btn-icon {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background-color: #0d2a4a;
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3.5rem;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #a2b4c7;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 85%;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.9rem;
}

.footer-links ul li a,
.footer-links ul li a:visited,
.footer-links ul li a:focus,
.footer-links ul li a:active,
.footer-links ul li a:focus-visible {
    color: #a2b4c7 !important;
    font-size: 0.92rem;
    transition: var(--transition);
}

@media (hover: hover) {
    .footer-links ul li a:hover {
        color: var(--white) !important;
    }
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #a2b4c7;
    font-size: 0.92rem;
}

.footer-contact .contact-icon {
    width: 18px;
    height: 18px;
    stroke: #a2b4c7;
    fill: none;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 0;
    text-align: left;
    color: #a2b4c7;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .vm-container, .wcu-container, .contact-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .vm-divider {
        width: 100%;
        height: 1px;
        margin: 1.5rem 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
    }

    .about-image, .about-content, .wcu-content, .wcu-image {
        width: 100%;
    }

    .wcu-image {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-bg {
        object-position: 30% center;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .expansion-grid {
        justify-content: center;
        gap: 1.2rem;
    }

    .expansion-card {
        width: 45%;
        min-width: 140px;
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 1.2rem;
    }

    .form-row .form-group {
        margin-bottom: 0;
    }
    
    .whatsapp-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .wa-content {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 92%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .expansion-card {
        width: 100%;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .whatsapp-float .wa-text {
        display: none;
    }

    .whatsapp-float {
        padding: 8px;
        bottom: 20px;
        right: 20px;
    }

    .footer-container {
        gap: 1.5rem;
    }

    .footer-brand, .footer-links, .footer-contact {
        min-width: 100%;
    }
}

/* Hide Google reCAPTCHA v3 Badge */
.grecaptcha-badge {
    visibility: hidden !important;
}
