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

:root {
    /* Colors matching NRRWA logo */
    --primary-color: #1e5a7d;        /* Deep blue from logo */
    --secondary-color: #4a9fd8;      /* Lighter blue from logo */
    --accent-color: #d32f2f;         /* Red from logo figures */
    --success-color: #4caf50;        /* Green from tree */
    --gold-color: #d4af37;           /* Gold from hands */
    --sun-color: #ffa726;            /* Orange/yellow from sun */
    --tree-green: #66bb6a;           /* Light green from leaves */
    --dark-green: #2e7d32;           /* Dark green from tree */
    
    /* Neutral colors */
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
}

.emergency-notice .alert {
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #fff3cd;
    border: 1px solid var(--sun-color);
    color: #856404;
    border-left: 4px solid var(--accent-color);
}

/* Navigation */
.main-nav {
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
}

.nav-item {
    position: relative;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.nav-menu li.active > a {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 700;
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

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

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    border-bottom: none;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--bg-color);
    color: var(--secondary-color);
    padding-left: 25px;
}

.dropdown-menu li.active a {
    background: rgba(74, 159, 216, 0.1);
    color: var(--secondary-color);
    border-left: 3px solid var(--secondary-color);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary-color);
        height: 3px;
        width: 25px;
        border-radius: 2px;
        position: relative;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        gap: 0;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 15px 0;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-color);
        margin-top: 10px;
        display: none;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding: 10px 20px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(none);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    border-left: 4px solid var(--gold-color);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    color: var(--white);
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.slider-controls button {
    background: rgba(255,255,255,0.8);
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #b71c1c);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b71c1c, var(--accent-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 159, 216, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 159, 216, 0.4);
}

/* Focus Areas */
.focus-areas {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-color) 100%);
}

.focus-areas h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.focus-areas h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--gold-color), var(--success-color));
    border-radius: 2px;
}

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

.focus-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.focus-item p {
    flex: 1;
    margin-bottom: 20px;
}

.focus-read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
    margin-top: auto;
}

.focus-read-more:hover {
    color: var(--primary-color);
    gap: 10px;
}

.focus-read-more::after {
    content: ' →';
    transition: transform 0.3s;
}

.focus-read-more:hover::after {
    transform: translateX(5px);
}

.focus-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.focus-item:nth-child(1) {
    border-top-color: var(--secondary-color);
}

.focus-item:nth-child(2) {
    border-top-color: var(--success-color);
}

.focus-item:nth-child(3) {
    border-top-color: var(--gold-color);
}

.focus-item:nth-child(4) {
    border-top-color: var(--accent-color);
}
.focus-item:nth-child(5) {
    border-top-color: var(--sun-color);
}

.focus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.focus-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Events Section */
.upcoming-events {
    background-color: var(--white);
    padding: 80px 20px;
}

.upcoming-events h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
}

.upcoming-events h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--success-color));
    border-radius: 2px;
}

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

.event-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    margin-bottom: 10px;
}

.event-content h3 a {
    text-decoration: none;
    color: var(--primary-color);
}

.event-date {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--primary-color);
    gap: 5px;
}

.read-more::after {
    content: ' →';
    transition: transform 0.3s;
}

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

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

/* New Members */
.new-members {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.1), rgba(76, 175, 80, 0.1));
}

.new-members h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.new-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid var(--success-color);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.member-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.member-card:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.join-date {
    color: var(--success-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* FAQ Page */
.faq-page {
    padding: 60px 20px;
    background: var(--bg-color);
}

.faq-page .page-header {
    margin-bottom: 50px;
    text-align: center;
}

.faq-page .page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
}

.faq-content h2:first-child {
    margin-top: 0;
}

.faq-question {
    background: var(--bg-color);
    padding: 18px 20px;
    margin: 15px 0 0 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    position: relative;
    user-select: none;
}

.faq-question:hover {
    background: rgba(74, 159, 216, 0.1);
    transform: translateX(5px);
}

.faq-question.active {
    background: var(--secondary-color);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.faq-toggle {
    float: right;
    font-size: 0.8rem;
    transition: transform 0.3s;
    display: inline-block;
    margin-left: 10px;
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(74, 159, 216, 0.05);
    border-left: 4px solid var(--light-gray);
    margin-bottom: 15px;
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    line-height: 1.8;
}

.faq-answer ul {
    padding: 0 20px 20px 50px;
    margin: 0;
}

.faq-answer ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-color);
}

.faq-content hr {
    margin: 40px 0;
    border: none;
    border-top: 2px solid var(--light-gray);
}

.faq-content > p:last-child {
    margin-top: 40px;
    padding: 20px;
    background: rgba(74, 159, 216, 0.1);
    border-left: 4px solid var(--secondary-color);
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
}

.faq-content > p:last-child a {
    color: var(--secondary-color);
    text-decoration: none;
}

.faq-content > p:last-child a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-content {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    
    .faq-page .page-header h1 {
        font-size: 2rem;
    }
}
/* Membership Plans */
.membership-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.plan-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.plan-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #ff5722);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.plan-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.plan-header.annual h3 {
    color: var(--secondary-color);
}

.plan-header.decennial h3 {
    color: var(--success-color);
}

.plan-header.lifetime h3 {
    color: var(--gold-color);
}

.plan-price {
    text-align: center;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
}

.plan-price .currency {
    font-size: 1.5rem;
    color: var(--gray);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--gray);
}

.plan-savings {
    text-align: center;
    background: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    padding: 8px;
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-description {
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
    min-height: 60px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
    flex: 1;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.plan-features .check {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: auto;
}

.annual-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.annual-btn:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

.decennial-btn {
    background: linear-gradient(135deg, var(--success-color), var(--dark-green));
    color: var(--white);
}

.decennial-btn:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--success-color));
    transform: scale(1.05);
}

.lifetime-btn {
    background: linear-gradient(135deg, var(--gold-color), #b8860b);
    color: var(--white);
}

.lifetime-btn:hover {
    background: linear-gradient(135deg, #b8860b, var(--gold-color));
    transform: scale(1.05);
}

/* Payment Section */
.payment-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.05), rgba(76, 175, 80, 0.05));
    border-radius: 15px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.payment-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.payment-header {
    text-align: center;
    margin-bottom: 15px;
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.payment-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}

.payment-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.qr-code-placeholder {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.qr-box {
    width: 150px;
    height: 150px;
    border: 3px dashed var(--secondary-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
}

.qr-box p {
    margin: 0;
    font-weight: 700;
    color: var(--primary-color);
}

.qr-box small {
    color: var(--gray);
    font-size: 0.85rem;
}

.payment-info {
    text-align: center;
    padding: 15px;
    background: var(--bg-color);
    border-radius: 8px;
    margin-top: 15px;
}

.payment-info code {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.bank-details {
    margin: 20px 0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--gray);
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

.office-details {
    margin: 20px 0;
    line-height: 1.8;
}

.office-details p {
    margin: 10px 0;
}

.payment-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid var(--sun-color);
    border-radius: 5px;
    font-size: 0.9rem;
}

.payment-footer {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.payment-footer p {
    margin: 0;
    line-height: 1.6;
}

.payment-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.payment-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .membership-plans {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    margin: 40px 0;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-card:nth-child(2) {
    border-top-color: var(--success-color);
}

.testimonial-card:nth-child(3) {
    border-top-color: var(--gold-color);
}

.testimonial-photo {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--secondary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.testimonial-card:nth-child(2) .testimonial-photo {
    border-color: var(--success-color);
}

.testimonial-card:nth-child(3) .testimonial-photo {
    border-color: var(--gold-color);
}


.testimonial-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.membership-type {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove old ticker styles */
.members-ticker {
    display: none;
}

.ticker-list {
    display: none;
}

@keyframes scroll {
    /* Keep for backward compatibility but not used */
}

/* Member Stats */
.member-stats {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-color));
    color: var(--white);
    padding: 60px 20px;
    position: relative;
}

.member-stats::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--sun-color), var(--success-color));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Single Page */
.single-page,
.list-page {
    padding: 60px 20px;
}

.page-header {
    margin-bottom: 40px;
}

.featured-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.post-meta {
    color: var(--gray);
    font-size: 0.9rem;
}

.page-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    line-height: 1.8;
}

/* List Page */
.posts-list {
    display: grid;
    gap: 30px;
}

.post-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    margin-bottom: 10px;
}

.post-content h2 a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Committee Section */
.committee-section {
    margin: 40px 0;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.committee-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(74, 159, 216, 0.2);
    border-top: 4px solid var(--secondary-color);
}

.committee-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

.committee-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.committee-info {
    padding: 20px;
}

.committee-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.position {
    color: var(--gold-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--gray);
}

.email-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.email-link:hover {
    text-decoration: underline;
}

/* Enhanced Logo Styles */
.logo img {
    height: 80px;
    width: auto;
    margin-right: 15px;
    object-fit: contain;
}

/* Footer Logo */
.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Full Width Content for Guidelines */
.page-content-full {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    line-height: 1.8;
    max-width: 100%;
}

.page-content-full h2 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.page-content-full h3 {
    color: var(--secondary-color);
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-content-full ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-content-full ul li {
    margin-bottom: 10px;
}

.page-content-full strong {
    color: var(--primary-color);
}

/* Directory Page */
/* Directory Page */
.directory-page {
    padding: 60px 20px;
    background: var(--bg-color);
}

.directory-page .page-header {
    margin-bottom: 50px;
    text-align: center;
}

.directory-page .page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Directory Sections */
.directory-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.directory-section .section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    font-size: 2rem;
}

.section-description {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.directory-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-category {
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
}

.vendors-section .contact-category {
    border-left-color: var(--success-color);
}

.category-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Official Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.contact-card {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.contact-header h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-desc {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    word-break: break-all;
}

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

/* Vendor Cards */
.vendor-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.vendor-card {
    background: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vendor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--success-color);
}

.vendor-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.vendor-info {
    flex: 1;
}

.vendor-info h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.vendor-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.vendor-contact a {
    color: var(--success-color);
    text-decoration: none;
    font-weight: 600;
}

.vendor-contact a:hover {
    text-decoration: underline;
    color: var(--dark-green);
}

.directory-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid var(--success-color);
    border-radius: 5px;
}

.directory-note p {
    color: var(--gray);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards,
    .vendor-cards {
        grid-template-columns: 1fr;
    }
    
    .directory-section {
        padding: 25px 20px;
    }
    
    .directory-page .page-header h1 {
        font-size: 2rem;
    }
    
    .directory-section .section-title {
        font-size: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 10px;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary-color);
        height: 3px;
        width: 25px;
        border-radius: 2px;
        position: relative;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        top: -8px;
    }
    
    .nav-toggle-label span::after {
        top: 8px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .nav-toggle:checked ~ .nav-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .post-card {
        grid-template-columns: 1fr;
    }
    
    .focus-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 60x;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
}

/* For high-quality display on retina screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Contact Page */
.contact-page {
    padding: 60px 20px;
    background: var(--bg-color);
}

.contact-page .page-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-page .page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Contact Info Section */
.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--secondary-color);
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.contact-info h2:first-child {
    margin-top: 0;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info strong {
    color: var(--primary-color);
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    padding: 8px 0;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid var(--success-color);
}

.contact-form-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-description {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.required {
    color: var(--accent-color);
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74, 159, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 10px;
    cursor: pointer;
    border: none;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
}

.form-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
    text-align: center;
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.map-note {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    padding: 15px;
    background: rgba(74, 159, 216, 0.05);
    border-radius: 8px;
}

/* Form Validation States */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form-section,
    .map-section {
        padding: 25px 20px;
    }
    
    .contact-page .page-header h1 {
        font-size: 2rem;
    }
}
