@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Work+Sans:wght@300;400;600&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    color: #474747;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Work Sans', sans-serif;
}

/* Header */
.top-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #2f5293;
    padding: 28px 20px;
}

.top-navbar.scrolled {
    padding: 18px 20px;
}

.top-navbar__inner {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.top-navbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    gap: 18px;
}

.top-navbar__brand {
    position: relative;
    z-index: 2;
    margin-right: auto;
}

.top-navbar__phone {
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.top-navbar.scrolled .top-navbar__inner {
    position: relative;
    justify-content: center;
    min-height: 52px;
}

.top-navbar.scrolled .top-navbar__brand,
.top-navbar.scrolled .top-navbar__phone {
    display: none;
}


.top-navbar__brand img {
    display: block;
    width: 149px;
    height: 47px;
    object-fit: contain;
}

.top-navbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-decoration: none;
    line-height: 1;
}

.top-navbar__phone:hover,
.top-navbar__phone:focus,
.top-navbar__phone:active {
    color: #ffffff;
    text-decoration: none;
}

.top-navbar__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.top-navbar__phone-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.scroll-cta-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 20px;
    background-color: #2f5293;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    z-index: 1100;
}

.top-navbar.scrolled + .scroll-cta-bar {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* WA Buttons */
.btn-gnp-orange {
    background-color: #FE7009;
    color: #ffffff !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 0;
    padding: 12px 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.btn-gnp-orange img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1) saturate(0) contrast(1000%);
    flex: 0 0 24px;
}

.btn-gnp-orange:hover, .btn-gnp-orange:focus {
    background-color: #F25E06;
}

.btn-gnp-orange i {
    font-size: 22px;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../images/hero_parallax.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    min-height: 650px;
    padding: 80px 20px;
    color: #ffffff;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #000000;
    opacity: 0.5; /* Overlay for readability */
    z-index: 1;
}

.hero-section > .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.hero-feature-item {
    flex: 1 1 250px;
    max-width: 350px;
    text-align: center;
}

.hero-feature-item img {
    height: 44px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.hero-feature-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Hero Section */
.footer-hero-section {
    position: relative;
    background-image: url('../images/footer_parallax.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 130px 20px;
    color: #ffffff;
    text-align: center;
}

.footer-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #000000;
    opacity: 0.6; /* Matches Elementor overlay */
    z-index: 1;
}

.footer-hero-section > .container {
    position: relative;
    z-index: 2;
}

.footer-hero-section h1 {
    font-size: 40px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.footer-hero-section p.subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Footer */
.main-footer {
    background-color: #2E5391;
    color: #ffffff;
    padding: 50px 20px;
}

.main-footer a {
    color: #ffffff;
    text-decoration: none;
}

.main-footer a:hover {
    color: #dddddd;
}

.main-footer .footer-text-small {
    font-size: 12px;
    font-weight: 300;
    line-height: 1.6;
}

/* Utilities */
.phone-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.phone-link:hover,
.phone-link:focus,
.phone-link:active {
    color: #ffffff;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-navbar {
        padding: 22px 16px;
    }

    .top-navbar__inner {
        gap: 12px;
    }

    .top-navbar__actions {
        gap: 12px;
    }

    .top-navbar__phone {
        white-space: nowrap;
    }
    .top-navbar.scrolled .top-navbar__brand,
    .top-navbar.scrolled .top-navbar__phone {
        display: none;
    }

    .hero-section h1, .footer-hero-section h1 {
        font-size: 28px;
    }
    .hero-section {
        padding: 50px 20px;
    }
}

/* Accordion Custom Styles */
.accordion-button {
    background-color: #2E5391;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: #244173; /* Slightly darker shade when open */
    color: #ffffff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-button:focus {
    border-color: #2E5391;
    box-shadow: 0 0 0 0.25rem rgba(46, 83, 145, 0.25);
}

.accordion-body {
    font-family: 'Open Sans', sans-serif;
    color: #474747;
    font-size: 15px;
    background-color: #f9f9f9;
}

/* Animations */
@keyframes pulse-soft {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-soft {
    animation: pulse-soft 2s infinite ease-in-out;
}
