/*
Theme Name: İddiax
Theme URI: https://aktifglobalsans.com
Author: Aktif Global Şans
Author URI: https://aktifglobalsans.com
Description: Aktif Global Şans - Resmî İddaa Bayisi tek sayfa kurumsal teması. Bootstrap 5 + GSAP animasyonlu modern tasarım.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: iddiax
Tags: one-page, bootstrap, corporate, turkish
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --ix-green-dark: #0B3D2E;
    --ix-green-primary: #145A3C;
    --ix-green-medium: #1E7A56;
    --ix-green-light: #28A96C;
    --ix-gold: #D4A843;
    --ix-gray-100: #E8F0EC;
    --ix-gray-900: #1A2A22;
    --ix-white: #FFFFFF;
    --ix-black: #111111;
    --ix-danger: #C0392B;
    --ix-font-heading: 'Poppins', sans-serif;
    --ix-font-body: 'Inter', sans-serif;
    --ix-navbar-height: 72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto; /* GSAP handles smooth scroll */
}

body {
    font-family: var(--ix-font-body);
    font-weight: 400;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--ix-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--ix-font-heading);
    font-weight: 700;
    color: var(--ix-green-primary);
    line-height: 1.3;
}

a {
    color: var(--ix-green-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--ix-green-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.ix-navbar {
    padding: 0.75rem 0;
    transition: box-shadow 0.4s ease;
    z-index: 1050;
}

.ix-navbar-solid {
    background-color: var(--ix-green-dark);
}

.ix-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.ix-navbar .navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

.ix-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.ix-navbar-logo {
    height: 44px;
    width: 44px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.ix-brand-text {
    color: var(--ix-white);
    font-family: var(--ix-font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.ix-brand-text strong {
    font-weight: 700;
}

.ix-navbar .navbar-brand:hover .ix-navbar-logo {
    opacity: 0.85;
}

.ix-navbar .navbar-brand:hover .ix-brand-text {
    opacity: 0.85;
}

.ix-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.ix-navbar .nav-link:hover,
.ix-navbar .nav-link.active {
    color: var(--ix-white) !important;
}

.ix-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0.85rem;
    right: 0.85rem;
    height: 2px;
    background-color: var(--ix-gold);
    border-radius: 1px;
}

.ix-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.6rem;
}

.ix-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   SECTIONS - COMMON
   ============================================ */
.ix-section {
    padding: 5rem 0;
    position: relative;
}

.ix-section-light {
    background-color: var(--ix-gray-100);
}

.ix-section-dark {
    background-color: var(--ix-gray-900);
    color: rgba(255, 255, 255, 0.9);
}

.ix-section-dark h2,
.ix-section-dark h3,
.ix-section-dark h4 {
    color: var(--ix-white);
}

.ix-section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.ix-section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.ix-section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.ix-section-dark .ix-section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.ix-section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--ix-gold);
    border: none;
    margin: 1rem auto 2rem;
    opacity: 1;
}

.ix-section-dark .ix-section-divider {
    background-color: var(--ix-gold);
}

/* ============================================
   HERO
   ============================================ */
@keyframes ix-hero-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        var(--ix-green-dark) 0%,
        var(--ix-green-primary) 25%,
        var(--ix-green-medium) 50%,
        var(--ix-green-primary) 75%,
        var(--ix-green-dark) 100%
    );
    background-size: 300% 300%;
    animation: ix-hero-gradient 12s ease infinite;
    position: relative;
    overflow: hidden;
    padding-top: var(--ix-navbar-height);
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(40, 169, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes ix-badge-glow {
    0%, 100% {
        box-shadow: 0 0 8px rgba(212, 168, 67, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
    }
}

.ix-hero-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.2);
    border: 1px solid var(--ix-gold);
    color: var(--ix-gold);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: ix-badge-glow 3s ease-in-out infinite;
}

.ix-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ix-white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.ix-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* ============================================
   BUTTONS
   ============================================ */
.ix-btn-primary {
    background-color: var(--ix-green-medium);
    color: var(--ix-white);
    border: 2px solid var(--ix-green-medium);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ix-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.ix-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.ix-btn-primary:hover {
    background-color: var(--ix-green-light);
    border-color: var(--ix-green-light);
    color: var(--ix-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 122, 86, 0.45);
}

.ix-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 122, 86, 0.3);
}

.ix-btn-outline {
    background: transparent;
    color: var(--ix-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ix-btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--ix-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
}

.ix-btn-outline:hover::before {
    width: 300px;
    height: 300px;
}

.ix-btn-outline:hover {
    color: var(--ix-green-dark);
    border-color: var(--ix-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.ix-btn-outline:active {
    transform: translateY(-1px);
}

/* ============================================
   CARDS
   ============================================ */
.ix-card {
    background: var(--ix-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.ix-card-dark {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s ease,
                border-color 0.4s ease;
}

.ix-card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.ix-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--ix-green-medium), var(--ix-green-light));
    color: var(--ix-white);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
}

.ix-card:hover .ix-card-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 15px rgba(30, 122, 86, 0.4);
}

.ix-card-dark .ix-card-icon {
    background: linear-gradient(135deg, var(--ix-gold), #e6bc5a);
    color: var(--ix-green-dark);
}

.ix-card-dark:hover .ix-card-icon {
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.ix-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.ix-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

.ix-card-dark p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   HAKKIMIZDA (ABOUT)
   ============================================ */
.ix-about-deco {
    background: linear-gradient(135deg, var(--ix-green-dark), var(--ix-green-medium));
    border-radius: 16px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.5s ease;
}

.ix-about-deco:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(11, 61, 46, 0.4);
}

.ix-about-deco::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.ix-about-deco::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
}

.ix-about-deco-inner {
    text-align: center;
    color: var(--ix-white);
    padding: 2rem;
    z-index: 1;
}

.ix-about-deco-inner .ix-deco-number {
    font-family: var(--ix-font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ix-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ix-about-table {
    width: 100%;
    margin-top: 1.5rem;
}

.ix-about-table td {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.ix-about-table td:first-child {
    font-weight: 600;
    color: var(--ix-green-primary);
    width: 40%;
}

/* ============================================
   HORIZONTAL STEPS (NASIL OYNANIR)
   ============================================ */
.ix-step {
    text-align: center;
    padding: 0 0.5rem;
}

.ix-step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.ix-step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ix-gold);
    color: var(--ix-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ix-font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ix-step:hover .ix-step-number {
    transform: scale(1.12);
    box-shadow: 0 0 0 8px rgba(212, 168, 67, 0.3);
}

.ix-step-line {
    position: absolute;
    top: 50%;
    left: calc(50% + 30px);
    width: calc(100% - 10px);
    height: 2px;
    background: linear-gradient(to right, var(--ix-gold), rgba(212, 168, 67, 0.15));
    transform: translateY(-50%);
    z-index: 1;
}

.ix-step h4 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    color: var(--ix-white);
    transition: color 0.3s ease;
}

.ix-step:hover h4 {
    color: var(--ix-gold);
}

.ix-step p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hide connector line on last step */
.col-lg-3:last-child .ix-step-line {
    display: none;
}

/* Mobile: hide connector lines */
@media (max-width: 991.98px) {
    .ix-brand-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 991.98px) {
    .ix-step-line {
        display: none;
    }

    .ix-step {
        text-align: left;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 0;
    }

    .ix-step-header {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .ix-step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
}

/* ============================================
   GAME TYPE CARDS
   ============================================ */
.ix-game-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.ix-game-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 168, 67, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.ix-game-card i {
    font-size: 2rem;
    color: var(--ix-gold);
    margin-bottom: 0.75rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ix-game-card:hover i {
    transform: scale(1.2);
}

.ix-game-card h5 {
    font-size: 1rem;
    color: var(--ix-white);
    margin-bottom: 0.5rem;
}

.ix-game-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* ============================================
   UYELIK (MEMBERSHIP) CARDS
   ============================================ */
.ix-membership-card {
    background: var(--ix-white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border-top: 4px solid var(--ix-green-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease;
}

.ix-membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--ix-gold);
}

.ix-membership-card .ix-membership-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ix-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ix-green-medium);
    margin-bottom: 1.25rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                background 0.4s ease,
                color 0.4s ease;
}

.ix-membership-card:hover .ix-membership-icon {
    transform: scale(1.1);
    background: var(--ix-green-medium);
    color: var(--ix-white);
}

.ix-membership-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.ix-membership-card ol {
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.ix-membership-card ol li {
    font-size: 0.93rem;
    margin-bottom: 0.5rem;
    color: #555;
}

/* ============================================
   BAYI (DEALER) INFO
   ============================================ */
.ix-bayi-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ix-bayi-info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(6px);
}

.ix-bayi-info-item i {
    font-size: 1.3rem;
    color: var(--ix-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ix-bayi-info-item:hover i {
    transform: scale(1.2);
}

.ix-bayi-info-item h5 {
    font-size: 1rem;
    color: var(--ix-white);
    margin-bottom: 0.25rem;
}

.ix-bayi-info-item p {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.ix-bayi-map-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

/* Bayi Gallery */
.ix-bayi-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.ix-bayi-gallery-item {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.ix-bayi-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ix-bayi-gallery-item:hover {
    border-color: rgba(212, 168, 67, 0.35);
    background: rgba(255, 255, 255, 0.1);
}

.ix-bayi-gallery-item .ix-gallery-placeholder {
    text-align: center;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ix-bayi-gallery-item .ix-gallery-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.ix-bayi-gallery-item .ix-gallery-placeholder span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .ix-bayi-gallery {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 399.98px) {
    .ix-bayi-gallery {
        grid-template-columns: 1fr;
    }
}

.ix-bayi-badge {
    display: inline-block;
    background: var(--ix-gold);
    color: var(--ix-green-dark);
    font-weight: 700;
    font-family: var(--ix-font-heading);
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   ILETISIM (CONTACT)
   ============================================ */
.ix-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.ix-contact-item .ix-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--ix-green-medium);
    color: var(--ix-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ix-contact-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    color: var(--ix-green-primary);
}

.ix-contact-item p {
    font-size: 0.93rem;
    color: #555;
    margin-bottom: 0;
}

.ix-contact-map-placeholder {
    background: var(--ix-gray-100);
    border: 1px dashed #ccc;
    border-radius: 12px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.95rem;
}

/* ============================================
   YASAL (LEGAL)
   ============================================ */
.ix-legal-box {
    background: #FFF5F5;
    border: 2px solid var(--ix-danger);
    border-radius: 12px;
    padding: 2.5rem;
}

.ix-legal-box h3 {
    color: var(--ix-danger);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.ix-legal-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ix-legal-box ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    color: #444;
}

.ix-legal-box ul li::before {
    content: '\F33D'; /* bi-exclamation-triangle-fill */
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ix-danger);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.ix-footer {
    background-color: var(--ix-green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.ix-footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
}

.ix-footer h5 {
    color: var(--ix-white);
    font-family: var(--ix-font-heading);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
}

.ix-footer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.ix-footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.ix-footer a:hover {
    color: var(--ix-gold);
}

.ix-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ix-footer-links li {
    margin-bottom: 0.6rem;
}

.ix-footer-links li a {
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.ix-footer-links li a:hover {
    padding-left: 6px;
}

.ix-footer-links li a::before {
    content: '\F285'; /* bi-chevron-right */
    font-family: 'bootstrap-icons';
    margin-right: 0.5rem;
    font-size: 0.7rem;
    transition: margin-right 0.3s ease;
}

.ix-footer-links li a:hover::before {
    margin-right: 0.75rem;
}

.ix-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    margin-top: 3rem;
    text-align: center;
}

.ix-footer-bottom p {
    margin: 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CALLOUT / ALERT BOXES
   ============================================ */
.ix-callout {
    background: rgba(212, 168, 67, 0.1);
    border-left: 4px solid var(--ix-gold);
    padding: 1rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-top: 1.5rem;
    font-size: 0.93rem;
}

.ix-callout-dark {
    background: rgba(212, 168, 67, 0.08);
    border-left-color: var(--ix-gold);
}

.ix-callout i {
    color: var(--ix-gold);
    margin-right: 0.5rem;
}

/* ============================================
   MISC UTILITIES
   ============================================ */
.ix-text-gold {
    color: var(--ix-gold);
}

.ix-bg-green-dark {
    background-color: var(--ix-green-dark);
}

.ix-text-green-primary {
    color: var(--ix-green-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .ix-hero-title {
        font-size: 2.5rem;
    }

    .ix-section-title {
        font-size: 1.85rem;
    }

    .ix-section {
        padding: 3.5rem 0;
    }

    .ix-navbar .navbar-collapse {
        background-color: var(--ix-green-dark);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .ix-hero-title {
        font-size: 2rem;
    }

    .ix-hero-subtitle {
        font-size: 1.05rem;
    }

    .ix-section {
        padding: 3rem 0;
    }

    .ix-section-title {
        font-size: 1.65rem;
    }

    .ix-card {
        padding: 1.5rem;
    }

    .ix-legal-box {
        padding: 1.5rem;
    }
}
