@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
     --primary-blue: #114b05;
    --secondary-dark: #020617;
    --accent-green: #22c55e;
    --background-white: #FFFFFF;
    --light-bg: #f9fafb;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #23ab4b, #010602);
    color: white;
    position: relative;
    padding: 0 20px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('../assets/images/contactus-heroimage.webp') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
}


/* MOBILE */
@media (max-width: 410px) {
    .hero h1 {
        padding-top: 100px;
    }
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
    max-width: 800px;
}


/* ANIMATION */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.delay {
    animation-delay: 0.5s;
}

.delay2 {
    animation-delay: 1s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 50px;
    position: relative;
}

/* .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-green);
    margin: 15px auto 0;
    border-radius: 2px;
} */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: var(--background-white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.15);
}

.card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--background-white);
}

.card-title {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.card-short-desc {
    color: #6b7280;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
    gap: 5px;
}

.card:hover .card-cta {
    gap: 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: var(--background-white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #23ab4b, #010602);
    color: var(--background-white);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--background-white);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 35px;
}

.detail-section {
    margin-bottom: 30px;
}

.detail-section h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--accent-green);
    border-radius: 2px;
}

.detail-list {
    list-style: none;
    margin-bottom: 15px;
}

.detail-list li {
    padding: 10px 0;
    color: #4b5563;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 40px;
}

.info-box {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--accent-green);
}

.info-box-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.info-box-value {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(34, 197, 94, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
    margin-top: 20px;
}

.highlight-box h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.highlight-box p {
    color: #4b5563;
    line-height: 1.6;
}

.info-section {
    /* background: var(--background-white); */
    background: linear-gradient(135deg, #b9f3cf, #c8e6c9);
    padding: 10px 20px;
    margin-top: 40px;
}

.info-card {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    border: 2px solid #198754;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-title {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.info-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-dark));
    color: var(--background-white);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-green);
    color: var(--background-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    background: #16a34a;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-body {
        padding: 25px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* .modal-content::-webkit-scrollbar {
    width: 4px;
} */

/* .modal-content::-webkit-scrollbar-track {
    background: var(--light-bg);
} */

/* .modal-content::-webkit-scrollbar-thumb {
    background: rgb(164, 164, 164);
    border-radius: 4px;
} */



.modal-content {
    overflow: auto;

    /* Hide scrollbar - Firefox */
    scrollbar-width: none;

    /* Hide scrollbar - IE & Edge (old) */
    -ms-overflow-style: none;
}

/* Hide scrollbar - Chrome, Safari, Edge */
.modal-content::-webkit-scrollbar {
    display: none;
}







.modal-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--background-white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #23ab4b, #010602);
    color: var(--background-white);
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.modal-body {
    padding: 35px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-body::-webkit-scrollbar {
    display: none;
}












/* CTA SECTION */
.ready-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 4rem 2rem;
    margin: 3rem auto;
    width: 90%;
    max-width: 950px;

    border-radius: 20px;

    background: linear-gradient(135deg, #e3f2fd, #c8e6c9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* INNER */
.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
}

/* TEXT */
.cta-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1b5e20;
}

.cta-sub {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #2e7d32;
    max-width: 600px;
    line-height: 1.6;
}

/* ACTIONS */
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 14px;
}

/* BUTTON COMMON */
.btn-primary,
.btn-phone {
    flex: 1 1 auto;
    min-width: 200px;
    max-width: 260px;
    justify-content: center;
}

/* PRIMARY BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
    color: #fff;

    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 50px;

    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #43a047, #2e7d32);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: scale(0.96);
}

/* CALL BUTTON */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    background: linear-gradient(135deg, #66bb6a, #388e3c);
    color: #fff;

    padding: 0.9rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;

    font-weight: 600;
    font-size: 1rem;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-phone:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #81c784, #2e7d32);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-phone:active {
    transform: scale(0.96);
}

/* ICON */
.phone-icon {
    font-size: 1.2rem;
}

/* SHINE EFFECT */
.btn-primary::after,
.btn-phone::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-primary:hover::after,
.btn-phone:hover::after {
    left: 130%;
}

/* PULSE */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(67, 160, 71, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(67, 160, 71, 0);
    }
}

#callBtn {
    animation: pulseGlow 2s infinite;
}

/* ===== RESPONSIVE IMPROVEMENTS ===== */

/* Tablet */
@media (max-width: 992px) {
    .ready-cta {
        padding: 3rem 1.5rem;
    }

    .cta-actions {
        gap: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ready-cta {
        padding: 2.5rem 1.2rem;
        border-radius: 16px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-phone {
        width: 100%;
        max-width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ready-cta {
        padding: 2rem 1rem;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-sub {
        font-size: 0.85rem;
    }
}