/* Import Cairo font for Arabic typography and Outfit for numbers/English text */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary-color: #153729; /* Deep Forest Green */
    --primary-light: #20533e;
    --primary-dark: #0b1d16;
    --accent-color: #C5A059; /* Warm Gold */
    --accent-light: #dfc38d;
    --accent-dark: #987839;
    --bg-color: #FAF9F6; /* Cream Off-white */
    --bg-white: #ffffff;
    --text-dark: #1f2d27;
    --text-muted: #5c6b64;
    --border-color: rgba(21, 55, 41, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(197, 160, 89, 0.15);
    
    /* Layout Constants */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(21, 55, 41, 0.04);
    --shadow-hover: 0 20px 40px rgba(21, 55, 41, 0.08);
    --shadow-gold: 0 10px 25px rgba(197, 160, 89, 0.15);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.7;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utility Styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(21, 55, 41, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 55, 41, 0.25);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--bg-white);
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Header Section */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: var(--transition-smooth);
}

header.scrolled .logo-img {
    height: 48px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Menu Toggle Button for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(21, 55, 41, 0.03) 0%, rgba(197, 160, 89, 0.02) 90%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -200px;
    left: -200px;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: rgba(197, 160, 89, 0.12);
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-title span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image-bg {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, rgba(21, 55, 41, 0.05), rgba(197, 160, 89, 0.05));
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.hero-logo {
    width: 85%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(21, 55, 41, 0.12));
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-icon {
    font-size: 2rem;
    color: var(--accent-color);
}

.hero-badge-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.hero-badge-text p {
    font-size: 0.85rem;
}

/* Sections Global Styling */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

/* About Us Section */
.about-section {
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-details {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.about-item {
    display: flex;
    gap: 1rem;
}

.about-item-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.about-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.about-item-text p {
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.stat-card {
    border-right: 4px solid var(--accent-color);
    padding-right: 1.5rem;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Objectives Section */
.objectives-section {
    background-color: var(--bg-color);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.objective-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    z-index: -1;
    transition: var(--transition-smooth);
}

.objective-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-md);
    background-color: rgba(21, 55, 41, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: var(--primary-color);
    font-size: 2.2rem;
    transition: var(--transition-smooth);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    color: var(--bg-white);
}

.objective-card:hover::before {
    opacity: 1;
}

.objective-card:hover .objective-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    transform: scale(1.1);
}

.objective-card:hover h3 {
    color: var(--bg-white);
}

.objective-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.objective-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.objective-card p {
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

/* Membership Section */
.membership-section {
    background-color: var(--bg-white);
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.membership-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 3.5rem 2.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.membership-card.featured {
    border-color: var(--accent-color);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.membership-card.featured::after {
    content: 'الموصى بها للمحترفين';
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.membership-type {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.membership-price {
    margin-bottom: 2rem;
}

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

.membership-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.membership-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.membership-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.membership-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.membership-card .btn {
    width: 100%;
}

/* Governance and Documents Section */
.docs-section {
    background-color: var(--bg-color);
}

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

.doc-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    min-height: 220px;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(197, 160, 89, 0.4);
}

.doc-info {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.doc-icon {
    font-size: 2.5rem;
    color: #d32f2f; /* Red for PDF */
}

.doc-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.doc-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.doc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.doc-size {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.doc-download-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.doc-download-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Contact Us Section */
.contact-section {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.contact-details p {
    font-size: 0.95rem;
}

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

.contact-map-wrapper {
    margin-top: 1rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    height: 250px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--bg-color);
    padding: 3.5rem 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper p {
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

textarea.form-input {
    resize: none;
    min-height: 150px;
}

.contact-form-wrapper .btn {
    width: 100%;
}

/* Form Status Message */
.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    display: none;
    text-align: center;
}

.form-status.success {
    display: block;
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-status.error {
    display: block;
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

/* Footer Section */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 70px;
    width: auto;
    align-self: flex-start;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 380px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-links-col h3 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-link-item a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Page Banner for Subpages */
.page-banner {
    position: relative;
    padding: 180px 0 100px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--bg-white);
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -50px;
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--bg-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumbs {
    display: inline-flex;
    gap: 0.8rem;
    list-style: none;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-right: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs li.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-grid, .about-grid, .contact-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .btn {
        padding: 0.75rem 1.8rem;
    }
    
    /* Header & Mobile Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        box-shadow: -10px 10px 30px rgba(21, 55, 41, 0.08);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        border-right: 1px solid var(--border-color);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta {
        display: none; /* CTA is moved or integrated inside the menu drawer */
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 130px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-description {
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        order: 2;
    }
    
    .hero-image-bg {
        height: 380px;
    }
    
    /* About Us */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        padding: 2rem;
    }
    
    /* Membership */
    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-self: center;
    }
    
    .footer-links-col h3::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .footer-links-col {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Custom Utility Class */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

