/* Global Styles & Variables */

:root {
    --color-primary: #0B1E3F;
    --color-primary-light: #1a3a71;
    --color-secondary: #F5A623;
    --color-gold: #D4AF37;
    --color-bg-light: #F8FAFC;
    --color-bg-offwhite: #F9FBFC;
    --color-white: #FFFFFF;
    --color-text-dark: #0B1E3F;
    --color-text-gray: #64748b;
    --color-border: #E5EBF5;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --mesh-gradient: radial-gradient(at 0% 0%, hsla(217, 100%, 15%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(217, 100%, 25%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(45, 100%, 48%, 1) 0, transparent 50%);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1240px;
    --spacing-xs: clamp(0.25rem, 1vw, 0.5rem);
    --spacing-sm: clamp(0.5rem, 2vw, 1rem);
    --spacing-md: clamp(1rem, 4vw, 2rem);
    --spacing-lg: clamp(2rem, 8vw, 4rem);
    --spacing-xl: clamp(3rem, 16vw, 8rem);

    --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

@media (min-width: 640px) {
    html {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    min-height: 44px;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #0d2952;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #e69500;
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: var(--spacing-sm);
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

.mb-3 {
    margin-bottom: var(--spacing-lg);
}

/* HEADER & NAVIGATION */
.site-header {
    background-color: var(--color-white);
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 2000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    padding: 0.5rem 0;
}

.main-nav a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    white-space: nowrap;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width .3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

/* HEADER RESPONSIVENESS */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.1, 0.1, 0.1, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-only {
    display: none !important;
}

@media (max-width: 767px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-white);
        padding: 5rem 2rem 2rem;
        transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 2050;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .main-nav a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* MAIN CONTENT */
main {
    flex: 1 0 auto;
    background-color: var(--color-white);
    position: relative;
    z-index: 1;
}

/* HERO SECTION */
.hero-horizon {
    position: relative;
    padding: 4rem 0 3rem;
    background: var(--color-primary);
    background-image: url('../uploads/site/hero-mesh.png');
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-horizon {
        padding: 6rem 0 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-horizon {
        padding: 8rem 0 6rem;
    }
}

.hero-horizon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 30, 63, 0.2), rgba(11, 30, 63, 0.8));
    z-index: 1;
}

.hero-horizon .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .hero-horizon .container {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
}

.hero-content-main {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.hero-content-main.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(245, 166, 35, 0.2);
    border: 1px solid var(--color-secondary);
    color: var(--color-secondary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title-main {
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    color: white;
}

.hero-title-main span {
    color: var(--color-secondary);
    background: linear-gradient(to right, #F5A623, #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-main {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .hero-desc-main {
        font-size: 1.25rem;
        max-width: 600px;
    }
}

.hero-btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

@media (min-width: 576px) {
    .hero-btn-group {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.hero-btn-group .btn-secondary {
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 8px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    width: 100%;
    text-align: center;
}

@media (min-width: 576px) {
    .hero-btn-group .btn-secondary {
        width: auto;
    }
}

.hero-btn-group .btn-secondary:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.hero-btn-group .btn-learn-more {
    color: white;
    border-bottom: 2px solid var(--color-secondary);
    padding: 0 0 4px;
    border-radius: 0;
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hero-btn-group .btn-learn-more:hover {
    color: var(--color-secondary);
}

.hero-visual-main {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.hero-visual-main.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-visual-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-premium);
    text-align: center;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .glass-visual-card {
        padding: 2.5rem;
        margin-top: 0;
    }
}

.glass-visual-card>div:first-child {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .glass-visual-card>div:first-child {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
}

.glass-visual-card h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .glass-visual-card h3 {
        font-size: 1.5rem;
    }
}

.glass-visual-card p {
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .glass-visual-card p {
        font-size: 0.95rem;
    }
}

.glass-visual-card .progress-indicator {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.glass-visual-card .progress-bar {
    width: 30px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.glass-visual-card .progress-bar.inactive {
    width: 15px;
    background: #e2e8f0;
}

@media (min-width: 768px) {
    .glass-visual-card .progress-bar {
        width: 40px;
    }

    .glass-visual-card .progress-bar.inactive {
        width: 20px;
    }
}

/* STATS STRIP */
.stats-strip {
    background: white;
    padding: 2rem 1rem;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    border-radius: 1rem;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

@media (min-width: 768px) {
    .stats-strip {
        margin-top: -3rem;
        padding: 2.5rem 0;
        border-radius: 1.5rem;
    }
}

.stats-strip.active {
    opacity: 1;
    transform: translateY(0);
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .stats-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

.stat-item p {
    color: var(--color-text-gray);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* STRATEGIC INITIATIVES */
.strategic-initiatives {
    padding: 4rem 0;
    background: var(--color-bg-light);
}

@media (min-width: 768px) {
    .strategic-initiatives {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .strategic-initiatives {
        padding: 8rem 0;
    }
}

.section-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

@media (min-width: 768px) {
    .section-head {
        margin: 0 auto 5rem;
    }
}

.section-head.active {
    opacity: 1;
    transform: translateY(0);
}

.section-head p {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-head p {
        font-size: 1.1rem;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-sidebar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .grid-sidebar {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
    }
}

.grid-equal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.glass-modern-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(30px);
}

@media (min-width: 768px) {
    .glass-modern-card {
        padding: 2.5rem;
    }
}

.glass-modern-card.active {
    opacity: 1;
    transform: translateY(0);
}

.glass-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.glass-modern-card .icon-box-gold {
    width: 50px;
    height: 50px;
    background: #FFF9EF;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .glass-modern-card .icon-box-gold {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

.glass-modern-card h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .glass-modern-card h3 {
        font-size: 1.3rem;
    }
}

.glass-modern-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .glass-modern-card p {
        font-size: 0.95rem;
    }
}

/* MEMBERSHIP ECOSYSTEM */
.membership-ecosystem {
    padding: 4rem 0;
    background: white;
    position: relative;
}

@media (min-width: 768px) {
    .membership-ecosystem {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .membership-ecosystem {
        padding: 8rem 0;
    }
}

.membership-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .membership-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 4rem;
    }
}

.membership-header h2 {
    margin-bottom: 1rem;
}

.membership-header p {
    color: var(--color-text-gray);
    max-width: 600px;
    line-height: 1.6;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .membership-header p {
        font-size: 1.1rem;
    }
}

.btn-mockup-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-bottom: 1rem;
    background: transparent;
    width: 100%;
    text-align: center;
}

@media (min-width: 576px) {
    .btn-mockup-outline {
        width: auto;
    }
}

.btn-mockup-outline:hover {
    background: var(--color-primary);
    color: white;
}

.grid-5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.25rem;
    }
}

/* Tier Cards */
.glass-modern-card.tier-card {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 4px solid var(--color-secondary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .glass-modern-card.tier-card {
        padding: 2rem;
    }
}

.glass-modern-card.tier-card:nth-child(even) {
    border-bottom-color: var(--color-primary);
}

.glass-modern-card.tier-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .glass-modern-card.tier-card h4 {
        font-size: 1.15rem;
    }
}

.glass-modern-card.tier-card p {
    font-size: 0.85rem;
    height: auto;
    min-height: 80px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    color: var(--color-text-gray);
    line-height: 1.5;
    flex-grow: 1;
}

.glass-modern-card.tier-card .tier-link {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    display: inline-block;
    margin-top: auto;
}

.glass-modern-card.tier-card .tier-link:hover {
    border-bottom-color: var(--color-secondary);
}

/* EXCELLENCE CTA */
.excellence-cta {
    padding: 4rem 0;
    background: var(--color-primary);
    color: white;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .excellence-cta {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .excellence-cta {
        padding: 8rem 0;
    }
}

.excellence-cta::before {
    content: '🏆';
    position: absolute;
    right: -5%;
    top: -10%;
    font-size: 15rem;
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

@media (min-width: 768px) {
    .excellence-cta::before {
        font-size: 20rem;
    }
}

@media (min-width: 1024px) {
    .excellence-cta::before {
        font-size: 25rem;
    }
}

.excellence-cta .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .excellence-cta .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.excellence-content h2 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.excellence-content h2 span {
    color: var(--color-secondary);
}

.excellence-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .excellence-content p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

.excellence-cta .btn-secondary {
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border: none;
    text-decoration: none;
    display: inline-block;
}

@media (min-width: 768px) {
    .excellence-cta .btn-secondary {
        font-size: 1.1rem;
    }
}

.excellence-cta .btn-secondary:hover {
    background: #e69500;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 166, 35, 0.3);
}

.testimonial-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 3rem;
        border-radius: 2rem;
    }
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-secondary);
    line-height: 1;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--color-primary);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-title {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* FOOTER */
.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .site-footer {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
    }
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-gold));
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
}

/* Footer Brand Section */
.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .footer-brand h3 {
        font-size: 1.8rem;
    }
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

@media (min-width: 768px) {
    .footer-brand p {
        font-size: 1rem;
    }
}

/* Footer Links Section */
.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-links h4 {
        font-size: 1.2rem;
        margin-bottom: var(--spacing-md);
    }
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--color-secondary);
}

@media (max-width: 768px) {
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 1rem;
    }
}

.footer-links a:hover {
    color: var(--color-secondary);
}

@media (min-width: 768px) {
    .footer-links a:hover {
        padding-left: 8px;
    }

    .footer-links a::before {
        content: '→';
        position: absolute;
        left: -15px;
        opacity: 0;
        transition: all 0.3s ease;
        color: var(--color-secondary);
    }

    .footer-links a:hover::before {
        left: -10px;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .footer-links a::before {
        display: none;
    }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .social-icons {
        justify-content: center;
    }
}

.social-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--color-white) !important;
    border-radius: 50% !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-size: 0 !important;
}

.social-icon i {
    display: block !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    width: 1em !important;
    height: 1em !important;
    text-align: center !important;
    position: relative;
    top: 0;
    left: 0;
}

.social-icon:hover {
    background: var(--color-secondary) !important;
    color: var(--color-primary) !important;
    transform: translateY(-3px) !important;
    border-color: var(--color-secondary) !important;
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3) !important;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: var(--spacing-lg);
        font-size: 0.9rem;
    }
}

.footer-bottom p {
    margin: 0;
    line-height: 1.6;
}

.footer-bottom p::before {
    content: "© ";
    font-size: 0.9em;
}

.site-footer:after {
    content: '';
    display: table;
    clear: both;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-rotate {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for cards */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Other page styles - ensuring they have proper backgrounds */
.page-header {
    background-color: #EAF8FF;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .page-header {
        padding: 6rem 0;
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* About Intro */
.about-intro {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

@media (min-width: 768px) {
    .about-intro p {
        margin-bottom: 2rem;
        font-size: 1.1rem;
    }
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.mission-icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .mission-icon-container {
        margin-bottom: 2rem;
    }
}

.mission-icon {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.mission-icon span {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.vision-icon {
    background: #fffde7;
}

.vision-icon span {
    color: #fbc02d;
}

.mission-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin: 0;
}

.mission-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .mission-card p {
        font-size: 1.05rem;
    }
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        max-width: 900px;
        margin: 0 auto 3rem;
    }
}

.value-card-blue {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    background: #e3f2fd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .value-card-blue {
        padding: 2.5rem 2rem;
    }
}

.value-card-blue:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .value-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

.value-card-blue h4 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 600;
}

@media (min-width: 768px) {
    .value-card-blue h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

.value-card-blue p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .value-card-blue p {
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-dark-about {
    text-align: center;
}

.cta-dark-about h2 {
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-dark-about h2 {
        margin-bottom: 1.5rem;
    }
}

.cta-dark-about p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .cta-dark-about p {
        margin: 0 auto 2.5rem;
        font-size: 1.2rem;
    }
}

.cta-dark-about .btn-secondary {
    font-weight: 700;
    padding: 1rem 2rem;
    font-size: 1rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .cta-dark-about .btn-secondary {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 4rem;
    }
}

/* Animation delays for values */
.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Responsive adjustments for very small screens */
@media (max-width: 639px) {
    .mission-icon {
        width: 45px;
        height: 45px;
    }

    .mission-icon span {
        font-size: 1.25rem;
    }

    .mission-card h3 {
        font-size: 1.3rem;
    }

    .value-card-blue {
        padding: 1.5rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .value-card-blue h4 {
        font-size: 1.1rem;
    }
}

/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .mission-vision-grid {
        gap: 2rem;
    }

    .values-grid {
        gap: 1.5rem;
    }
}

/* Ensure proper spacing on mobile */
@media (max-width: 767px) {
    .about-content {
        padding: 3rem 0;
    }

    .mission-section,
    .values-section-bg {
        padding: 4rem 0;
    }

    .cta-dark-about {
        padding: 4rem 0;
    }
}

.about-content {
    background-color: var(--color-white);
    padding: 4rem 0;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .about-content {
        padding: 6rem 0;
    }
}

.mission-section {
    background-color: #EAF8FF;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .mission-section {
        padding: 6rem 0;
    }
}

.values-section-bg {
    background-color: var(--color-white);
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .values-section-bg {
        padding: 6rem 0;
    }
}

.cta-dark-about {
    background-color: var(--color-primary);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .cta-dark-about {
        padding: 6rem 0;
    }
}

/* Contact Page */
.contact-header {
    background-color: #F0F4F8;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-header {
        padding: 6rem 0;
    }
}

.contact-cta-dark {
    background-color: #0B1E3F;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-cta-dark {
        padding: 6rem 0;
    }
}

/* Membership Page */
.membership-overview-header {
    background-color: #EAF8FF;
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .membership-overview-header {
        padding: 6rem 0;
    }
}

/* Event Page */
.event-details-hero {
    background-color: #0B1E3F;
    color: white;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .event-details-hero {
        padding: 6rem 0;
    }
}

/* Sponsors Section */
.sponsors-section {
    padding: 4rem 0;
    text-align: center;
    background-color: #F8F9FA;
}

@media (min-width: 768px) {
    .sponsors-section {
        padding: 6rem 0;
    }
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 768px) {
    .features-section {
        padding: 6rem 0;
    }
}

/* Tiers Section */
.tiers-section {
    padding: 4rem 0;
    background: #fdfdfd;
}

@media (min-width: 768px) {
    .tiers-section {
        padding: 6rem 0;
    }
}

/* Excellence Section (alternative) */
.excellence-section {
    padding: 4rem 0;
    background: linear-gradient(90deg, #09152b 0%, #1A3461 100%);
    color: white;
}

@media (min-width: 768px) {
    .excellence-section {
        padding: 6rem 0;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: #888;
    background-color: var(--color-bg-light);
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    margin: 0 0.5rem;
}

/* Reset background for common elements */
section {
    background-color: transparent;
}

/* Ensure body and main have proper backgrounds */
body>*:not(.hero-horizon):not(.excellence-cta):not(.site-footer):not(.contact-cta-dark):not(.cta-dark-about):not(.event-details-hero):not(.excellence-section) {
    background-color: var(--color-white);
}

/* Additional styles for cards, forms, etc. */
.card-image-container {
    background-color: #E0E4E8;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8899A6;
    font-size: 2rem;
}

.overlay-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

/* Tag Colors */
.tag-yellow {
    background: #FFC107;
    color: #333;
}

.tag-blue {
    background: #E3F2FD;
    color: #1565C0;
}

.tag-purple {
    background: #F3E5F5;
    color: #7B1FA2;
}

.tag-green {
    background: #E8F5E9;
    color: #2E7D32;
}

.tag-red {
    background: #FFEBEE;
    color: #C62828;
}

/* Additional responsive adjustments */
@media (max-width: 639px) {

    /* Adjust padding for very small screens */
    .hero-horizon,
    .strategic-initiatives,
    .membership-ecosystem,
    .excellence-cta,
    .site-footer,
    .page-header,
    .about-content,
    .mission-section,
    .values-section-bg,
    .cta-dark-about,
    .contact-header,
    .contact-cta-dark,
    .membership-overview-header,
    .event-details-hero,
    .sponsors-section,
    .features-section,
    .tiers-section,
    .excellence-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    /* Reduce icon sizes */
    .icon-box-gold,
    .feature-icon-new {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Dark mode support (optional) */
/* @media (prefers-color-scheme: dark) {
    :root {
        --color-bg-light: #1a1a2e;
        --color-white: #16213e;
        --color-text-gray: #b0b0b0;
        --color-border: #2d3748;
    }
    
    body {
        background-color: var(--color-bg-light);
        color: #e2e8f0;
    }
    
    .glass-modern-card,
    .premium-feature-card,
    .grid-card {
        background-color: #2d3748;
        border-color: #4a5568;
    }
} */

/* Print styles */
@media print {

    .site-header,
    .site-footer,
    .hero-btn-group,
    .social-icons,
    .btn {
        display: none !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    .glass-modern-card,
    .premium-feature-card,
    .grid-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .glass-visual-card {
        animation: none !important;
    }

    .reveal {
        transition: none !important;
    }
}


/* ============================================
   AWARDS PAGE SPECIFIC STYLES
   ============================================ */

/* Breadcrumb Section */
.awards-breadcrumb-section {
    background-color: #EAF8FF;
    padding: 1.5rem 0;
}

.awards-breadcrumb-section .breadcrumbs {
    padding: 0;
    background: transparent;
    margin-bottom: 0;
}

/* Title Section */
.awards-title-section {
    padding: 4rem 0;
    text-align: center;
}

@media (min-width: 768px) {
    .awards-title-section {
        padding: 6rem 0;
    }
}

.awards-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .awards-icon {
        font-size: 4rem;
        margin-bottom: 2rem;
    }
}

.awards-title-section h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .awards-title-section h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
}

.awards-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .awards-intro {
        font-size: 1.2rem;
    }
}

/* Awards Cards Section */
.awards-cards-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .awards-cards-section {
        padding: 6rem 0;
    }
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Award Cards */
.award-card-box {
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .award-card-box {
        padding: 3rem;
    }
}

.award-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Navy Card (Even index) */
.award-card-navy {
    background: var(--color-primary);
    color: white;
}

/* Orange Card (Odd index) */
.award-card-orange {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.award-card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .award-card-icon {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.award-card-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .award-card-box h3 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
}

.award-card-box p {
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .award-card-box p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
}

.award-card-btn {
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    padding: 0.875rem 0;
    text-align: center;
    display: block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.award-card-navy .award-card-btn {
    background-color: white;
    color: var(--color-primary);
}

.award-card-orange .award-card-btn {
    background-color: var(--color-primary);
    color: white;
}

.award-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.award-card-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px dashed var(--color-border);
}

@media (min-width: 768px) {
    .award-card-empty {
        padding: 4rem 3rem;
    }
}

.award-card-empty p {
    font-size: 1.1rem;
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.6;
}

/* CTA Section */
.awards-cta-section {
    padding: 4rem 0;
    background-color: #EAF8FF;
    text-align: center;
}

@media (min-width: 768px) {
    .awards-cta-section {
        padding: 6rem 0;
    }
}

.awards-cta-section h2 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .awards-cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.awards-cta-section p {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .awards-cta-section p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
}

.awards-cta-section .btn-outline {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: inline-block;
    font-size: 1rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .awards-cta-section .btn-outline {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }
}

.awards-cta-section .btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 30, 63, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 767px) {

    /* Stack cards on mobile */
    .award-card-box {
        padding: 2rem;
    }

    .award-card-box h3 {
        font-size: 1.5rem;
    }

    .award-card-icon {
        font-size: 1.75rem;
    }

    .award-card-btn {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }

    .awards-title-section h1 {
        font-size: 2.2rem;
    }

    .awards-cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    /* Tablet adjustments */
    .awards-grid {
        gap: 2rem;
    }

    .award-card-box {
        padding: 2.5rem;
    }

    .award-card-box h3 {
        font-size: 1.75rem;
    }
}

/* Large desktop adjustments */
@media (min-width: 1200px) {
    .awards-grid {
        gap: 4rem;
    }

    .award-card-box {
        padding: 3.5rem;
    }
}

/* Animation delays for cards */
.awards-grid .reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.awards-grid .reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.awards-grid .reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.awards-grid .reveal:nth-child(4) {
    transition-delay: 0.4s;
}

/* Ensure proper spacing on mobile */
@media (max-width: 639px) {
    .awards-breadcrumb-section {
        padding: 1rem 0;
    }

    .awards-title-section,
    .awards-cards-section,
    .awards-cta-section {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Hover effects only on devices that support hover */
@media (hover: hover) and (pointer: fine) {
    .award-card-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .award-card-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .awards-cta-section .btn-outline:hover {
        transform: translateY(-2px);
    }
}

/* Print styles for awards page */
@media print {
    .awards-breadcrumb-section {
        background: none !important;
        padding: 1rem 0 !important;
    }

    .award-card-box {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .award-card-btn {
        display: none !important;
    }

    .awards-cta-section {
        background: none !important;
        border-top: 2px solid #ddd !important;
    }
}


/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */

/* Contact Header */
.contact-header {
    background-color: #F0F4F8;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-header {
        padding: 6rem 0;
    }
}

.contact-header-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .contact-header-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
}

.contact-icon-container {
    width: 56px;
    height: 56px;
    background: #E0E4E8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .contact-icon-container {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

.contact-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin: 0 0 0.5rem 0;
    color: var(--color-primary);
    line-height: 1.2;
    font-family: var(--font-heading);
}

.contact-subtitle {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 600px;
}

/* Contact Main Section */
.contact-main-section {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 768px) {
    .contact-main-section {
        padding: 6rem 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Contact Cards */
.contact-info-card,
.contact-form-card {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {

    .contact-info-card,
    .contact-form-card {
        padding: 2.5rem;
    }
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.contact-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.contact-intro {
    color: var(--color-text-gray);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon-box {
    width: 40px;
    height: 40px;
    background: #F8F9FA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-detail {
    flex: 1;
}

.contact-info-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-weight: 500;
    color: var(--color-primary);
}

/* Contact Social */
.contact-social-section {
    margin-top: 2.5rem;
}

.contact-social-title {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-social-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F8F9FA;
    border: 1px solid #E0E4E8;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: auto;
}

.contact-social-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.btn-icon {
    font-weight: 700;
    font-size: 0.8rem;
}

/* Contact Form */
.contact-form-card .alert {
    padding: 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: #C8E6C9;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border-color: #FFCDD2;
}

.error-list {
    margin-top: 0.625rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    list-style: disc;
    padding-left: 1.25rem;
}

.error-list li {
    margin-bottom: 0.3125rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E0E4E8;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 30, 63, 0.1);
}

/* Sidebar Utilities */
.sidebar-guidelines {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    height: fit-content;
}

.sidebar-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group-checkbox {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-gray);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.1875rem;
}

/* Map Section */
.map-section {
    background-color: #F8F9FA;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .map-section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.section-subtitle {
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.map-placeholder {
    background: white;
    border: 2px dashed #E0E4E8;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

.map-icon {
    width: 60px;
    height: 60px;
    background: #E0E4E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.map-title {
    display: block;
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.map-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-gray);
}

/* Form Button Alignment */
.contact-form-card .btn-primary {
    width: 100%;
    font-weight: 600;
    padding: 0.875rem;
    font-size: 1rem;
}

/* Breadcrumb overrides for contact page */
.contact-header .breadcrumbs {
    padding: 0;
    margin-bottom: 1rem;
    background: transparent;
}

.contact-header .breadcrumb-item {
    font-size: 0.85rem;
}

.contact-header .breadcrumb-item a {
    color: var(--color-primary);
}

/* ============================================
   END OF CONTACT PAGE STYLES
   ============================================ */

/* ============================================
   MEMBERSHIP PAGE SPECIFIC STYLES
   ============================================ */

.category-accordion-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: var(--shadow-card);
}

.category-accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--color-secondary);
}

.cat-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-top: 5px;
    flex-shrink: 0;
}

.cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.cat-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

@media (max-width: 639px) {
    .category-accordion-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .cat-icon {
        margin-top: 0;
        font-size: 1.5rem;
    }

    .cat-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.category-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

@media (min-width: 640px) {
    .category-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.benefits-box {
    background: white;
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow: var(--shadow-premium);
    margin-bottom: 4rem;
    border-left: 4px solid var(--color-secondary);
}

.benefit-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .benefit-list-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.benefit-item-tick {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text-gray);
}