/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* ========== Page Loader ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
    opacity: 1;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoSpin 2s linear infinite;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(255, 107, 107, 0.3));
}

@keyframes logoSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

:root {
    --coral-red: #FF6B6B;
    --coral-dark: #e55555;
    --teal-blue: #0891B2;
    --teal-dark: #0e7490;
    --purple-accent: #8B5CF6;
    --orange-accent: #F59E0B;
    --light-gray: #F8F9FA;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #FFFFFF;
    --border: #E5E7EB;
    --blue-link: #2563EB;
    --gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-2: linear-gradient(135deg, #0891B2 0%, #06B6D4 100%);
    --gradient-3: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    --footer-gradient: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 50%, #0D0D0D 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ========== Header ========== */
.header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.mobile-toggle:hover {
    transform: rotate(90deg);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
}

.nav-list li a {
    text-decoration: none;
    color: var(--text-dark);
    padding: 10px 14px;
    display: block;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 5px;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--coral-red);
    transition: width 0.3s ease;
}

.nav-list li a:hover::after {
    width: 60%;
}

.nav-list li a:hover {
    color: var(--coral-red);
    background: rgba(255, 107, 107, 0.05);
}

.nav-list li a.highlight {
    color: var(--coral-red);
    font-weight: 600;
}

.nav-list i.fa-caret-down {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

/* ========== Navigation Dropdown ========== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover > a i.fa-caret-down,
.nav-dropdown.active > a i.fa-caret-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid var(--border);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 0;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--coral-red);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-menu li a:hover {
    color: var(--coral-red);
    background: rgba(255, 107, 107, 0.08);
    padding-left: 25px;
}

.dropdown-menu li a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.menu-btn {
    background: none;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 5px;
    color: var(--text-dark);
}

.menu-btn:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

/* ========== News Ticker ========== */
.news-ticker {
    background: var(--gradient-1);
    color: var(--white);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.ticker-label {
    font-weight: 700;
    font-size: 15px;
    margin-right: 20px;
    white-space: nowrap;
    padding-right: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 20px;
}

.ticker-content::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: linear-gradient(to right, transparent, var(--gradient-1));
    z-index: 1;
    pointer-events: none;
}

.ticker-item {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    line-height: 20px;
    padding-right: 100px;
    position: absolute;
    top: 0;
    animation: ticker-scroll 25s linear infinite;
}

.ticker-content .ticker-item:first-child {
    left: 100%;
}

.ticker-content .ticker-item:nth-child(2) {
    left: calc(100% + 500px);
    animation-delay: 12.5s;
}

.ticker-item::before {
    content: '●';
    color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
}

@keyframes ticker-scroll {
    0% { 
        transform: translateX(0);
    }
    100% { 
        transform: translateX(calc(-100% - 600px));
    }
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    background: var(--gradient-1);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 420px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 80px;
}

.hero-title {
    color: var(--white);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.5s ease;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-right {
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-right img:hover {
    transform: scale(1.05);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.left-arrow {
    left: 20px;
}

.right-arrow {
    right: 20px;
}

.hero-indicators {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 5px;
}

.hero-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255,255,255,0.95);
    padding: 14px 35px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ========== Main Content ========== */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 30px;
    width: 100%;
    box-sizing: border-box;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 35px;
}

/* ========== Left Column Sections ========== */
.left-column section {
    margin-bottom: 50px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Desktop animation only */
@media (min-width: 769px) {
    .left-column section {
        opacity: 0;
        transform: translateY(30px);
    }

    .left-column section.animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

.left-column h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.left-column h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-content p,
.policy-text p {
    color: var(--text-gray);
    margin-bottom: 16px;
    text-align: justify;
    line-height: 1.8;
}

.section-content a,
.policy-text a {
    color: var(--blue-link);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section-content a:hover,
.policy-text a:hover {
    color: var(--teal-blue);
}

.section-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

.activities-list,
.objectives-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.activities-list li,
.objectives-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.8;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.activities-list li:last-child,
.objectives-list li:last-child {
    border-bottom: none;
}

.activities-list li::before,
.objectives-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--coral-red);
    font-weight: 700;
    font-size: 18px;
}

.activities-list li:hover,
.objectives-list li:hover {
    color: var(--text-dark);
    padding-left: 35px;
    background: rgba(255, 107, 107, 0.03);
    border-radius: 5px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.mission-section {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--coral-red);
}

.mission-section h3 {
    margin-top: 0;
    color: var(--coral-red);
}

.mission-section h4 {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========== Dynamic About Us Styles ========== */
.intro-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.intro-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--coral-red);
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 24px;
}

.intro-text {
    flex: 1;
}

.highlight-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: var(--teal-blue);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.stat-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 10px 0 5px;
    line-height: 1;
}

.stat-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.info-card:hover {
    border-left-color: var(--coral-red);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.activities-section {
    margin: 40px 0;
}

.activities-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.activities-section h3 i {
    color: var(--coral-red);
    font-size: 22px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.activity-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--coral-red);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.activity-item:hover::before {
    transform: scaleY(1);
}

.activity-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--coral-red);
}

.activity-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.activity-item p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.location-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.location-card,
.partners-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid var(--teal-blue);
}

.location-card:hover,
.partners-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.location-icon,
.partners-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.location-card h4,
.partners-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.location-card p,
.partners-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========== Full Width Layout for About Page ========== */
.about-full-width {
    grid-template-columns: 1fr !important;
}

.about-full-column {
    width: 100% !important;
    max-width: 100% !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-partners {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Make all animated content visible immediately on mobile */
    [data-animate],
    .policy-card,
    .gallery-item,
    .partner-box,
    .widget,
    .photo-gallery-item,
    .event-card {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
        transition: none !important;
    }
    
    .policy-card.animate-in,
    .gallery-item.animate-in,
    .partner-box.animate-in,
    .widget.animate-in,
    .photo-gallery-item.animate-in,
    .event-card.animate-in {
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
    }

    .stats-grid,
    .info-cards,
    .activities-grid,
    .location-partners {
        grid-template-columns: 1fr;
    }
    
    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .intro-icon {
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .activity-item {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .activity-item i {
        margin: 0 auto;
    }
    
    .location-card,
    .partners-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .location-icon,
    .partners-icon {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .intro-card {
        padding: 18px;
    }
    
    .intro-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-card {
        padding: 18px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .stat-content h3 {
        font-size: 28px;
    }
    
    .info-card {
        padding: 18px;
    }
    
    .info-card-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .activity-item {
        padding: 15px;
    }
    
    .activity-item i {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .location-card,
    .partners-card {
        padding: 18px;
    }
    
    .location-icon,
    .partners-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .mission-section {
        padding: 20px;
    }
}

/* ========== Full Width Layout for Membership Page ========== */
.membership-full-width {
    grid-template-columns: 1fr !important;
}

.membership-full-column {
    width: 100% !important;
    max-width: 100% !important;
}

/* ========== Full Width Layout for Contact Page ========== */
.contact-full-width {
    grid-template-columns: 1fr !important;
}

.contact-full-column {
    width: 100% !important;
    max-width: 100% !important;
}

/* ========== Contact Page Styles ========== */
.contact-info-section {
    margin: 30px 0;
}

.contact-info-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.contact-info-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.contact-info-section h3 i {
    color: var(--coral-red);
    font-size: 22px;
}

.contact-details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-details p {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--coral-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map-section {
    margin: 30px 0;
}

.contact-map-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.contact-map-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.contact-map-section h3 i {
    color: var(--coral-red);
    font-size: 22px;
}

.map-container {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
    
    .contact-map-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
}

/* ========== Membership Page Styles ========== */
.membership-intro {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--coral-red);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.membership-intro p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.8;
}

.membership-categories {
    margin: 40px 0;
}

.membership-categories h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.membership-categories h3 i {
    color: var(--coral-red);
    font-size: 22px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.category-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-left-color: var(--coral-red);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.category-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.category-icon.corporate {
    background: var(--gradient-1);
}

.category-icon.ordinary {
    background: var(--gradient-2);
}

.category-icon.affiliate {
    background: var(--gradient-3);
}

.category-icon.honorary {
    background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
}

.category-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.category-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.membership-process,
.membership-subscriptions {
    margin: 40px 0;
}

.membership-process h3,
.membership-subscriptions h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.membership-process h3 i,
.membership-subscriptions h3 i {
    color: var(--teal-blue);
    font-size: 22px;
}

.process-card,
.subscriptions-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    border-left: 4px solid var(--teal-blue);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.process-card p,
.subscriptions-card p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.membership-benefits-section {
    margin: 40px 0;
}

.membership-benefits-section h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.membership-benefits-section h3 i {
    color: var(--purple-accent);
    font-size: 22px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.benefit-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--purple-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleY(1);
}

.benefit-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
    border-color: var(--purple-accent);
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.7;
    flex: 1;
}

.download-section {
    margin: 40px 0;
}

.download-card {
    background: var(--gradient-1);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.download-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    flex-shrink: 0;
}

.download-content {
    flex: 1;
}

.download-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 10px;
}

.download-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
    font-size: 15px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--coral-red);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.download-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    background: var(--light-gray);
}

/* Responsive Membership */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .download-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .download-icon {
        margin: 0 auto;
    }
    
    .benefit-item {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item i {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 18px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .process-card,
    .subscriptions-card {
        padding: 20px;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .download-content h4 {
        font-size: 20px;
    }
    
    .download-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* ========== Policies Section ========== */
.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.icon-link {
    color: var(--text-gray);
    font-size: 16px;
    transition: all 0.3s ease;
}

.icon-link:hover {
    color: var(--coral-red);
    transform: translateX(5px);
}

.policy-text {
    margin-bottom: 35px;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0 30px;
}

.policy-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.policy-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.policy-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
    border-color: var(--coral-red);
}

.policy-badge {
    background: var(--gradient-1);
    color: var(--white);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-card h3 {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.policy-card:hover h3 {
    color: var(--coral-red);
}

.card-link {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--text-gray);
    font-size: 13px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--coral-red);
    transform: scale(1.2);
}

.view-all-button {
    display: block;
    margin: 0 auto;
    background: var(--white);
    color: var(--coral-red);
    border: 2px solid var(--coral-red);
    padding: 12px 45px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-all-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30px;
    transition: width 0.4s ease;
    z-index: -1;
}

.view-all-button:hover::before {
    width: 100%;
}

.view-all-button:hover {
    color: var(--white);
    border-color: var(--coral-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    background: var(--coral-red);
    color: var(--white);
    border: 2px solid var(--coral-red);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.read-more-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background: var(--white);
    border-radius: 30px;
    transition: width 0.4s ease;
    z-index: -1;
}

.read-more-button:hover::before {
    width: 100%;
}

.read-more-button:hover {
    color: var(--coral-red);
    border-color: var(--coral-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.read-more-button i {
    transition: transform 0.3s ease;
}

.read-more-button:hover i {
    transform: translateX(5px);
}

/* ========== Gallery Section ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
}

.gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ========== Photo Gallery Page Styles ========== */
.gallery-full-width {
    grid-template-columns: 1fr !important;
}

.gallery-full-column {
    width: 100% !important;
    max-width: 100% !important;
}

.gallery-page {
    padding: 40px 0;
}

.gallery-page h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.photo-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.photo-gallery-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.photo-gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-gallery-item:hover img {
    transform: scale(1.1);
}

/* ========== Partners Section ========== */
.partners-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.partners-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.partners-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.partner-box {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    /* keep 4 visible items on wide screens */
    min-width: calc(25% - 15px);
    flex-shrink: 0;
    transition: all 0.25s ease;
    opacity: 0;
    transform: scale(0.95);
    position: relative;
}

.partner-box.animate-in {
    opacity: 1;
    transform: scale(1);
}

.partner-box:hover {
    background: var(--white);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
}

.partner-box img {
    /* Uniform logo sizing - all logos same size */
    width: 100%;
    height: 100px;
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.25s ease;
    filter: grayscale(0.3);
    opacity: 0.85;
}

.partner-box:hover img {
    transform: scale(1.05);
    filter: grayscale(0);
    opacity: 1;
}

.partner-nav-btn {
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.partner-nav-btn:hover {
    background: var(--coral-red);
    color: var(--white);
    border-color: var(--coral-red);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.partner-nav-btn:active {
    transform: scale(0.95);
}

.partner-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.partner-nav-btn:disabled:hover {
    background: var(--white);
    color: var(--text-dark);
    border-color: var(--border);
    transform: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ========== Right Sidebar ========== */
.right-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.widget.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.widget:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.widget h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* ========== Sidebar Policies Widget ========== */
.sidebar-policies {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.sidebar-policy-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar-policy-item:hover {
    background: var(--white);
    border-left-color: var(--coral-red);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.sidebar-badge {
    background: var(--gradient-2);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}

.sidebar-policy-item h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
}

.policy-read-more {
    color: var(--teal-blue);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.policy-read-more:hover {
    color: var(--teal-dark);
    gap: 8px;
}

.sidebar-view-all {
    width: 100%;
    background: var(--gradient-2);
    color: var(--white);
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-view-all:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 145, 178, 0.3);
}

/* ========== Event Boxes ========== */
.event-box {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.event-box:last-child {
    margin-bottom: 0;
}

.event-box:hover {
    background: var(--white);
    border-left-color: var(--purple-accent);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.event-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.event-info {
    margin-bottom: 15px;
}

.event-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-info i {
    color: var(--coral-red);
    width: 16px;
}

.event-desc {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 18px;
    line-height: 1.6;
}

.register-button {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 100%;
    background: var(--coral-dark);
    transition: width 0.4s ease;
    z-index: 0;
}

.register-button:hover::before {
    width: 100%;
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.register-button span {
    position: relative;
    z-index: 1;
}

/* ========== Footer ========== */
.footer {
    background: var(--footer-gradient);
    color: var(--white);
    padding: 50px 0 25px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.5), transparent);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-left h3,
.footer-right h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left ul li {
    margin-bottom: 10px;
}

.footer-left ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-left ul li a::before {
    content: '›';
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-left ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-left ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 85px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(1.2);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.4);
}

.footer-org {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer-right {
    text-align: center;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon {
    background: #E74C3C;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-icon:hover::before {
    width: 100px;
    height: 100px;
}

.social-icon:hover {
    background: #C0392B;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
}

.social-icon.facebook:hover {
    background: #3B5998;
}

.social-icon.twitter:hover {
    background: #1DA1F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.social-icon.linkedin:hover {
    background: #0077B5;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--white);
}

.powered-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.powered-by a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: var(--white);
    text-decoration: underline;
}

.separator {
    opacity: 0.4;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 320px;
    }

    .policy-grid {
        grid-template-columns: 1fr;
    }

    .partner-box {
        min-width: calc(50% - 10px);
        min-height: 120px;
        padding: 18px 14px;
    }
    
    .partner-box img {
        width: 100%;
        height: 90px;
        max-height: 90px;
    }
    
    .partner-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .partner-box {
        min-height: 110px;
        padding: 16px 12px;
    }
    
    .partner-box img {
        width: 100%;
        height: 80px;
        max-height: 80px;
    }
}

@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .right-sidebar {
        position: static;
    }

    .hero-title {
        font-size: 38px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer-left ul li a::before {
        display: none;
    }

    .footer-left ul li a:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .loader-logo {
        width: 100px;
        height: 100px;
    }

    .loader-text {
        font-size: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list li a {
        width: 100%;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0;
        padding: 0;
        background: rgba(255, 107, 107, 0.05);
        border-left: 3px solid var(--coral-red);
        margin-left: 15px;
        margin-top: 5px;
        margin-bottom: 5px;
        display: none;
        border-radius: 5px;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a {
        padding: 10px 15px 10px 30px;
        font-size: 13px;
    }

    .dropdown-menu li a:hover {
        padding-left: 30px;
    }

    .nav-dropdown > a {
        cursor: pointer;
    }

    .hero-content {
        grid-template-columns: 1fr;
        min-height: 300px;
    }

    .hero-right {
        display: block;
        height: 250px;
        order: -1;
    }

    .hero-left {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 30px;
    }

    .partner-box {
        min-width: 100%;
        min-height: 100px;
        padding: 16px 10px;
    }
    
    .partner-box img {
        width: 100%;
        height: 70px;
        max-height: 70px;
    }
    
    .partners-wrapper {
        gap: 10px;
    }
    
    .partner-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .gallery-page h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    .footer-top {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .ticker-label {
        display: none;
    }

    .photo-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-page h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .ticker-content {
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .loader-logo {
        width: 80px;
        height: 80px;
    }

    .loader-text {
        font-size: 14px;
    }

    .header-container {
        padding: 10px 15px;
    }

    .logo-img {
        height: 45px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-left {
        padding: 30px 20px;
    }

    .left-column h2 {
        font-size: 28px;
    }

    .main-container {
        padding: 30px 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .content-grid {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-left h3,
    .footer-right h3 {
        font-size: 16px;
    }

    .footer-org {
        font-size: 13px;
    }

    .copyright {
        font-size: 12px;
    }

    .widget {
        padding: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .partner-box {
        min-height: 90px;
        padding: 14px 8px;
    }
    
    .partner-box img {
        width: 100%;
        height: 60px;
        max-height: 60px;
    }
    
    .partner-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
}
