/* ============================================
   تصميم فخم للكوتش عبدالله الحارثي
   الألوان الذهبية والأبيض مع تأثيرات احترافية
   ============================================ */

/* ====== متغيرات الألوان ====== */
:root {
    --gold-primary: #D4AF37;
    --gold-dark: #C19A3A;
    --gold-light: #E8D5A0;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C19A3A 100%);
    --white: #FFFFFF;
    --black: #2C2C2C;
    --gray: #666666;
    --gray-light: #F5F5F5;
    --shadow-soft: 0 10px 40px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 15px 50px rgba(212, 175, 55, 0.15);
    --shadow-strong: 0 20px 60px rgba(212, 175, 55, 0.25);
}

/* ====== إعدادات عامة ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Tajawal', 'Cairo', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.8;
    overflow-x: hidden;
}

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

/* ====== Navigation ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gold-primary);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1001;
}

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

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gold-primary);
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--gold-primary);
    padding-right: 10px;
}

.mobile-cta {
    width: 100%;
    text-align: center;
}

/* ====== Buttons ====== */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-hero {
    padding: 18px 45px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--gold-gradient);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* ====== Hero Section ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #FFFFFF 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--black);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title .highlight {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-secondary {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease 0.8s backwards;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 1s ease 1s backwards;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
}

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

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

/* ====== Sections Common ====== */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 50px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ====== About Section ====== */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 3/4;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--gray);
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--gold-primary);
}

.image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
}

.about-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    z-index: -1;
}

.about-text {
    padding: 20px 0;
}

.about-name {
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 10px;
}

.about-title-text {
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.credentials {
    margin-bottom: 30px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--gray-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
}

.credential-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.credential-item span {
    flex: 1;
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.mission {
    background: var(--gold-gradient);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.mission h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.mission p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ====== Benefits Section ====== */
.benefits {
    background: var(--gray-light);
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(0deg) scale(1.1);
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.benefit-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ====== Testimonials Section ====== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: var(--gold-primary);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--black);
    position: relative;
    padding-right: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 4rem;
    color: var(--gold-primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--gold-gradient);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 20px;
}

/* ====== Packages Section ====== */
.packages {
    background: var(--gray-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.package-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    text-align: center;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--gold-primary);
}

.package-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--white) 0%, rgba(212, 175, 55, 0.05) 100%);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-gradient);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #F5F5F5 0%, #E8E8E8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.package-icon.gold {
    background: var(--gold-gradient);
    color: var(--white);
}

.package-card:hover .package-icon {
    transform: scale(1.1) rotate(360deg);
}

.package-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 10px;
}

.package-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 25px;
}

.package-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    display: block;
    font-size: 1.1rem;
    color: var(--gray);
    margin-top: 5px;
}

.price-save {
    display: block;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 10px;
}

.package-session {
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: right;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.package-features i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.package-features span {
    flex: 1;
    text-align: right;
    font-size: 1rem;
    color: var(--black);
}

.btn-package {
    display: block;
    width: 100%;
    padding: 18px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-package:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-package.featured {
    background: var(--gold-gradient);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ====== Free Call Section ====== */
.free-call {
    background: var(--white);
    padding: 80px 0;
}

.free-call-card {
    background: var(--gold-gradient);
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-call-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

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

.free-call-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold-primary);
    position: relative;
    z-index: 1;
}

.free-call-content {
    position: relative;
    z-index: 1;
}

.free-call-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.free-call-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 40px;
    opacity: 0.95;
}

.free-call-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.free-call-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: right;
}

.free-call-benefit i {
    font-size: 1.5rem;
    color: var(--white);
}

.free-call-benefit span {
    flex: 1;
    color: var(--white);
    font-weight: 600;
}

.free-call-note {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-free-call {
    display: inline-block;
    padding: 20px 50px;
    background: var(--white);
    color: var(--gold-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-free-call:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ====== FAQ Section ====== */
.faq {
    background: var(--gray-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-medium);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ====== CTA Final Section ====== */
.cta-final {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50 50 100 0 50z" fill="%23D4AF37" opacity="0.03"/></svg>');
    opacity: 0.1;
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-final-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.cta-final-action {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.85;
}

.cta-final-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 20px 50px;
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

.btn-cta-secondary {
    padding: 20px 50px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-5px);
}

.cta-final-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.8;
}

.cta-final-note i {
    color: var(--gold-primary);
}

/* ====== Contact Section ====== */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(-5px);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-item a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

.social-links h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

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

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
}

/* Contact Form */
.contact-form-container {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--black);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.btn-submit {
    padding: 18px 40px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ====== Footer ====== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(-5px);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ====== Scroll to Top Button ====== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* ====== Collapsible Sections (Mobile Accordion) ====== */
/* TEMPORARY: Works on ALL screens for testing! */

/* Toggle button */
.collapse-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    backdrop-filter: blur(10px);
    outline: none;
}

.collapse-toggle i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Collapsible header */
.collapsible-header {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    padding: 20px !important;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark)) !important;
    border-radius: 15px;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

.collapsible-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.section-header-content {
    flex: 1;
}

.collapsible-header .section-badge {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.collapsible-header .section-title {
    color: var(--white) !important;
    margin-top: 15px !important;
    font-size: 1.5rem !important;
}

.collapsible-header .section-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    margin-top: 10px;
}

/* Content - HIDDEN by default */
.collapsible-content {
    display: none !important;
}

/* Content - VISIBLE when active */
.collapsible-section.active .collapsible-content {
    display: block !important;
    animation: slideDown 0.5s ease-out;
    padding: 30px 20px !important;
}

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

.collapsible-section.active .collapse-toggle i {
    transform: rotate(180deg);
}

.collapsible-section.active .collapsible-header {
    border-radius: 15px 15px 0 0;
}

/* Section styling */
.collapsible-section {
    padding: 0 !important;
    margin-bottom: 15px;
    background: transparent !important;
}

.collapsible-section.active {
    background: var(--white) !important;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    margin-bottom: 20px;
    padding-bottom: 20px !important;
}

.collapsible-section .container {
    padding: 0 !important;
    max-width: 100% !important;
}

/* Fix for specific sections content */
.collapsible-section .about-content,
.collapsible-section .benefits-grid,
.collapsible-section .testimonials-grid,
.collapsible-section .packages-grid,
.collapsible-section .faq-container {
    padding: 20px !important;
}

/* ====== Responsive Design ====== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-primary {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-secondary {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .free-call-card {
        padding: 40px 30px;
    }
    
    .free-call-title {
        font-size: 1.8rem;
    }
    
    .free-call-benefits {
        grid-template-columns: 1fr;
    }
    
    .cta-final-title {
        font-size: 2rem;
    }
    
    .cta-final-buttons {
        flex-direction: column;
    }
    
    .scroll-to-top {
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-secondary {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-name {
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .free-call-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}