/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    /* Brand Colors */
    --primary-navy: #003366;
    --primary-dark: #001a33;
    --primary-light: #0059b3;
    --accent-gold: #D4AF37;
    --accent-gold-light: #e6c966;
    --loyalty-dark: #292929;
    --loyalty-green:#3bffbf ;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #e9ecef;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;

    /* Semantic */
    --success: #28a745;  /* ADD THIS - for checkmarks */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.loader-brand {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-navy);
}

.loader-llc {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ===================================
   HEADER STYLES
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.main-header .navbar {
    padding: 0.75rem 0; /* Reduced padding - no extra space */
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.brand-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-suffix {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    line-height: 1;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.5rem 1.2rem !important;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-navy);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 2px solid var(--primary-navy);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.15);
}

/* ===================================
   FOOTER STYLES
   =================================== */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-content {
    padding: 70px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-brand-suffix {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-copyright,
.footer-gmg {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-gmg a {
    color: var(--accent-gold);
    transition: var(--transition);
}

.footer-gmg a:hover {
    color: var(--white);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
}

@media (max-width: 767px) {
    .brand-name {
        font-size: 22px;
    }
    
    .brand-suffix {
        font-size: 16px;
    }
    
    .footer-brand-name {
        font-size: 24px;
    }
    
    .footer-brand-suffix {
        font-size: 16px;
    }
    
    .footer-gmg {
        text-align: left !important;
        margin-top: 10px;
    }
}



/* ===================================
   HERO SECTION - CLEAN & IMPROVED
   =================================== */

.hero-section {
    margin-top: 60px;
    position: relative;
}

.carousel-item {
    height: 90vh;
    min-height: 650px;
    max-height: 900px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Improved Overlay - Subtle & Professional */
.hero-overlay-improved {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Horizontal vignette - darker edges */
        linear-gradient(
            to right,
            rgba(0, 51, 102, 0.4) 0%,
            rgba(0, 51, 102, 0.15) 50%,
            rgba(0, 51, 102, 0.4) 100%
        ),
        /* Vertical gradient - gold to navy at bottom */
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 30%,
            rgba(0, 0, 0, 0) 50%,
            rgba(212, 175, 55, 0.45) 85%,
            rgba(0, 51, 102, 0.75) 100%
        );
}

/* Content Container - Centered */
.hero-content-simple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 80px 20px;
}

.hero-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Clean Title */
.hero-title-clean {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 80px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.title-gold {
    color: var(--accent-gold);
    display: block;
}

/* Clean Description */
.hero-desc-clean {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
}

/* Clean Buttons */
.hero-buttons-clean {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 20px 50px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.btn-gold:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 20px 50px;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-4px);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0.9;
    transition: var(--transition);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 35px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 10px;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--accent-gold);
    width: 50px;
    border-radius: 6px;
}

/* hero particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--accent-gold);
    border-radius: 50%;
     opacity: 0;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 8s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10vh) scale(1);
    }
}


/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1199px) {
    .hero-title-clean {
        font-size: 70px;
    }
    
    .hero-desc-clean {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .carousel-item {
        min-height: 600px;
    }
    
    .hero-title-clean {
        font-size: 60px;
    }
    
    .hero-desc-clean {
        font-size: 19px;
    }
    
    .btn-gold,
    .btn-outline-white {
        padding: 18px 45px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .carousel-item {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content-simple {
        padding: 60px 20px;
    }
    
    .hero-title-clean {
        font-size: 48px;
        margin-bottom: 25px;
    }
    
    .hero-desc-clean {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .btn-gold,
    .btn-outline-white {
        padding: 16px 40px;
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
        display: none;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 575px) {
    .hero-title-clean {
        font-size: 42px;
    }
    
    .hero-desc-clean {
        font-size: 16px;
    }
    
    .hero-buttons-clean {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-gold,
    .btn-outline-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}


/* ===================================
   FIX: Make Controls Clickable
   =================================== */

/* Hero content should not block controls */
.hero-content-simple {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 80px 20px;
    pointer-events: none; /* Allow clicks through */
}

/* Make text and buttons clickable */
.hero-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    pointer-events: auto; /* Re-enable clicks for content */
}

/* Carousel Controls - Higher z-index */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0.9;
    transition: var(--transition);
    z-index: 10; /* Higher than content */
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators - Higher z-index */
.carousel-indicators {
    bottom: 35px;
    z-index: 10; /* Higher than content */
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 10px;
    transition: var(--transition);
    cursor: pointer; /* Show pointer cursor */
}

.carousel-indicators .active {
    background-color: var(--accent-gold);
    width: 50px;
    border-radius: 6px;
}


/* ===================================
   PARTNERS SECTION - FIXED
   =================================== */

.partners-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 0;
    letter-spacing: -1px;
}

/* Simple Brand Cards */
.brand-card-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    height: 100%;
    min-height: 220px;
}

.brand-card-simple:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.brand-logo-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.brand-card-simple:hover .brand-logo {
    transform: scale(1.05);
}

.brand-visit {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.brand-card-simple:hover .brand-visit {
    color: var(--accent-gold);
}

/* ===================================
   RESPONSIVE - PARTNERS
   =================================== */

@media (max-width: 1199px) {
    .section-title {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .partners-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .brand-card-simple {
        padding: 40px 25px;
        min-height: 200px;
    }
    
    .brand-logo {
        max-height: 60px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .brand-card-simple {
        padding: 35px 20px;
        min-height: 180px;
        margin-bottom: 15px;
    }
    
    .brand-logo {
        max-height: 55px;
    }
}

@media (max-width: 575px) {
    .brand-card-simple {
        min-height: 160px;
        padding: 30px 20px;
    }
    
    .brand-logo {
        max-height: 50px;
    }
}



/* ===================================
   BRAND PURPOSE SECTION
   =================================== */

.brand-purpose-section {
    padding: 100px 0;
    background: var(--white);
}

.purpose-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.purpose-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.purpose-image-wrapper:hover .purpose-img {
    transform: scale(1.05);
}

.image-overlay-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 15px;
}

.purpose-content {
    padding-left: 50px;
}

.purpose-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.purpose-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.heading-accent {
    color: var(--accent-gold);
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin-bottom: 30px;
    border-radius: 2px;
}

.purpose-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.purpose-text strong {
    color: var(--primary-navy);
}

/* ===================================
   RESPONSIVE - PURPOSE
   =================================== */

@media (max-width: 991px) {
    .brand-purpose-section {
        padding: 80px 0;
    }
    
    .purpose-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .purpose-heading {
        font-size: 42px;
    }
    
    .purpose-img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .brand-purpose-section {
        padding: 60px 0;
    }
    
    .purpose-heading {
        font-size: 36px;
    }
    
    .purpose-text {
        font-size: 16px;
    }
    
    .purpose-img {
        height: 350px;
    }
    
    .image-overlay-badge {
        padding: 14px 24px;
        bottom: 20px;
        left: 20px;
    }
    
    .badge-text {
        font-size: 14px;
    }
}

/* ===================================
   LOYALTY SECTION - MIXED THEME
   =================================== */

.loyalty-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

/* Visual Side - GREEN THEME */
.loyalty-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Circle background - GREEN */
.loyalty-circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #00b359 0%, #00d966 100%); /* Green for logo */
    border-radius: 50%;
    animation: pulse-loyalty 4s ease-in-out infinite;
}

@keyframes pulse-loyalty {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.25;
    }
}

.loyalty-logo-large {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* &u Logo Image */
.andu-logo-image {
    max-width: 100%;
    width: 280px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.andu-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 50px rgba(0, 0, 0, 0.2));
}

/* Glow behind logo - GREEN */
.logo-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 179, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Floating Icons - GREEN */
.loyalty-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.float-icon i {
    font-size: 30px;
    color: #00b359; /* Green icons on left */
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
}

.icon-3 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Content Side - GOLD THEME (ORIGINAL) */
.loyalty-content {
    padding-left: 30px;
    max-width: 550px;
}

.section-title-loyalty {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-navy);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loyalty-brand {
    font-size: 56px;
    color: var(--loyalty-dark); 
}

.loyalty-u {
    color: var(--loyalty-green);
}

.loyalty-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 30px;
}

.loyalty-description strong {
    color: var(--primary-navy);
}

.loyalty-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.loyalty-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
}

.loyalty-benefits i {
    color: var(--success); /* GREEN checkmarks (standard success color) */
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.loyalty-benefits strong {
    color: var(--primary-navy);
}

.loyalty-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons - GOLD THEME (ORIGINAL) */
.btn-loyalty {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 18px 45px;
    background: var(--accent-gold); /* GOLD button */
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
}

.btn-loyalty:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(0, 51, 102, 0.4);
}

.btn-loyalty-outline {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    padding: 18px 45px;
    background: transparent;
    color: var(--primary-navy); /* NAVY outline */
    border: 2px solid var(--primary-navy);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-loyalty-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
    transform: translateY(-4px);
}

/* ===================================
   RESPONSIVE - LOYALTY
   =================================== */

@media (max-width: 1199px) {
    .andu-logo-image {
        width: 240px;
    }
    
    .loyalty-circle-bg {
        width: 350px;
        height: 350px;
    }
    
    .section-title-loyalty {
        font-size: 42px;
    }
    
    .loyalty-brand {
        font-size: 50px;
    }
    
    .loyalty-content {
        max-width: 500px;
    }
}

@media (max-width: 991px) {
    .loyalty-section {
        padding: 80px 0;
    }
    
    .loyalty-visual {
        height: 400px;
        margin-bottom: 50px;
    }
    
    .andu-logo-image {
        width: 220px;
    }
    
    .loyalty-content {
        padding-left: 0;
        max-width: 100%;
    }
    
    .loyalty-circle-bg {
        width: 300px;
        height: 300px;
    }
    
    .float-icon {
        width: 60px;
        height: 60px;
    }
    
    .float-icon i {
        font-size: 26px;
    }
    
    .section-title-loyalty {
        font-size: 38px;
    }
    
    .loyalty-brand {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .loyalty-section {
        padding: 60px 0;
    }
    
    .loyalty-visual {
        height: 350px;
        margin-bottom: 40px;
    }
    
    .andu-logo-image {
        width: 200px;
    }
    
    .loyalty-circle-bg {
        width: 250px;
        height: 250px;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
    }
    
    .float-icon i {
        font-size: 22px;
    }
    
    .section-title-loyalty {
        font-size: 34px;
    }
    
    .loyalty-brand {
        font-size: 40px;
    }
    
    .loyalty-description {
        font-size: 16px;
    }
    
    .loyalty-benefits li {
        font-size: 15px;
    }
    
    .loyalty-cta {
        flex-direction: column;
    }
    
    .btn-loyalty,
    .btn-loyalty-outline {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .andu-logo-image {
        width: 180px;
    }
    
    .loyalty-circle-bg {
        width: 220px;
        height: 220px;
    }
}



/* ===================================
   ENHANCED ANIMATIONS
   =================================== */

/* Fade up animation */
[data-fade-up] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-fade-up].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-fade-up][data-delay="100"] {
    transition-delay: 0.1s;
}

[data-fade-up][data-delay="200"] {
    transition-delay: 0.2s;
}

[data-fade-up][data-delay="300"] {
    transition-delay: 0.3s;
}


/* ===================================
   WHY CHOOSE US SECTION (NEW)
   =================================== */

.why-choose-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CTA SECTION (NEW)
   =================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%),
                url('https://images.unsplash.com/photo-1607082348824-0a96f2a4b9da?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    position: relative;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.9) 0%, rgba(0, 26, 51, 0.95) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 20px 45px;
    background: var(--accent-gold);
    color: var(--primary-navy);
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.btn-cta-primary:hover {
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 20px 45px;
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-navy);
    transform: translateY(-4px);
}

/* ===================================
   SECTION SPACING ADJUSTMENTS
   =================================== */

/* Reduce spacing */
.brand-purpose-section {
    padding: 80px 0; /* Reduced from 100px */
}

.partners-section {
    padding: 80px 0; /* Reduced from 100px */
}

.loyalty-section {
    padding: 80px 0; /* Reduced from 100px */
}

/* ===================================
   BACKGROUND COLOR VARIATIONS
   =================================== */

/* Alternating backgrounds */
.brand-purpose-section {
    background: var(--white);
}

.partners-section {
    background: var(--gray-50);
}

.loyalty-section {
    background: var(--white);
}

/* ===================================
   RESPONSIVE - NEW SECTIONS
   =================================== */

@media (max-width: 991px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .why-choose-section {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .feature-box {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}



/* Animated Gradient Text */
.heading-animation {
    background: linear-gradient(
        90deg,
        var(--primary-navy) 0%,
        var(--accent-gold) 50%,
        var(--primary-navy) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}



/* ===================================
   HERO PARTICLES
   =================================== */

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
}

/* Gold particles */
.hero-particle.gold {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0) 70%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Navy particles */
.hero-particle.navy {
    background: radial-gradient(circle, rgba(0, 89, 179, 0.8) 0%, rgba(0, 89, 179, 0) 70%);
    box-shadow: 0 0 15px rgba(0, 89, 179, 0.5);
}

/* White particles */
.hero-particle.white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Magnet mode - brighter glow */
.hero-particle.magnet-active {
    filter: brightness(1.8);
    animation: magnet-glow 1s ease-in-out infinite;
}

/* Glow animation in magnet mode */
@keyframes magnet-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Gentle pulse for all particles */
@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}
