/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
    --primary-main: #003F22;
    --primary-surface: #CCD9D3;
    --primary-border: #AABFB5;
    --primary-hover: #00341C;
    --primary-pressed: #002A17;

    --secondary-main: #FCB900;
    --secondary-surface: #FEF1CC;
    --secondary-border: #FEE8AA;
    --secondary-hover: #D29A00;
    --secondary-pressed: #A87B00;

    --neutral-100: #FFFFFF;
    --neutral-200: #F5F5F5;
    --neutral-300: #EDEDED;
    --neutral-400: #E0E0E0;
    --neutral-500: #C2C2C2;
    --neutral-600: #9E9E9E;
    --neutral-700: #757575;
    --neutral-800: #616161;
    --neutral-900: #404040;
    --neutral-1000: #0A0A0A;

    --primary-green: var(--primary-main);
    --yellow: var(--secondary-main);
    --secondary-green: #587600;
}

/* =========================================================
   BASE TYPOGRAPHY
   ========================================================= */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--primary-green);
}

h1, h2, h3, .headline {
    font-family: 'Bungee', cursive;
    text-transform: uppercase;
}

.subhead {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
}

/* =========================================================
   UTILITIES: TEXT, BACKGROUND, TYPO
   ========================================================= */
.text-primary-green { color: var(--primary-green) !important; }
.text-secondary-green { color: var(--secondary-green) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-orange { color: var(--orange) !important; }

.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-secondary-green { background-color: var(--secondary-green) !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.bg-orange { background-color: var(--orange) !important; }

/* =========================================================
   COMPONENT: STANDARDIZED BUTTONS (GTR)
   ========================================================= */
.btn-gtr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    font-size: 1.25rem;
    width: auto;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-gtr-yellow {
    background-color: var(--secondary-main) !important;
    color: var(--neutral-1000) !important;
}

.btn-gtr-yellow:hover {
    background-color: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 185, 0, 0.3);
}

.btn-gtr-secondary {
    background-color: var(--secondary-surface) !important;
    color: var(--neutral-800) !important;
}

.btn-gtr-secondary:hover {
    background-color: var(--secondary-border) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-gtr-white {
    background-color: white !important;
    color: var(--primary-main) !important;
}

.btn-gtr-white:hover {
    background-color: var(--neutral-200) !important;
    transform: translateY(-2px);
}

/* Responsive adjustments for buttons */
@media (max-width: 991.98px) {
    .btn-gtr {
        padding: 14px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .btn-gtr {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Button group for balanced/equal-width buttons */
.btn-gtr-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

.btn-gtr-group .btn-gtr {
    flex: 1;
    min-width: fit-content;
    white-space: nowrap;
}

/* =========================================================
   COMPONENT: COUNTDOWN
   ========================================================= */
.countdown-box {
    background-color: #666;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Teko', sans-serif;
    min-width: 100px;
}
.countdown-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}
.countdown-label {
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* =========================================================
   LAYOUT: SECTION SPACING
   ========================================================= */
.section-padding {
    padding: 80px 0;
}

/* =========================================================
   COMPONENT: PLACEHOLDERS & CARDS
   ========================================================= */
.placeholder-img {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
    min-height: 250px;
}

.reason-card {
    background-color: #666;
    color: white;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 400px;
}

/* =========================================================
   COMPONENT: TESTIMONIAL CARDS
   ========================================================= */
.testimonial-card-gtr {
    border: 1px solid var(--primary-main) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem !important;
    background-color: #ffffff !important;
    position: relative;
    transition: transform 0.3s ease;
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}



/* Desktop-specific adjustments for Testimonials */
@media (min-width: 992px) {
    .testimonial-card-gtr {
        text-align: left !important;
        height: 100% !important;
        display: flex;
        flex-direction: column;
    }

    .testimonial-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
    }

    .testimonial-card-content p.text-dark {
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.testimonial-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card-brush {
    position: absolute;
    top: 0;
    right: -30px;
    width: 150px;
    height: 150px;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991.98px) {
    .testimonial-card-gtr {
        padding: 1.5rem !important;
    }
    .testimonial-card-brush {
        width: 100px;
        height: 100px;
        right: -15px;
    }
}

/* =========================================================
   COMPONENT: SPONSOR GRID
   ========================================================= */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}
.sponsor-placeholder {
    aspect-ratio: 1 / 1;
    background-color: #D9D9D9;
    border-radius: 4px;
    width: 100%;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.sponsor-placeholder:hover {
    transform: scale(1.05);
    background-color: var(--neutral-400);
}

.sponsor-placeholder-main {
    aspect-ratio: 2.5 / 1;
    background-color: transparent;
    border-radius: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.2s ease;
}

.sponsor-placeholder-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .sponsor-placeholder-main {
        padding: 0;
        height: 80px;
        aspect-ratio: auto;
    }
    .sponsor-placeholder-main img {
        height: 100%;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }
}

.sponsor-placeholder-main:hover {
    transform: scale(1.02);
}

.sponsor-card {
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

/* =========================================================
   UTILITIES: FONT SHORTCUTS (LEGACY)
   ========================================================= */
.font-bungee {
    font-family: 'Bungee', cursive;
}
.font-teko {
    font-family: 'Teko', sans-serif;
}
.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-yellow { background-color: var(--yellow) !important; }
.text-yellow { color: var(--yellow) !important; }
.text-primary-green { color: var(--primary-green) !important; }

/* =========================================================
   DECORATIVE UTILITIES: SECTION SEPARATORS
   ========================================================= */
.section-separator-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}
.section-separator-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(50%);
    z-index: 10;
    pointer-events: none;
}

/* =========================================================
   DECORATIVE BACKGROUNDS & DIVIDERS
   ========================================================= */
.divider {
    position: absolute;
    left: 0;
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
}

.divider-paint-brush {
    background: url('/public/img/SPLASH GREEN BOTTOM.svg') no-repeat;
    background-size: 100% auto;
    background-position: center top;
}

.divider-splash-green-top {
    background: url('/public/img/SPLASH GREEN TOP.svg') no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    margin-top: -5px;
    padding-top: 0;
}

.divider-splash-green-bottom {
    background: url('/public/img/SPLASH GREEN BOTTOM.svg') no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding-top: 0;
    display: block;
    line-height: 0;
}

.divider-splash {
    background:
        url('/public/img/SPLASH GREEN BOTTOM.svg') no-repeat center top,
        url('/public/img/SPLASH GREEN TOP.svg') no-repeat center 100%;
    background-size:
        100% auto,
        100% auto;
    margin-top: -2px;
    margin-bottom: -2px;
}

.divider-splash-yellow-top {
    background: url('/public/img/SPLASH YELLOW TOP.png') no-repeat;
    background-size: 100% auto;
    background-position: center top;
    height: 80px;
    top: 0;
    margin-top: -1px;
}

.divider-splash-yellow-bottom {
    background: url('/public/img/SPLASH YELLOW BOTTOM.svg') no-repeat;
    background-size: 100% auto;
    background-position: center top;
    margin-top: -2px;
}

/* =========================================================
   LAYOUT: SECTION BACKGROUND PLACEHOLDERS
   ========================================================= */
.bg-hero-placeholder {
    background: url('') center/cover no-repeat;
    background-color: #122f22;
}

.bg-footer-placeholder {
    background: url('') center/cover no-repeat;
}

/* =========================================================
   LAYOUT: FOOTER CTA
   ========================================================= */
.footer-cta-section {
    background: linear-gradient(to bottom, #003F22 0%, #001a0f 100%);
    min-height: 100vh;
    position: relative;
}

/* =========================================================
   DECORATIVE: SPLASH PSEUDO ELEMENT
   ========================================================= */
.divider-splash-yellow-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('/public/img/SPLASH YELLOW TOP.png') no-repeat;
    background-size: 100% auto;
    background-position: center bottom;
    transform: translateY(-99%);
    z-index: 10;
    pointer-events: none;
}

/* =========================================================
   LAYOUT: SPLASH SECTION NORMALIZATION
   ========================================================= */
section.divider-splash,
section.divider-splash-green-top,
section.divider-splash-green-bottom,
section.divider-splash-yellow-top,
section.divider-splash-yellow-bottom {
    display: block;
    border: none;
    outline: none;
}

section.divider-splash::before,
section.divider-splash::after,
section.divider-splash-green-top::before,
section.divider-splash-green-top::after {
    display: none;
}

/* =========================================================
   COMPONENT: CARD SHADOW LAYERS
   ========================================================= */
.card-shadow-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: var(--yellow);
}

.card-shadow-pos-1 {
    top: 14px;
    left: 14px;
}

.card-shadow-pos-2 {
    top: -12px;
    left: -12px;
}

.card-shadow-pos-3 {
    top: 14px;
    left: -14px;
}

/* =========================================================
   LAYOUT: HERO BACKGROUND & OVERLAY
   ========================================================= */
.hero-bg {
    background-image: url('/public/img/HERO MOBILE 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 700px) {
    .hero-bg {
        background-image: url('/public/img/HERO WEB 1.png');
    }
}

.hero-universal-bg {
    background-image: url('/public/img/mobile_4x.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 700px) {
    .hero-universal-bg {
        background-image: url('/public/img/Banner Dekstop_4x.webp');
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 63, 34, 0.3) 0%, rgba(0, 63, 34, 0.8) 60%, #003F22 100%);
    z-index: 1;
}

/* =========================================================
   COMPONENT: COUNTDOWN ITEMS
   ========================================================= */
.countdown-item {
    width: 70px;
    height: 70px;
    background-color: #aebaba !important;
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .countdown-item {
        width: 150px;
        height: 150px;
        border-radius: 12px !important;
    }
    .countdown-item span.h1 {
        font-size: 5rem !important;
    }
    .countdown-item span.h6 {
        font-size: 1.4rem !important;
    }
    .countdown-section h2.font-bungee {
        font-size: 3.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    .countdown-section p.font-teko {
        font-size: 1.75rem !important;
        margin-bottom: 3rem !important;
    }
}

/* =========================================================
   COMPONENT: NAVBAR DROPDOWN
   ========================================================= */
.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 10px !important;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(10px);
    transition: all 0.2s ease;
    pointer-events: none;
    min-width: 220px;
}

.navbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

.navbar .dropdown-item {
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--secondary-surface) !important;
    color: var(--primary-main) !important;
}

/* =========================================================
   LAYOUT: FOOTER BASE
   ========================================================= */
.footer-custom {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 60px;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: url('/public/img/Footer.png') center / cover no-repeat;
    z-index: 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 63, 34, 0.2) 0%,
        rgba(0, 63, 34, 0.6) 40%,
        rgba(0, 63, 34, 0.9) 80%,
        #003F22 100%
    );
    z-index: 1;
}

.footer-content-wrapper {
    margin-top: auto;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-family: 'Bungee', cursive;
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 2rem !important;
}

/* =========================================================
   COMPONENT: FOOTER CTA BUTTON (LEGACY OVERRIDE)
   ========================================================= */
.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 40px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    font-size: 1.25rem;
    width: auto;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--secondary-main) !important;
    color: var(--neutral-1000) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-yellow:hover {
    background-color: var(--secondary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 185, 0, 0.3);
}

/* =========================================================
   FOOTER META
   ========================================================= */
.footer-copyright {
    font-size: 0.85rem;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0.7;
    margin-top: 1.5rem;
}

/* =========================================================
   RESPONSIVE: FOOTER (TABLET)
   ========================================================= */
@media (max-width: 1023.98px) {
    .footer-custom {
        min-height: 70vh;
        padding-bottom: 40px;
    }
    .footer-title {
        font-size: 3.5rem;
    }
    .btn-yellow {
        font-size: 1.8rem;
        padding: 10px 50px;
    }
}

/* =========================================================
   COMPONENT: TESTIMONIAL CAROUSEL CONTROLS
   ========================================================= */
.testimonial-carousel {
    overflow: visible !important;
}

.testimonial-carousel .carousel-control-prev,
.testimonial-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    opacity: 1;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    background-color: var(--primary-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .carousel-control-prev-icon,
.testimonial-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1); /* Make icons white */
}

.testimonial-carousel .carousel-control-prev {
    left: 10px;
}

.testimonial-carousel .carousel-control-next {
    right: 10px;
}

@media (min-width: 1024px) {
    .testimonial-carousel .carousel-control-prev {
        left: -80px;
        width: 60px;
        height: 60px;
    }
    .testimonial-carousel .carousel-control-next {
        right: -80px;
        width: 60px;
        height: 60px;
    }
    .testimonial-carousel .carousel-control-prev-icon,
    .testimonial-carousel .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}

/* =========================================================
   RESPONSIVE: FOOTER (MOBILE)
   ========================================================= */
@media (max-width: 600px) {
    .footer-custom {
        min-height: 60vh;
        padding-bottom: 30px;
    }

    .footer-bg {
        background-size: cover;
        background-position: center;
    }

    .footer-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 1.5rem !important;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
    }

    .btn-yellow {
        padding: 10px 40px;
        font-size: 1.5rem;
    }

    .footer-copyright {
        font-size: 0.7rem;
    }
}

/* =========================================================
   OVERRIDE: ELFSIGHT WIDGET (Hide Header)
   ========================================================= */
/* Menyembunyikan Header / Profile Bar Instagram */
div[class*="eapps-instagram-feed-header"],
div[class*="Header__Container"],
.eapps-instagram-feed-header,
.eapps-instagram-feed-title-container {
    display: none !important;
}

/* Memastikan Grid Full Width & Responsif */
.elfsight-app-c37a5036-2308-4e92-8634-8952c9c909b1 {
    width: 100%;
    display: block;
    min-height: 200px; /* Mencegah layout shift */
}

/* =========================================================
   OVERRIDE: ELFSIGHT WATERMARK / BRANDING REMOVAL
   ========================================================= */
/* 1. Selector Utama - Berdasarkan URL Tujuan */
a[href*="elfsight.com/instagram-feed-instalink"],
a[href*="utm_campaign=free-widget"],

/* 2. Selector Alternatif - Berdasarkan Class ID Elfsight umum */
.eapps-link,
a[class*="eapps-link"],
a[class*="Badge__Container"],

/* 3. Selector Spesifik Context - Link Elfsight dalam container widget */
[class*="elfsight-app"] > a[href*="elfsight.com"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    position: absolute !important;
    z-index: -999 !important;
}

/* =========================================================
   COMPONENT: VIDEO CONTROLS (GTR)
   ========================================================= */
.gtr-video-container {
    position: relative;
    overflow: hidden;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.gtr-video-container:hover .video-controls {
    opacity: 1;
}

.btn-video-mute {
    background: none;
    border: none;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.btn-video-mute:hover {
    transform: scale(1.1);
    color: var(--secondary-main);
}

.volume-slider-wrapper {
    flex: 1;
    max-width: 100px;
    display: flex;
    align-items: center;
}

.volume-range {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    outline: none;
    cursor: pointer;
}

.volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-main);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.volume-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--secondary-main);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 991.98px) {
    .video-controls {
        opacity: 1;
        padding: 10px 15px;
    }
    .volume-slider-wrapper {
        max-width: 80px;
    }
}

/* =========================================================
   COMPONENT: ACCORDION (TERMS & CONDITIONS)
   ========================================================= */
.accordion-gtr {
    border: none;
    gap: 12px;
    display: flex;
    flex-direction: column;
}

.accordion-item-gtr {
    border: 1px solid var(--primary-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 63, 34, 0.08);
    transition: all 0.3s ease;
}

.accordion-item-gtr:hover {
    border-color: var(--primary-main);
    box-shadow: 0 4px 16px rgba(0, 63, 34, 0.15);
}

.accordion-button-gtr {
    background-color: #ffffff;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button-gtr:not(.collapsed) {
    background-color: var(--primary-surface);
    box-shadow: none;
    color: var(--primary-green);
}

.accordion-button-gtr::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003F22'%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");
    transition: transform 0.3s ease;
}

.accordion-button-gtr:focus {
    border-color: var(--primary-main);
    box-shadow: 0 0 0 0.25rem rgba(0, 63, 34, 0.15);
    outline: none;
}

.accordion-title {
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.accordion-body-gtr {
    background-color: #ffffff;
    padding: 24px;
    color: var(--neutral-800);
    line-height: 1.8;
    font-size: 1rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    padding-left: 28px;
    margin-bottom: 16px;
    position: relative;
    color: var(--neutral-800);
}

.terms-list li:last-child {
    margin-bottom: 0;
}

.terms-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-main);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Hero Section */
/* .terms-hero-section {
    background: linear-gradient(135deg, rgba(0, 63, 34, 0.05) 0%, rgba(252, 185, 0, 0.03) 100%);
    border-bottom: 1px solid var(--primary-border);
} */

.terms-hero-section h1 {
    margin-bottom: 1rem;
}

/* CTA Section */
.terms-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, rgba(0, 63, 34, 0.03) 100%);
    border-top: 1px solid var(--primary-border);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .accordion-button-gtr {
        font-size: 1rem;
        padding: 16px 16px;
    }

    .accordion-title {
        font-size: 0.95rem;
    }

    .accordion-body-gtr {
        padding: 16px;
        font-size: 0.95rem;
    }

    .terms-list li {
        padding-left: 24px;
        margin-bottom: 12px;
        font-size: 0.95rem;
    }

    .terms-hero-section h1 {
        font-size: 1.75rem;
    }

    .terms-cta-section h2 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .accordion-button-gtr {
        font-size: 1.02rem;
        padding: 18px 22px;
    }

    .accordion-body-gtr {
        padding: 20px;
    }
}

