/* ==================== */
/* MAIN CONTENT BACKGROUND */
/* ==================== */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    /* Avoid fixed background on mobile to prevent jank */
    background-attachment: scroll;
    font-family: 'Tajawal', Arial, Helvetica, sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

main {
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 20px auto;
    max-width: 1600px;
    border-radius: 20px;
    overflow: hidden;
}

/* Ensure header and footer stay on top of the main content */
.header,
.footer {
    position: relative;
    z-index: 10;
    background: #1a1a2e;
}

/* Hero Section with Glass Morphic Effect */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(26, 26, 46, 0.95) 100%);
    color: #fff;
    padding: 8rem 0;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(237, 96, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(26, 49, 73, 0.2) 0%, transparent 50%);
    z-index: -1;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff 0%, #e6e6e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero p.availability {
    font-weight: 600;
    color: var(--primary-orange);
    margin-top: 1.5rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }
}

/* ==================== */
/* TYPOGRAPHY & TEXT COLORS */
/* ==================== */
/* Main text colors */
body {
    color: #fff;
    line-height: 1.7;
}

/* Ensure all text is white by default */
body,
body *:not(button):not(input):not(select):not(textarea):not(a) {
    color: #fff !important;
}

/* Specific element overrides */
p, 
span, 
div, 
li, 
td, 
th,
label,
input::placeholder,
textarea::placeholder {
    color: #fff !important;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

p, li, td, th, label, input, textarea, select {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
}

/* Accent text */
.accent-text,
.section-subtitle,
.feature-card i,
.service-card i {
    color: var(--primary-orange);
}

/* Paragraphs */
p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

/* Links */
a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Feature list items */
.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    position: relative;
    padding-right: 1.5rem;
}

.feature-list li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* Section titles with accent */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Update card styles for glass effect */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-body {
    padding: 1.5rem;
}

/* Update button styles */
.cta-button.primary {
    background: var(--primary-orange);
    color: #fff;
    border: 2px solid var(--primary-orange);
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.primary:hover {
    background: var(--primary-orange-dark);
    color: #fff;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ==================== */
/* GLASSMORPHIC SECTIONS */
/* ==================== */
/* Apply glass effect to all main sections */
main > section:not(.hero),
#contact {
    position: relative;
    background: rgba(26, 26, 46, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin: 2rem auto;
    padding: 3rem 0;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
}

/* Specific section adjustments */
.main-trainer {
    position: relative;
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(26, 26, 46, 0.9) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.main-trainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 60%, rgba(237, 96, 0, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(26, 49, 73, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.trainer-profile-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-profile-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
}

.trainer-image-badge-wrapper {
    position: relative;
    flex: 0 0 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trainer-image {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    overflow: hidden;
}

.trainer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(237, 96, 0, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-badge .years {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.trainer-info {
    flex: 1;
    color: #fff;
}

.trainer-info h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.trainer-title {
    color: var(--primary-orange) !important;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: block;
}

.trainer-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.trainer-credentials-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.credential-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.credential-badge i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.credential-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .trainer-profile-container {
        flex-direction: column;
        text-align: center;
    }
    
    .trainer-image-badge-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }
    
    .trainer-credentials-badges {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .trainer-profile-container {
        padding: 1.5rem;
    }
    
    .trainer-info h2 {
        font-size: 1.8rem;
    }
    
    .trainer-title {
        font-size: 1rem;
    }
    
    .trainer-desc {
        font-size: 1rem;
    }
    
    .credential-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

.features {
    background: rgba(26, 26, 46, 0.8) !important;
}

/* Update cards and containers */
.feature-card,
.service-card,
.trainer-profile-container {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

/* Hover effects */
.feature-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Update about section features */
.about-features .feature-item {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Update trainer section */
.trainer-profile-container {
    padding: 2rem !important;
    border-radius: 16px !important;
}

/* Sponsor styles removed (section deleted) */

/* ==================== */
/* CONTACT SECTION */
/* ==================== */
/* ==================== */
/* CONTACT SECTION */
/* ==================== */
.contact-section {
    position: relative;
    background: linear-gradient(135deg, #0a0f1e 0%, #0f172a 100%);
    padding: 6rem 0;
    overflow: hidden;
    color: #fff;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    opacity: 0.3;
    z-index: 0;
}

.contact-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.section-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    background: rgba(237, 96, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.contact-info-body {
    padding: 2rem;
}

.info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 0 0 0.3rem 0;
}

.info-content p,
.info-content a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-content a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-button {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-button.whatsapp {
    background: #25D366;
    color: #fff;
}

.social-button.call {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
    padding: 1rem 1rem 1rem 3rem;
}

/* Custom Select Styling */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.custom-select select:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(237, 96, 0, 0.1);
}

.custom-select select option {
    background: #0f172a;
    color: #fff;
    padding: 0.8rem 1rem;
    border: none;
}

.custom-select select option:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.select-arrow {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    pointer-events: none;
}

.custom-select:hover .select-arrow {
    color: var(--primary-orange);
}

/* Required field indicator */
.required {
    color: #ff4d4f;
    margin-right: 4px;
    font-weight: bold;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(237, 96, 0, 0.1);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.submit-button {
    background: linear-gradient(90deg, var(--primary-orange), #ff8c42);
    color: #fff;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 96, 0, 0.2);
}

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

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

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form {
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover,
.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.5);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.info-item i {
    color: var(--primary-orange);
    font-size: 1.3rem;
    margin-top: 0.3rem;
}

.info-item h4 {
    color: var(--primary-orange) !important;
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.info-item p,
.info-item a {
    color: #fff !important;
    margin: 0;
    text-decoration: none !important;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25D366;
    color: #fff !important;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem 0.9rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(237, 96, 0, 0.2), 0 4px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

/* Input with icons */
.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 1.1rem;
    z-index: 2;
}

.input-group .form-control {
    padding-right: 1rem;
    padding-left: 3rem;
}

/* Textarea specific styles */
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Select dropdown styles */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ED6000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.submit-button {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.submit-button:hover {
    background: #d15100;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.8rem;
    }
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 12px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

/* Primary Button */
.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #d46a00 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e66a00 0%, #f57c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 96, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Secondary Button */
.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Button with icon */
.cta-button i {
    margin-right: 0.5rem;
    font-size: 1.1em;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(3px);
}

/* Button Sizes */
.cta-button.lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.cta-button.sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ensure content is above the glass effect */
.container {
    position: relative;
    z-index: 2;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
:root {
    --primary-orange: #ed6000;
    --primary-blue: #1A3149;
    --primary-orange-dark: #cc5200;
    --primary-dark-blue: #0f1f33;
    --neutral-50: #f8f9fa;
    --neutral-200: #e9ecef;
    --neutral-700: #495057;
    --light-bg: #f5f7fa;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero p.availability {
    font-weight: 700;
    color: #ffc107;
    margin: 2rem 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: var(--primary-orange);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
    z-index: -1;
}

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

.cta-button.primary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta-button i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* ==================== */
/* MAIN TRAINER SECTION */
/* ==================== */
.main-trainer {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    position: relative;
    overflow: hidden;
}

.main-trainer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/header2.jpg') no-repeat center/cover;
    opacity: 0.03;
    z-index: 0;
}

.main-trainer .container {
    position: relative;
    z-index: 1;
}

.trainer-profile-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(26, 49, 73, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-profile-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 49, 73, 0.12);
}

.trainer-image-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 260px;
    position: relative;
}

.trainer-image {
    position: relative;
    z-index: 1;
}

.trainer-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 12px 30px rgba(26, 49, 73, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trainer-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 49, 73, 0.2);
}

.trainer-image:hover::before {
    transform: scale(1.05);
    opacity: 1;
}

.experience-badge {
    position: static;
    min-width: 90px;
    min-height: 90px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-badge .years {
    font-size: 2.2rem;
    color: var(--primary-orange);
    font-weight: 900;
    line-height: 1;
    transition: color 0.3s ease;
}

.experience-badge .text {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.experience-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.experience-badge:hover .years,
.experience-badge:hover .text {
    color: var(--primary-orange);
}

.trainer-info {
    flex: 1;
    min-width: 260px;
    padding: 0 1.5rem;
}

.trainer-info h2 {
    color: var(--primary-blue);
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.trainer-info h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    border-radius: 2px;
}

.trainer-title {
    color: var(--primary-orange);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0.8rem 0 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trainer-title::before {
    content: '👨‍🏫';
    font-size: 1.1em;
}

.trainer-desc {
    color: var(--neutral-700);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 1.5rem;
}

.trainer-desc::before {
    content: '❝';
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 2.5rem;
    color: rgba(26, 49, 73, 0.1);
    line-height: 1;
}

.trainer-credentials-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.credential-badge {
    background: var(--light-orange);
    color: var(--primary-orange);
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: 1px solid rgba(237, 96, 0, 0.15);
}

.credential-badge i {
    font-size: 1.1em;
}

.credential-badge:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(237, 96, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .trainer-profile-container {
        padding: 2rem;
    }
    
    .trainer-info h2 {
        font-size: 2rem;
    }
    
    .trainer-title {
        font-size: 1.15rem;
    }
    
    .trainer-desc {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .main-trainer {
        padding: 4rem 0;
    }
    
    .trainer-profile-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .trainer-image-badge-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .trainer-info h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
    }
    
    .trainer-desc {
        padding-right: 0;
    }
    
    .trainer-desc::before {
        right: 50%;
        transform: translateX(50%) rotate(180deg);
    }
    
    .trainer-credentials-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trainer-image img {
        width: 170px;
        height: 170px;
    }
    
    .experience-badge {
        min-width: 80px;
        min-height: 80px;
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.9rem;
    }
    
    .trainer-info h2 {
        font-size: 1.8rem;
    }
    
    .credential-badge {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
}

/* === Floating WhatsApp Button === */
.floating-whatsapp {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18), 0 1.5px 8px rgba(26,49,73,0.10);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    text-decoration: none;
    outline: none;
}
.floating-whatsapp:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 32px rgba(37,211,102,0.22), 0 2px 12px rgba(26,49,73,0.13);
    background: #1ebc59;
}
.floating-whatsapp .fab {
    pointer-events: none;
}
.whatsapp-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: #222;
    color: #fff;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    transition: opacity 0.2s, visibility 0.2s;
    font-weight: 500;
    pointer-events: none;
}
.floating-whatsapp:hover .whatsapp-tooltip,
.floating-whatsapp:focus .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 600px) {
    .floating-whatsapp {
        left: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    .whatsapp-tooltip {
        left: 54px;
        font-size: 0.93rem;
        padding: 6px 10px;
    }
}
/* ==================== */
/* HEADER STYLES */
/* ==================== */
/* Reset default margin and padding */
/* Reset all margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

.hero {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    margin-top: 80px; /* This will push the hero section down by the header's height */
    z-index: 1;
}

.header {
    background-color: #1A3149;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 80px;
    display: flex;
    align-items: center;
    border: none;
    margin: 0;
}

.header.scrolled {
    height: 80px;
    background-color: rgba(26, 49, 73, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem;
    position: relative;
    height: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    transition: all 0.3s ease;
}

.container:hover {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.25);
    transform: translateY(-2px);
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0 0 0 auto;
    padding: 0 1.5rem 0 0;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 0.5rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b34700 0%, #e64a19 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
    color: #fff;
    transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
    left: 0;
}

/* Active state */
.nav-links a.active {
    color: #fff;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.8rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.7rem 0.4rem;
    }
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: #b34700;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* CTA Button */
.cta-button a {
    background: linear-gradient(135deg, #b34700 0%, #e64a19 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(237, 96, 0, 0.2);
}

.cta-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 96, 0, 0.3);
    color: #fff;
}

/* Adjust navigation links for better spacing with larger logo */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Ensure the container takes full height */
.header .container {
    height: 100%;
}

/* ==================== */
/* LOGO STYLES */
/* ==================== */
/* ==================== */
/* LOGO STYLES */
/* ==================== */
.logo {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 10px 0;
    margin: 0 4rem 0 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    padding: 1rem 0;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 90px !important;
    width: auto !important;
    min-width: 90px !important;
    max-width: 160px !important;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .logo-img {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 10px;
    border-width: 2px;
}

.logo-img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* Adjust logo text for better alignment */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 5px 0;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.logo-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'Tajawal', sans-serif;
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(26, 49, 73, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(26, 49, 73, 0.2);
}

.logo-img {
    height: 52px;
    width: 52px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26, 49, 73, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #f8f9fa;
    background: #fff;
    padding: 4px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li {
    margin: 0 0.5rem;
    position: relative;
}

.nav-links a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
    color: var(--primary-orange);
}

.nav-links a:hover::before,
.nav-links a:focus::before,
.nav-links a.active::before {
    width: 60%;
    opacity: 1;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
}

.mobile-menu .nav-links li {
    width: 100%;
    margin: 0.3rem 0;
}

.mobile-menu .nav-links a {
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: 6px;
    font-size: 1.1rem;
}

.mobile-menu .nav-links a:hover {
    background: rgba(237, 96, 0, 0.05);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links a {
        padding: 0.7rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-menu .nav-links {
        display: flex;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1.2rem;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .hamburger {
        width: 26px;
        height: 18px;
    }
    
    .hamburger span {
        height: 2.5px;
    }
    
    .mobile-menu {
        width: 85%;
    }
}

/* Header Scroll Effect */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header {
    animation: slideDown 0.5s ease-out forwards;
}

/* Active Link Style */
.nav-links a.active {
    color: var(--primary-orange);
    font-weight: 700;
}

.nav-links a.active::before {
    width: 60%;
    opacity: 1;
}

/* Logo Hover Effect */
.logo-img {
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(237, 96, 0, 0.2);
}

/* Navigation Icons */
.nav-links a i {
    margin-left: 6px;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.nav-links a:hover i {
    transform: translateX(-3px);
}

/* Navigation Dropdown (if needed in future) */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 0.5rem 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-links .dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-links .dropdown-content a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--primary-blue);
    transition: all 0.2s ease;
}

.nav-links .dropdown-content a:hover {
    background: rgba(237, 96, 0, 0.05);
    color: var(--primary-orange);
    padding-right: 1.8rem;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.5s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Header Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(237, 96, 0, 0.1);
    z-index: 1001;
    width: 100%;
}

.scroll-progress-bar {
    height: 3px;
    background: var(--primary-orange);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ========== Hero Section ========== */
.hero {
    background: linear-gradient(135deg, rgba(26, 49, 73, 0.9), rgba(44, 75, 107, 0.9)), 
                url('../images/header2.jpg') center/cover no-repeat fixed;
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/header2.jpg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .availability {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin: 2rem 0;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-buttons .cta-button {
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .cta-button.primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff7e33);
    color: #fff;
    box-shadow: 0 4px 15px rgba(237, 96, 0, 0.3);
}

.hero-buttons .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(237, 96, 0, 0.4);
}

.hero-buttons .cta-button.primary:active {
    transform: translateY(1px);
}

.hero-buttons .cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.hero-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.hero-buttons .cta-button i {
    margin-right: 8px;
    font-size: 1.1em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0;
        margin-top: 70px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero .availability {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero .availability {
        font-size: 0.95rem;
    }
}

/* ========== Features Section ========== */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../images/header2.jpg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

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

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 49, 73, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 49, 73, 0.1);
}

.feature-card:hover::before {
    height: 6px;
}

.feature-card i {
    font-size: 2.8rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.feature-card p {
    color: var(--neutral-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

/* Features Section Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .features {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        padding-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-card {
        padding: 1.8rem 1.5rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 3.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid {
        gap: 1.2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1.2rem;
    }
    
    .feature-card i {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

/* ========== Footer ========== */
.footer {
  background: #1A3149;
  color: #fff;
  padding: 0;
  font-family: 'Tajawal', Arial, sans-serif;
  box-shadow: 0 -2px 16px rgba(26,49,73,0.08);
  margin-top: 4rem;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-content {
  padding: 3.5rem 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3.5rem;
  width: 100%;
  align-items: flex-start;
}
.footer-logo-social {
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.footer-logo h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.footer-logo p {
  color: #ffb366;
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #1A3149;
  font-size: 1.45rem;
  box-shadow: 0 2px 8px rgba(26,49,73,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 2px solid #fff2e6;
  position: relative;
}
.footer-social .social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  color: #fff;
}
.footer-social .twitter:hover { background: #1da1f2; }
.footer-social .instagram:hover { background: linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7); }
.footer-social .tiktok:hover { background: #010101; }
.footer-social .youtube:hover { background: #ff0000; }
.footer-social .whatsapp:hover { background: #25D366; }
.footer-social .social-icon i {
  pointer-events: none;
}
.footer-links-section, .footer-contact-section {
  min-width: 180px;
  flex: 1 1 180px;
}
.footer-links-section h4,
.footer-contact-section h4 {
  color: #ffb366;
  font-size: 1.13rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #ffb366;
  text-decoration: underline;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-contact li {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-contact i {
  color: #ffb366;
  font-size: 1.1rem;
}
.footer-contact .whatsapp-button {
  color: #25D366;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact .whatsapp-button:hover {
  color: #fff;
  background: #25D366;
  border-radius: 8px;
  padding: 2px 8px;
}
.footer-bottom {
  border-top: 1.5px solid #fff2e6;
  padding: 1.2rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.footer-legal {
  display: flex;
  gap: 1.2rem;
  font-size: 1.02rem;
  color: #ffb366;
  font-weight: 600;
  align-items: center;
}
.footer-legal a {
  color: #ffb366;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-divider {
  color: #fff2e6;
  font-size: 1.2rem;
  margin: 0 0.5rem;
}
.copyright {
  color: #fff;
  font-size: 1.01rem;
  font-weight: 400;
  margin: 0;
}
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer-logo-social {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-content {
    padding: 2.2rem 0 1.2rem 0;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 1.2rem 0;
    justify-items: center;
    align-items: center;
    text-align: center;
  }
  .footer-logo-social,
  .footer-links-section,
  .footer-contact-section {
    align-items: center !important;
    text-align: center !important;
    min-width: 0;
    width: 100%;
  }
  .footer-logo h3,
  .footer-logo p {
    text-align: center !important;
  }
  .footer-links,
  .footer-contact {
    align-items: center !important;
  }
  .footer-logo h3 {
    font-size: 1.25rem;
  }
  .footer-logo p {
    font-size: 0.98rem;
  }
  .footer-links-section h4,
  .footer-contact-section h4 {
    font-size: 1rem;
  }
  .footer-links a, .footer-contact li {
    font-size: 0.98rem;
  }
  .footer-social .social-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}
/* Contact Info Section Enhancements */
.contact-info-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact-info-heading span {
  display: inline-block;
  background: #fff;
  color: #1A3149;
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(26,49,73,0.10);
  padding: 0.4rem 1.2rem;
  border: 2px solid #b34700;
  letter-spacing: 0.5px;
}
.contact-info .info-item {
  border-bottom: 1px solid #fff2e6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.contact-info .info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-info .info-item h4 {
  color: #ffb366;
}
.contact-info .info-item a {
  color: #fff;
  text-decoration: underline;
}
.contact-info .whatsapp-button {
  margin-top: 1.5rem;
  font-size: 1.13rem;
}
/* Contact Section Modern Styles */
.contact {
  background: #f8f9fb;
  padding: 0 0 4rem 0;
}
.contact .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(26,49,73,0.08);
  padding: 3.5rem 2.2rem 2.5rem 2.2rem;
}
.contact .section-title {
  color: #1A3149;
  font-size: 2.1rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  background: linear-gradient(120deg, #1A3149 80%, #b34700 100%);
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,49,73,0.10);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1.08rem;
}
.contact-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}
.contact-info .info-item i {
  font-size: 1.3rem;
  color: #ffb366;
  flex-shrink: 0;
}
.contact-info .info-item h4 {
  margin: 0 0 0.2rem 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}
.contact-info .info-item p {
  margin: 0;
  color: #f3e7de;
  font-size: 1.01rem;
}
.contact-info .whatsapp-button {
  margin-top: 1.2rem;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
  transition: background 0.2s;
}
.contact-info .whatsapp-button:hover {
  background: #1ebc59;
}
.contact-form {
  flex: 2 1 340px;
  min-width: 260px;
  background: #f8f9fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26,49,73,0.06);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A3149;
  margin-bottom: 0.2rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1.5px solid #b34700;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 1.05rem;
  background: #fff;
  color: #1A3149;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #1A3149;
  outline: none;
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form .submit-button {
  background: linear-gradient(90deg, #1A3149 65%, #b34700 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.13rem;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  margin-top: 0.7rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(26,49,73,0.10);
  transition: background 0.2s, transform 0.2s;
}
.contact-form .submit-button:hover {
  background: linear-gradient(90deg, #b34700 65%, #1A3149 100%);
  transform: translateY(-2px) scale(1.03);
}
.contact-form .submit-button span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
@media (max-width: 900px) {
  .contact .container {
    padding: 2.2rem 0.7rem 1.5rem 0.7rem;
  }
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
}
/* ==== Supplements Page Custom Styles ==== */
.supplements-page main {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
}
.supplements-page .supplements-title {
    color: #1A3149;
    font-size: 2.3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 36px;
    letter-spacing: 1px;
}
.supplements-page .supplements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.3s forwards;
}
.supplements-page .supplement-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 30px rgba(26, 49, 73, 0.08);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 340px;
    overflow: hidden;
    cursor: pointer;
}

.supplements-page .supplement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ED6000, #ff8c42);
    transition: height 0.3s ease;
    z-index: 1;
}

.supplements-page .supplement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(237, 96, 0, 0.2);
}

.supplements-page .supplement-card:hover::before {
    height: 6px;
}

.supplements-page .supplement-badge {
    position: absolute;
    top: 15px;
    left: -2px;
    background: linear-gradient(45deg, #ED6000, #ff8c42);
    color: white;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0 20px 20px 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.supplements-page .supplement-img-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supplements-page .supplement-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.supplements-page .supplement-card:hover .supplement-img {
    transform: scale(1.1) rotate(2deg);
}

.supplements-page .supplement-title {
    font-size: 1.1em;
    font-weight: 800;
    color: #1A3149;
    margin: 10px 0;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.supplements-page .supplement-price {
    font-size: 1.25em;
    color: #ED6000;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 230, 213, 0.4), rgba(255, 240, 230, 0.6));
    border-radius: 50px;
    padding: 8px 24px;
    margin-top: 12px;
    box-shadow: 0 4px 15px rgba(237, 96, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.supplements-page .supplement-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    z-index: -1;
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.supplements-page .supplement-card:hover .supplement-price {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 96, 0, 0.15);
}

.supplements-page .supplement-card:hover .supplement-price::before {
    opacity: 1;
}

/* Add a subtle animation for the card content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.supplements-page .supplement-title,
.supplements-page .supplement-price {
    animation: fadeInUp 0.5s ease-out forwards;
}

.supplements-page .supplement-price {
    animation-delay: 0.1s;
}

/* Responsive styles */
@media (max-width: 768px) {
    .supplements-page .supplements-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px 10px;
    }
    
    .supplements-page .supplement-card {
        padding: 10px 6px;
        min-height: 240px;
        border-radius: 12px;
    }
    .supplements-page .supplement-img-container {
        width: 80px;
        height: 80px;
        margin-bottom: 8px;
    }
    .supplements-page .supplement-title {
        font-size: 0.8em;
        min-height: 36px;
        margin: 4px 0;
    }
    .supplements-page .supplement-price {
        font-size: 0.9em;
        padding: 4px 12px;
        margin-top: 6px;
    }
    .supplements-page .supplement-badge {
        font-size: 0.6rem;
        padding: 2px 8px;
        top: 8px;
    }
    .supplements-page .supplement-card:hover {
        transform: translateY(-3px);
    }
}

/* Add animation for grid items */
.supplements-page .supplement-card {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Stagger the animations */
.supplements-page .supplement-card:nth-child(1) { animation-delay: 0.1s; }
.supplements-page .supplement-card:nth-child(2) { animation-delay: 0.2s; }
.supplements-page .supplement-card:nth-child(3) { animation-delay: 0.3s; }
.supplements-page .supplement-card:nth-child(4) { animation-delay: 0.4s; }
.supplements-page .supplement-card:nth-child(5) { animation-delay: 0.5s; }
.supplements-page .supplement-card:nth-child(6) { animation-delay: 0.6s; }
.supplements-page .supplement-card:nth-child(n+7) { animation-delay: 0.7s; }

@media (max-width: 480px) {
    .supplements-page .supplements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 8px;
    }
    
    .supplements-page .supplement-card {
        padding: 10px 6px 10px 6px;
        min-height: 210px;
        border-radius: 10px;
    }
    .supplement-img {
        width: 70px;
        height: 70px;
        border-radius: 7px;
        margin-bottom: 7px;
    }
    .supplement-title {
        font-size: 0.97em;
        min-height: 28px;
    }
    .supplement-price {
        font-size: 0.98em;
        padding: 5px 8px;
        border-radius: 5px;
    }
}
/* ====== Limited Offer Ribbon Above Pricing Cards ====== */
.pricing-page .limited-offer-ribbon {
    width: 100%;
    background: linear-gradient(90deg, #ff4d4d 60%, #f59e0b 100%);
    color: #fff;
    font-size: 1.18rem;
    font-weight: 900;
    text-align: center;
    padding: 12px 0 10px 0;
    border-radius: 18px 18px 0 0;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(255,77,77,0.10);
    position: relative;
    z-index: 2;
    animation: pulse-offer 1.2s infinite alternate;
}
/* ====== Full-Width, Modern Comparison Table ====== */
.pricing-page .features-comparison {
    background: var(--light-gold);
    padding: 50px 0 40px 0;
}
.pricing-page .comparison-table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 22px;
    box-shadow: 0 6px 32px rgba(26,49,73,0.10);
    overflow: hidden;
    min-width: 0;
    margin-bottom: 2rem;
}
.pricing-page .comparison-table table {
    width: 100%;
    min-width: 0;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
}
.pricing-page .comparison-table th, .pricing-page .comparison-table td {
    padding: 18px 14px;
    text-align: center;
    font-size: 1.13rem;
    border-bottom: 1px solid var(--neutral-200);
}
.pricing-page .comparison-table th {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 900;
    font-size: 1.13rem;
    letter-spacing: 0.5px;
}
.pricing-page .comparison-table tr:last-child td {
    border-bottom: none;
}
.pricing-page .comparison-table td {
    color: var(--text-color);
    background: #fff;
}
.pricing-page .comparison-table .fa-check {
    color: var(--primary-gold);
    font-size: 1.2rem;
}
.pricing-page .comparison-table .fa-times {
    color: var(--primary-red);
    font-size: 1.2rem;
}
@media (max-width: 900px) {
    .pricing-page .comparison-table, .pricing-page .comparison-table table {
        max-width: 100vw;
        min-width: 0;
        font-size: 0.98rem;
    }
    .pricing-page .comparison-table th, .pricing-page .comparison-table td {
        padding: 10px 4px;
        font-size: 0.98rem;
    }
}
/* ====== Modern Pricing Cards ====== */
.pricing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
    perspective: 1000px;
}

.pricing-page .pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: visible;
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
    z-index: 1;
    transform-style: preserve-3d;
    transform: translateZ(0);
    will-change: transform, box-shadow;
    margin: 10px;
}

/* Card Header */
.pricing-page .package-header {
    padding: 30px 30px 20px;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-page .pricing-card.lite-package .package-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-page .pricing-card.silver-package .package-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pricing-page .pricing-card.gold-package .package-header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.pricing-page .package-header h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a3149;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
}

/* Price Section */
.pricing-page .package-price {
    padding: 20px 30px;
    text-align: center;
    background: #fff;
    position: relative;
}

.pricing-page .package-price .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a3149;
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
}

.pricing-page .package-price .price::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
    margin: 0 auto;
    width: 80%;
}

.pricing-page .package-price .currency {
    font-size: 1.2rem;
    color: #64748b;
    margin-right: 5px;
    position: relative;
    top: -0.8em;
}

.pricing-page .package-price .period {
    display: block;
    font-size: 1rem;
    color: #64748b;
    margin-top: 8px;
}

/* Package Badge */
.pricing-page .package-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    background: #1a3149;
    color: white;
    padding: 5px 30px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: 700;
    width: 150px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.pricing-page .package-badge.basic {
    background: #3b82f6;
}

.pricing-page .package-badge.popular {
    background: #10b981;
}

.pricing-page .package-badge.premium {
    background: #f59e0b;
}

/* Features List */
.pricing-page .package-features {
    padding: 20px 20px 10px;
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 2;
    background: #fff;
    min-height: auto;
    box-sizing: border-box;
}

.pricing-page .package-features li {
    list-style: none;
    padding: 10px 0 10px 25px;
    color: #475569;
    position: relative;
    line-height: 1.5;
    font-size: 0.98rem;
    border-bottom: 1px dashed #e2e8f0;
    transition: all 0.2s ease;
}

.pricing-page .package-features li:hover {
    color: #1a3149;
    transform: translateX(5px);
}

.pricing-page .package-features li:last-child {
    border-bottom: none;
}

.pricing-page .package-features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Button */
.pricing-page .select-package-btn {
    display: inline-block;
    background: #1a3149;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin: 20px auto 30px;
    border: 2px solid transparent;
    text-align: center;
    min-width: 180px;
}

.pricing-page .select-package-btn:hover {
    background: transparent;
    color: #1a3149;
    border-color: #1a3149;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover Effects */
.pricing-page .pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.pricing-page .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #10b981, #f59e0b);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-page .pricing-card:hover::before {
    opacity: 1;
}

.pricing-page .pricing-card.lite-package:hover {
    border-top: 4px solid #3b82f6;
}

.pricing-page .pricing-card.silver-package:hover {
    border-top: 4px solid #10b981;
}

.pricing-page .pricing-card.gold-package:hover {
    border-top: 4px solid #f59e0b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-page .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
    
    .pricing-page .package-header {
        padding: 25px 20px 15px;
    }
    
    .pricing-page .package-features {
        padding: 20px;
    }
    
    .pricing-page .package-price .price {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pricing-page .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 20px auto;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-page .pricing-card {
        max-width: 100%;
        margin: 0 auto 25px;
        width: 100%;
        box-sizing: border-box;
        transform: none !important;
    }
    
    .pricing-page .package-header {
        padding: 25px 15px 15px;
    }
    
    .pricing-page .package-header h3 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .pricing-page .package-price {
        padding: 15px 20px;
    }
    
    .pricing-page .package-price .price {
        font-size: 2.8rem;
    }
    
    .pricing-page .package-features {
        padding: 15px 20px;
    }
    
    .pricing-page .package-features li {
        padding: 8px 0;
        font-size: 0.95rem;
    }
    
    .pricing-page .package-badge {
        font-size: 0.7rem;
        padding: 4px 20px;
        width: 130px;
        left: -25px;
    }
    
    .pricing-page .select-package-btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 10px auto 25px;
    }
    
    .pricing-page .package-meta {
        margin: 10px 15px 0;
        padding: 12px 15px;
    }
    
    .meta-item {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .meta-item i {
        font-size: 1rem;
    }
    
    .free-badge {
        font-size: 0.7rem;
        padding: 1px 6px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .pricing-page .pricing-card {
        margin: 0 0 25px 0;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .pricing-page .pricing-grid {
        padding: 0 10px;
    }
    .pricing-page .package-header h3 {
        font-size: 1.3rem;
    }
    
    .pricing-page .package-price .price {
        font-size: 2.5rem;
    }
    
    .pricing-page .package-price .currency {
        font-size: 1rem;
    }
    
    .pricing-page .package-price .period {
        font-size: 0.9rem;
    }
    
    .pricing-page .package-features li {
        font-size: 0.9rem;
        padding: 7px 0 7px 20px;
    }
    
    .pricing-page .package-features li::before {
        font-size: 0.9rem;
        right: 0;
    }
    
    .pricing-page .select-package-btn {
        width: 90%;
        max-width: 250px;
    }
    
    .pricing-page .package-badge {
        font-size: 0.65rem;
        width: 120px;
        left: -20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.pricing-page .pricing-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    backface-visibility: hidden;
}

.pricing-page .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-page .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-page .pricing-card:nth-child(3) { animation-delay: 0.3s; }
.pricing-page .package-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.pricing-page .package-header h3 {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}
.pricing-page .package-badge {
    font-size: 1.05rem;
    font-weight: 800;
    padding: 7px 18px;
    border-radius: 16px;
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-orange) 60%, var(--primary-gold) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(237, 96, 0, 0.10);
    border: none;
    letter-spacing: 1px;
}
.pricing-page .limited-offer-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff4d4d 60%, #f59e0b 100%);
    color: #fff;
    font-size: 1.02rem;
    font-weight: 900;
    padding: 7px 22px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(255,77,77,0.13);
    z-index: 2;
    animation: pulse-offer 1.2s infinite alternate;
    letter-spacing: 1px;
}
@keyframes pulse-offer {
    0% { box-shadow: 0 0 0 0 rgba(255,77,77,0.18); }
    100% { box-shadow: 0 0 0 10px rgba(255,77,77,0.04); }
}
.pricing-page .package-price {
    margin: 22px 0 10px 0;
    text-align: center;
    position: relative;
    width: 100%;
}
.pricing-page .package-price .price {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--primary-orange) 60%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-page .silver-package .package-price .price {
    color: var(--primary-silver);
    background: linear-gradient(90deg, #808080 60%, #bdbdbd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-page .gold-package .package-price .price {
    color: var(--primary-gold);
    background: linear-gradient(90deg, #b34700 60%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-page .package-price .currency, .pricing-page .package-price .period {
    font-size: 1.13rem;
    color: var(--neutral-600);
    margin-right: 4px;
}
.pricing-page .package-features {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: 0 1px 4px rgba(30,41,59,0.04);
    padding: 18px 0 8px 0;
}
.pricing-page .package-features li {
    font-size: 1.13rem;
    color: var(--text-color);
    padding: 12px 0 12px 0;
    border-bottom: 1px solid var(--neutral-200);
    position: relative;
    padding-right: 28px;
    background: transparent;
}
.pricing-page .package-features li:last-child {
    border-bottom: none;
}
.pricing-page .select-package-btn {
    margin-top: 18px;
    font-size: 1.13rem;
    font-weight: 900;
    border-radius: 22px;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(90deg, var(--primary-orange) 60%, var(--primary-gold) 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(237, 96, 0, 0.10);
    border: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    letter-spacing: 1px;
}
.pricing-page .select-package-btn:hover {
    background: linear-gradient(90deg, var(--primary-gold) 60%, var(--primary-orange) 100%);
    box-shadow: 0 4px 16px rgba(237, 96, 0, 0.18);
    transform: scale(1.07);
}
/* Expressive color backgrounds for each service group */
.services-page .team-member.recovery-card {
    background: linear-gradient(135deg, #e0f2fe 70%, #bae6fd 100%);
    border-right: 5px solid #3b82f6;
}
.services-page .team-member.equipment-card {
    background: linear-gradient(135deg, #fff7ed 70%, #fde68a 100%);
    border-right: 5px solid #f59e0b;
}
.services-page .team-member.system-card {
    background: linear-gradient(135deg, #ede9fe 70%, #c7d2fe 100%);
    border-right: 5px solid #6366f1;
}
.services-page .team-member.medical-card {
    background: linear-gradient(135deg, #fdf2f8 70%, #fbcfe8 100%);
    border-right: 5px solid #ec4899;
}
.services-page .team-member.followup-card {
    background: linear-gradient(135deg, #d1fae5 70%, #a7f3d0 100%);
    border-right: 5px solid #10b981;
}
.services-page .team-member.consult-card {
    background: linear-gradient(135deg, #f3e8ff 70%, #ddd6fe 100%);
    border-right: 5px solid #8b5cf6;
}
/* صف أفقي لبطاقات الخدمات في صفحة الخدمات */
.services-page .services-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px 24px;
    margin-bottom: 40px;
    align-items: stretch;
}
/* ==== Services Page Custom Styles ==== */
.services-page main {
    padding-top: 90px;
    background: #f8f9fa;
}
.services-page .services-hero {
    background: linear-gradient(rgba(26,49,73,0.85), rgba(237,96,0,0.65)), url('../images/header2.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 90px 0 60px 0;
    text-align: right;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 8px 32px rgba(26,49,73,0.08);
}
.services-page .services-hero h1,
.services-page .services-hero h2 {
    text-align: right;
    font-weight: 900;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.13);
}
.services-page .services-hero p {
    text-align: right;
    color: #e2e8f0;
    font-size: 1.15rem;
    max-width: 700px;
    margin-right: 0;
    margin-left: auto;
}
.services-page .service-highlights {
    justify-content: flex-end;
    gap: 18px;
}
.services-page .highlight-item {
    min-width: 180px;
    text-align: right;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(237,96,0,0.13);
}
.services-page .cta-button {
    background: linear-gradient(90deg, var(--primary-blue) 60%, var(--primary-gold) 100%);
    color: #fff;
    border-radius: 24px;
    font-size: 1.1rem;
    padding: 12px 36px;
    margin-top: 18px;
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(26,49,73,0.10);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    float: left;
    outline: none;
}
.services-page .cta-button:hover, .services-page .cta-button:focus {
    background: linear-gradient(90deg, var(--primary-gold) 60%, var(--primary-blue) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,49,73,0.18);
    transform: scale(1.05);
    text-decoration: none;
}
.services-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px 24px;
    margin-top: 40px;
    justify-items: stretch;
    align-items: stretch;
}
.services-page .service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(26,49,73,0.07);
    padding: 32px 24px 24px 24px;
    text-align: right;
    border-right: 6px solid var(--primary-orange);
    border-left: none;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.services-page .service-card h2 {
    color: var(--primary-orange);
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 18px;
    text-align: right;
}
.services-page .service-card p {
    color: #475569;
    margin-bottom: 18px;
    text-align: right;
}
.services-page .team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 20px;
}
.services-page .team-member {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(30,41,59,0.10);
    padding: 28px 18px 18px 18px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    min-width: 200px;
    max-width: 260px;
    flex: 1 1 220px;
    margin-bottom: 0;
    color: #1e293b;
    font-family: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-right: 5px solid #e5e7eb;
/* Responsive: keep expressive backgrounds on mobile */
}
.services-page .team-member:hover {
    box-shadow: 0 4px 16px rgba(26,49,73,0.13);
    border-color: var(--primary-orange);
}
/* Remove duplicate .team-member rule for clarity */
.services-page .team-member h4 {
    font-size: 1.13rem;
    font-weight: 700;
    margin: 0;
    color: inherit;
}
.services-page .team-member i {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: block;
@media (max-width: 700px) {
  .services-page .team-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .services-page .team-member {
    max-width: 100%;
    min-width: 0;
  }
}
}
@media (max-width: 900px) {
    .services-page .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .services-page .service-card {
        padding: 18px 8px 16px 8px;
        width: 100%;
    }
    .services-page .team-grid {
        gap: 10px;
    }
}
/* Glass Effect Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-panel {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Text contrast for better readability */
.glass-text {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Global Styles and Variables */
:root {
    /* Brand Colors */
    --primary-blue: #1A3149; /* كحلي غامق للفوتر */
    --primary-silver: #808080; /* سيلفر */
    --primary-gold: #b34700; /* برتقالي داكن للفوتر */
    --primary-orange: #ED6000; /* برتقالي ساطع */
    --primary-red: #ff4d4d;
    --primary-green: #b34700; /* استبدال الأخضر بالبرتقالي الداكن */
    --light-blue: #f8f9fa; /* رمادي فاتح للفوتر */
    --light-silver: #f2f2f2;
    --light-gold: #ffe5d0; /* مشتق من البرتقالي */
    --white: #fff;
    --black: #222;
    /* Neutral Colors */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    /* Effects */
    --shadow: 0 4px 16px rgba(25, 118, 210, 0.08);
    --shadow-lg: 0 10px 30px rgba(25, 118, 210, 0.13);
    --transition: all 0.3s cubic-bezier(.4,0,.2,1);
    --border-radius: 18px;
    --border-radius-sm: 8px;
    --border-radius-lg: 32px;
    --accent-color: var(--primary-orange);
    --text-color: var(--neutral-800);
}
/* Pricing Page Styles (scoped to .pricing-page) */
.pricing-page .pricing-plans {
    background: linear-gradient(120deg, var(--light-blue) 60%, var(--light-silver) 100%);
    padding: 60px 0 40px 0;
}
.pricing-page .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
}
.pricing-page .pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 36px 28px 28px 28px;
    min-width: 320px;
    max-width: 350px;
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid transparent;
    transition: box-shadow 0.3s, border 0.3s;
    position: relative;
}
.pricing-page .lite-package {
    border-color: var(--primary-blue);
}
.pricing-page .silver-package {
    border-color: var(--primary-silver);
}
.pricing-page .gold-package {
    border-color: var(--primary-gold);
}
.pricing-page .pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px) scale(1.03);
}
.pricing-page .package-header h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}
.pricing-page .silver-package .package-header h3 {
    color: var(--primary-silver);
}
.pricing-page .gold-package .package-header h3 {
    color: var(--primary-gold);
}
.pricing-page .package-badge {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--border-radius-sm);
    margin-top: 6px;
    margin-bottom: 8px;
    display: inline-block;
}
.pricing-page .basic {
    background: var(--primary-orange);
    color: #fff;
}
.pricing-page .popular {
    background: var(--primary-silver);
    color: #fff;
}
.pricing-page .premium {
    background: var(--primary-gold);
    color: #fff;
}
.pricing-page .package-price {
    margin: 18px 0 10px 0;
    text-align: center;
}
.pricing-page .package-price .price {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 0.2rem;
}
.pricing-page .silver-package .package-price .price {
    color: var(--primary-silver);
}
.pricing-page .gold-package .package-price .price {
    color: var(--primary-gold);
}
.pricing-page .package-price .currency {
    font-size: 1.1rem;
    color: var(--neutral-600);
    margin-right: 4px;
}
.pricing-page .package-price .period {
    font-size: 1rem;
    color: var(--neutral-500);
}
.pricing-page .package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    width: 100%;
}
.pricing-page .package-features li {
    font-size: 1.08rem;
    color: var(--text-color);
    padding: 10px 0 10px 0;
    border-bottom: 1px solid var(--neutral-200);
    position: relative;
    padding-right: 28px;
}
.pricing-page .package-features li:last-child {
    border-bottom: none;
}
.pricing-page .package-features li span {
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    padding: 2px 7px;
    background: var(--primary-red);
    color: #fff;
    margin-right: 8px;
}
.pricing-page .select-package-btn {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-orange) 60%, var(--primary-gold) 100%);
    color: #fff;
    border: none;
    border-radius: 22px;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(237, 96, 0, 0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    margin-top: 0.7rem;
    text-decoration: none;
}
.pricing-page .select-package-btn:hover {
    background: linear-gradient(90deg, var(--primary-gold) 60%, var(--primary-orange) 100%);
    box-shadow: 0 4px 16px rgba(237, 96, 0, 0.18);
    transform: scale(1.06);
}
/* Comparison Table */
.pricing-page .features-comparison {
    background: var(--light-gold);
    padding: 50px 0 40px 0;
}
.pricing-page .comparison-table th {
    background: var(--primary-orange);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
}
.pricing-page .comparison-table {
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 600px;
}
.pricing-page .comparison-table th, .pricing-page .comparison-table td {
    padding: 16px 12px;
    text-align: center;
    font-size: 1.08rem;
    border-bottom: 1px solid var(--neutral-200);
}
.pricing-page .comparison-table th {
    background: var(--primary-blue);
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
}
.pricing-page .comparison-table tr:last-child td {
    border-bottom: none;
}
.pricing-page .comparison-table td {
    color: var(--text-color);
}
.pricing-page .comparison-table .fa-check {
    color: var(--primary-gold);
    font-size: 1.2rem;
}
.pricing-page .comparison-table .fa-times {
    color: var(--primary-red);
    font-size: 1.2rem;
}
/* Benefits Section */
/* Benefits Section - Dark Theme */
.pricing-page .benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-page .benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/header2.jpg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.pricing-page .benefits-section .container {
    position: relative;
    z-index: 1;
}

.pricing-page .benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.pricing-page .benefit-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    min-width: 280px;
    max-width: 350px;
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-page .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(30, 41, 59, 0.9);
}

.pricing-page .benefit-card i {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #f59e0b;
    transition: all 0.3s ease;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.pricing-page .benefit-card:hover i {
    color: #f8b84e;
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(248, 184, 78, 0.5);
}

.pricing-page .benefit-card h3 {
    color: #f8fafc;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.pricing-page .benefit-card p {
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

@media (max-width: 1024px) {
    .pricing-page .benefits-section {
        padding: 4rem 0;
    }
    
    .pricing-page .benefit-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-page .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-page .benefit-card {
        max-width: 100%;
        min-width: 280px;
    }
}

@media (max-width: 900px) {
    .pricing-page .benefits-grid {
        flex-direction: column;
        align-items: center;
    }
    .pricing-page .pricing-card, .pricing-page .benefit-card {
        min-width: 90vw;
        max-width: 98vw;
    }
    .pricing-page .comparison-table table {
        min-width: 400px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
}

.benefits-section {
    background: linear-gradient(120deg, var(--light-gold) 60%, var(--light-silver) 100%);
    padding: 60px 0 40px 0;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 32px 24px 24px 24px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid var(--primary-gold);
    transition: box-shadow 0.3s, border 0.3s;
    position: relative;
}
.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
    transform: translateY(-6px) scale(1.03);
}
.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    transition: color 0.3s;
}
.benefit-card:hover i {
    color: var(--primary-orange);
}
.benefit-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 900;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 5px;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.logo-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
    font-family: 'Tajawal', sans-serif;
}

.logo-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.8rem;
}

.nav-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    padding: 0.6rem 1rem;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    margin: 0 auto;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FF6B35;
    background: rgba(255, 255, 255, 0.1);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 60%;
}

/* CTA Button */
.cta-button a {
    background: linear-gradient(135deg, #FF6B35 0%, #FF9E3D 100%) !important;
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3) !important;
    border: none !important;
    margin-right: 0.5rem;
}

.cta-button a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    background: linear-gradient(135deg, #FF5A1F 0%, #FF8C1A 100%) !important;
    color: white !important;
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    margin-right: 10px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .navbar {
        height: 60px; /* تقليل الارتفاع على الموبايل */
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

.logo h1 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    padding: 1rem 0 1rem 2rem;
    margin: 0;
    display: block;
}

.logo {
    padding: 0.5rem 0 0.5rem 2rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a.active::before {
    width: 80%;
}

/* Hero Section Improvements */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--neutral-50);
    position: relative;
    padding: 100px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: fadeIn 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--neutral-50);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--neutral-200);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    color: white !important;
}

.cta-button.primary {
    background: var(--primary-blue);
    color: white !important;
}

.cta-button.secondary {
    background: var(--primary-green);
    color: white !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary:hover {
    background: var(--dark-blue);
}

.cta-button.secondary:hover {
    background: var(--dark-green);
}

/* Features Section Improvements */
.features {
    padding: 5rem 0;
    background: var(--light-bg);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
}

/* Feature Cards */
.feature-card {
    background: var(--neutral-50);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-card h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Services Section Improvements */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: flex-start;
}

/* Service Cards */
.service-card {
    background: var(--neutral-50);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-green);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    border-radius: 50%;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.service-card:hover .service-icon {
    background: var(--primary-green);
}

.service-card:hover .service-icon i {
    color: var(--neutral-50);
}

.service-card h3 {
    color: var(--dark-green);
    margin: 1.5rem 0;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--neutral-700);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Stats Section Improvements */
.stats {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
}

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

.stat-card {
    padding: 2rem;
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.stat-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Gallery Section Improvements */
.gallery {
    padding: 5rem 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

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

/* Contact Section Improvements */
.contact {
    padding: 5rem 0;
    background: var(--light-bg);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form {
    background: var(--neutral-50);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--neutral-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--neutral-50);
    color: var(--neutral-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.submit-button {
    background: var(--primary-blue);
    color: var(--neutral-50);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer Improvements */
.footer {
    background: linear-gradient(135deg, #1A3149 70%, #ED6000 100%);
    color: #fff;
    padding: 40px 0 15px;
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.footer .container {
    /* Responsive padding for mobile moved from inline */
    padding: 0 8px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 1.08rem;
    color: #ED6000;
    margin-bottom: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 1.08rem;
    font-weight: 700;
    border-bottom: 2px solid #ED6000;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-contact .whatsapp-button {
    background: #25D366;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.95rem;
    margin-top: 10px;
}

.footer-legal {
    margin-top: 8px;
}

.footer-legal a {
    color: #fff;
    margin: 0 10px;
    font-size: 0.97rem;
    text-decoration: underline dotted;
    transition: color 0.3s;
}

@media (max-width: 700px) {
    .footer .container {
        padding: 0 8px;
    }
    .footer-content {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-section {
        min-width: 0 !important;
        width: 100% !important;
        margin-bottom: 1.2rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-logo h3 {
        font-size: 1.15rem !important;
    }
    .footer-logo p {
        font-size: 0.98rem !important;
    }
    .footer-social {
        justify-content: center !important;
        gap: 10px !important;
    }
    .footer-links li, .footer-contact li {
        font-size: 0.98rem !important;
        text-align: center !important;
    }
    .footer-bottom {
        font-size: 0.92rem !important;
        padding-top: 10px !important;
    }
}

@media (max-width: 400px) {
    .footer-logo h3 {
        font-size: 1rem !important;
    }
    .footer-logo p {
        font-size: 0.9rem !important;
    }
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .about {
        padding: 40px 0 30px 0;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 10px;
    }
    .about-text {
        padding: 10px 0 0 0;
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .about-text p {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .about-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 18px;
    }
    .about-cta {
        flex-direction: column;
        gap: 12px;
        margin-top: 18px;
        align-items: center;
    }
    .about-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 120px;
        margin-bottom: 18px;
    }
    .image-wrapper {
        width: 90vw;
        max-width: 340px;
        min-width: 180px;
        margin: 0 auto;
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(0,0,0,0.10);
        overflow: hidden;
    }
    .main-image {
        width: 100%;
        height: auto;
        display: block;
        max-height: 220px;
        object-fit: contain;
    }
    .experience-badge {
        width: 70px;
        height: 70px;
        padding: 10px;
        bottom: 10px;
        right: -10px;
        font-size: 0.9rem;
    }
    .experience-badge .years {
        font-size: 1.2rem;
    }
    .experience-badge .text {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .navbar .nav-links {
        display: none !important;
    }
}

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

.section-title {
    color: var(--neutral-800);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
}

.section-subtitle {
    color: var(--neutral-600);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Active Link Style */
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::before {
    width: 100%;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-menu .nav-links li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu .nav-links li:last-child {
    border-bottom: none;
}

.mobile-menu .nav-links a {
    display: block;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a.active {
    color: #007bff;
    background-color: rgba(0, 123, 255, 0.05);
}

/* Hamburger Menu Button */
.hamburger {
    display: block !important;
    position: fixed !important;
    top: 18px;
    left: 24px;
    z-index: 1101;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 10px;
    transition: box-shadow 0.3s cubic-bezier(0.4,0,0.2,1), background 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-orange);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hamburger.active {
    background: rgba(237,96,0,0.08);
    box-shadow: 0 4px 24px rgba(237,96,0,0.13);
    transform: scale(1.08) rotate(-6deg);
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-12px);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
}

/* إزالة جميع التأثيرات والألوان من عناوين الشريط العلوي وقائمة الموبايل */
.nav-links a,
.nav-links a:visited,
.nav-links a:active,
.nav-links a:focus,
.mobile-menu .nav-links a,
.mobile-menu .nav-links a:visited,
.mobile-menu .nav-links a:active,
.mobile-menu .nav-links a:focus {
    color: var(--primary-blue) !important;
    background: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: none !important;
}
.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active,
.mobile-menu .nav-links a:hover,
.mobile-menu .nav-links a:focus,
.mobile-menu .nav-links a:active {
    color: var(--primary-blue) !important;
    background: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: none !important;
}
.nav-links a::before,
.nav-links a::after,
.mobile-menu .nav-links a::before,
.mobile-menu .nav-links a::after {
    display: none !important;
    content: none !important;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .mobile-menu {
        background-color: #2d2d2d;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu .nav-links li {
        border-bottom-color: #444;
    }

    .mobile-menu .nav-links a {
        color: #e0e0e0;
    }

    .mobile-menu .nav-links a:hover,
    .mobile-menu .nav-links a.active {
        color: #4dabf7;
        background-color: rgba(77, 171, 247, 0.05);
    }

    .hamburger span {
        background-color: #e0e0e0;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }
}

/* Remove dark mode toggle button */
.dark-mode-toggle {
    display: none;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="rgba(0,0,0,0.02)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;