@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: rgb(0, 96, 170);
    --secondary-color: rgb(77, 168, 255);
    --third-color: #67BDFF;
    --highlight-color: #B2DEFF;
    --dark-color: #202020;
    --grey-color: #575757;
    --lightgrey-color: #C1C1C1; 
    --placeholder-color: rgb(232, 232, 232);
    --danger-color: #E21B1B;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: white;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #000 !important;
}

.navbar-brand i {
    margin-right: 8px;
}

.navbar-nav .nav-link {
    color: #000 !important;
    margin-left: 30px;
    font-size: 16px;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}

.btn-custom {
    padding: .5em 2em;
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.btn-outline-custom {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: white;
}

.btn-outline-custom:hover {
    background: #0d6efd;
    color: white;
}

.btn-primary-custom {
    background: #0d6efd;
    color: white;
    border: none;
    text-decoration: none;
    padding: .60em 2em;
}

.btn-primary-custom:hover {
    background: #0b5ed7;
}

.btn-danger-custom {
    background: var(--danger-color);
    color: white;
    border-radius: 5px;
    border: none;
}

.btn-danger-custom:hover {
    background: #ba1717;
}

.btn-danger_outline-custom {
    border: 2px solid var(--danger-color);
    color: var(--danger-color);
    background: #fff;
}

.btn-danger_outline-custom:hover {
    background: #ba1717;
    border: 2px solid #ba1717;
    color: #fff;
}


/* What We Offer Section */
.offer-section {
    background: linear-gradient(to bottom, #e8f4ff 0%, #c8e5ff 100%);
    padding: 80px 0;
}

.offer-section .container {
    padding: 5em 0;
}

.offer-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 60px;
}

.offer-card {
    background: linear-gradient(135deg, #60b4ff 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    position: relative;
    margin: 4rem 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.offer-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 10px solid #60b4ff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.offer-icon i {
    font-size: 36px;
    color: #3d9eff;
}

.offer-card h5 {
    margin-top: 2em;
}

.offer-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, #c8e5ff 0%, #a0d5ff 100%);
    padding: 5em 0 5em;
    color: #000;
}

.faq-section .container {
    padding: 2em 0;
}

.faq-section_content {
    background: #fff;
    max-width: 860px;
    padding: 2em 4em;
    border-radius: 8px;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 50px;
}

.faq-item {
    border: none;
    margin-bottom: 15px;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 1em;
    border-bottom: 2px solid #555;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    padding-top: 15px;
    line-height: 1.6;
}

.faq-answer.active {
    height: auto;
}

.faq-toggle {
    font-size: 20px;
    color: #666;
}

/* Contact Section */
footer.contact-section {
    padding: 12em 0 8em;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

footer.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../img/Wave.png');
    background-size: cover;
    z-index: 1
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-title {
    color: white;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    margin-right: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn:hover {
    background: white;
    color: #3d9eff;
}

.social-btn i {
    font-size: 24px;
    margin-right: 12px;
}

.fa-whatsapp {
    color: white;
}

.social-btn:hover .fa-whatsapp {
    color: #25D366;
}

.fa-instagram {
    color: white;
}

.social-btn:hover .fa-instagram {
    color: #E4405F;
}

.fa-facebook {
    color: white;
}

.social-btn:hover .fa-facebook {
    color: #1877F2;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .offer-title,
    .faq-title {
        font-size: 32px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        margin-top: 10px;
    }

    .btn-outline-custom,
    .btn-primary-custom {
        display: block;
        width: 100%;
    }
}