* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #070404;
    --primary-cyan: #60d0db;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --bg-light: #f8f8f8;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(7, 4, 4, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(96, 208, 219, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-cyan);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    opacity: 0.1;
    top: -250px;
    right: -250px;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    opacity: 0.1;
    bottom: -200px;
    left: -200px;
    animation: pulse 4s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(96, 208, 219, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-cyan);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(96, 208, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 208, 219, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--primary-cyan);
    border-bottom: 3px solid var(--primary-cyan);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-cyan);
    position: relative;
    font-weight: 900;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-cyan);
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--primary-dark), #0f0f0f);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-description {
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vision-box, .mission-box {
    background: rgba(96, 208, 219, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(96, 208, 219, 0.2);
}

.vision-box h3, .mission-box h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(96, 208, 219, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(96, 208, 219, 0.3);
    background: rgba(96, 208, 219, 0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(96, 208, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Store Section */
.store-section {
    background: linear-gradient(to bottom, #0f0f0f, var(--primary-dark));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background: rgba(96, 208, 219, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(96, 208, 219, 0.3);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: rgba(96, 208, 219, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-btn {
    padding: 0.8rem 2rem;
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(96, 208, 219, 0.5);
}

/* Loyalty Section */
.loyalty-section {
    background: #0f0f0f;
}

.loyalty-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 2.5rem;
    background: rgba(96, 208, 219, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(96, 208, 219, 0.2);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: rgba(96, 208, 219, 0.2);
    border-color: var(--primary-cyan);
}

.tab-btn.active {
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border-color: var(--primary-cyan);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.membership-card {
    background: rgba(96, 208, 219, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(96, 208, 219, 0.3);
}

.membership-card.gold {
    border-color: #ffd700;
}

.membership-card.silver {
    border-color: #c0c0c0;
}

.membership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.membership-header h3 {
    color: var(--primary-cyan);
    font-size: 1.8rem;
}

.membership-badge {
    padding: 0.5rem 1rem;
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.membership-card.gold .membership-badge {
    background: #ffd700;
}

.membership-card.silver .membership-badge {
    background: #c0c0c0;
}

.membership-benefits {
    list-style: none;
}

.membership-benefits li {
    padding: 0.8rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.membership-benefits li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.loyalty-info-box {
    background: rgba(96, 208, 219, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(96, 208, 219, 0.2);
    margin-top: 2rem;
}

.loyalty-info-box h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.loyalty-info-box p {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
}

.loyalty-info-box .highlight {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-top: 1rem;
}

.consumer-loyalty {
    max-width: 800px;
    margin: 0 auto;
}

.loyalty-program-card {
    background: rgba(96, 208, 219, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(96, 208, 219, 0.2);
}

.loyalty-program-card h3 {
    color: var(--primary-cyan);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.loyalty-mechanism {
    margin-bottom: 2rem;
}

.loyalty-mechanism h4 {
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
}

.mechanism-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(96, 208, 219, 0.05);
    border-radius: 10px;
}

.step-number {
    min-width: 40px;
    height: 40px;
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.mechanism-step p {
    color: var(--text-gray);
    line-height: 1.8;
}

.delivery-info {
    background: rgba(96, 208, 219, 0.1);
    padding: 2rem;
    border-radius: 15px;
}

.delivery-info h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
}

.delivery-info ul {
    list-style: none;
    padding-right: 0;
}

.delivery-info li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    position: relative;
    color: var(--text-gray);
}

.delivery-info li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-cyan);
    font-size: 1.5rem;
}

/* Loyalty Cards Visual Section */
.loyalty-cards-visual-section {
    background: linear-gradient(to bottom, var(--primary-dark), #0f0f0f);
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.card-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.loyalty-card-visual {
    width: 380px;
    height: 240px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.loyalty-card-visual:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(96, 208, 219, 0.4);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a1a 100%);
    opacity: 0.9;
}

.gold-card .card-background {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffaa00 100%);
    opacity: 1;
}

.silver-card .card-background {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #a0a0a0 100%);
    opacity: 1;
}

.consumer-card .card-background {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, #80d9e5 50%, #40c7d3 100%);
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--primary-dark);
}

.gold-card .card-content,
.silver-card .card-content {
    color: var(--primary-dark);
}

.consumer-card .card-content {
    color: var(--primary-dark);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    margin-bottom: auto;
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 30px;
    height: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    border-radius: 4px;
}

.card-brand {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-number {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-points {
    margin-bottom: 1rem;
}

.points-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.points-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.points-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.card-holder {
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-expiry {
    display: flex;
    flex-direction: column;
}

.card-date {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.card-logo {
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Decorative elements on cards */
.gold-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.silver-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.consumer-card::before {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.card-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-info .info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(96, 208, 219, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.card-info .info-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 30px rgba(96, 208, 219, 0.2);
}

.card-info .info-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.card-info .info-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background: linear-gradient(to bottom, var(--primary-dark), #0f0f0f);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: rgba(96, 208, 219, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(96, 208, 219, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 15px 40px rgba(96, 208, 219, 0.3);
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-cyan);
    background: rgba(96, 208, 219, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: #0f0f0f;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(96, 208, 219, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(96, 208, 219, 0.2);
}

.contact-item h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(96, 208, 219, 0.05);
    border: 2px solid rgba(96, 208, 219, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-cyan);
    background: rgba(96, 208, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-cyan);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 208, 219, 0.5);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(96, 208, 219, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--primary-cyan);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(96, 208, 219, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 1rem;
    }
}
