/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    letter-spacing: 1px;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

a {
    text-decoration: none;
}

.border-hover {
    transition: all 0.4s ease-out;
    border: 2px solid transparent;
}

.border-hover:hover {
    border-color: var(--bs-info);
}

/* Intro Section */
.intro-section p {
    max-width: 560px;
}

/* Navbar */
.navbar {
    transition: padding 0.3s, box-shadow 0.3s;
}

.navbar .navbar-nav .nav-link {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.navbar .navbar-nav .nav-link.active {
    color: var(--bs-info);
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 18px;
        padding-left: 18px;
    }
}

/* Service */
.service {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    color: var(--bs-orange);
    font-size: 34px;
    box-shadow: inset 2px 2px 8px rgba(55, 94, 148, 0.3),
                inset -3px -2px 5px rgba(255, 255, 255, 0.8);
}

/* Jumbotron */
#jumbotron {
    background: linear-gradient(220.55deg, #A531DC 0%, #4300B1 100%);
    letter-spacing: 1.2px;
}

#jumbotron h2 {
    color: aliceblue;
}

/* Why Choose Us */
#why-choose-us {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 0;
}

#why-choose-us h1,
#why-choose-us p {
    color: white;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.custom-btn {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 24px;
    backdrop-filter: blur(10px);
    border-radius: 6px;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Website Packages */
#packages .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#packages .package {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background-color: #dee0fd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#packages .package:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.package h5 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.package .text-muted {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 30px;
}

.package ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.package ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.package ul li i {
    margin-right: 10px;
    color: var(--bs-info);
    font-size: 18px;
}

.package .btn {
    background-color: #47663B;
    color: #FBF6E9;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    margin-top: auto;
}

.package .btn:hover {
    background-color: #1F4529;
}

.modal-content {
    padding: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

/* FAQ Accordion Styles */
#faq .accordion-item {
    border: none;
    transition: all 0.4s ease-out;
}

#faq .accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: transparent;
    box-shadow: none;
}

#faq .accordion-button:not(.collapsed) {
    color: var(--bs-info);
    background-color: transparent;
}

#faq .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

#faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230dcaf0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq .accordion-body {
    padding: 0 20px 20px;
}

/* Footer */
.btn-icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    align-content: center;
    padding: 0;
}

footer {
    background-color: #1a1c2b;
    color: white;
    padding: 40px 0;
}
