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

:root {
    --primary-color: #0066CC;
    --secondary-color: #25D366;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}

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

/* Header */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* الناف شفاف فوق الهيرو - نصوص بيضاء */
.header .logo-text {
    color: var(--white);
}
.header .nav-link {
    color: rgba(255, 255, 255, 0.95);
}
.header .nav-link:hover {
    color: var(--white);
}
.header .btn-whatsapp {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.header .btn-whatsapp:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* الناف أبيض بعد التمرير تحت الهيرو */
.header.header--scrolled {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.header.header--scrolled .logo-text {
    color: var(--primary-color);
}
.header.header--scrolled .nav-link {
    color: var(--text-color);
}
.header.header--scrolled .nav-link:hover {
    color: var(--primary-color);
}
.header.header--scrolled .btn-whatsapp {
    background: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
.header.header--scrolled .btn-whatsapp:hover {
    background: #20ba5a;
    border-color: #20ba5a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

/* زر القائمة (هامبرغر) - مخفي على الديسكتوب */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}
.nav-toggle:active {
    transform: scale(0.96);
}
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
/* تحويل الهامبرغر إلى X عند الفتح */
body.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ألوان الهامبرغر حسب حالة الشريط */
.header .nav-toggle { color: var(--white); }
.header.header--scrolled .nav-toggle { color: var(--dark); }

/* overlay خلف القائمة المنزلقة */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}
body.nav-open .nav-overlay {
    opacity: 1;
}

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

.nav-link {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
}

.btn-package {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider {
    width: 100%;
    position: relative;
}

.hero-slide {
    display: none;
    padding: 80px 0;
    animation: fadeIn 1s;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.hero-image-wrapper {
    margin-bottom: 30px;
}

.hero-person-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255,255,255,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    margin: 0 auto 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

/* About Section */
.about-image {
    text-align: center;
    margin-bottom: 40px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-text {
    color: var(--gray);
    line-height: 1.8;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
}

.package-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.package-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    position: relative;
    padding-right: 25px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.package-features li.highlight {
    background: #fff9e6;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    border: none;
    font-weight: 600;
    color: var(--primary-color);
}

.package-features li.highlight:before {
    display: none;
}

.package-logos {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.logo-badge {
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.logo-img-small {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.package-note {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.services-features-image,
.services-alt-features-image {
    text-align: center;
}

.services-features-image img,
.services-alt-features-image img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-person-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin: -25px -25px 15px -25px;
    border-bottom: 3px solid var(--primary-color);
    transition: transform 0.3s;
}

.service-card:hover .service-person-image {
    transform: scale(1.05);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
}

/* Technical Section */
.technical {
    background: var(--light-bg);
}

.technical-images {
    margin-bottom: 40px;
}

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

.technical-image-item {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.technical-image-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.technical-image-item p {
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
}

.technical-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.technical-content p {
    margin-bottom: 20px;
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* 5G Section */
.section-5g {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.section-5g .section-title,
.section-5g .section-subtitle {
    color: var(--white);
}

.section-5g .feature-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
}

.section-5g .feature-title,
.section-5g .feature-text {
    color: var(--white);
}

.section-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 20px;
}

.highlight-box {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    font-weight: 600;
}

/* Packages Tabs */
.packages-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    color: var(--text-color);
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Testimonials */
.testimonials {
    background: var(--light-bg);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
    border: 4px solid var(--primary-color);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.author-location {
    color: var(--gray);
    font-size: 14px;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: var(--white);
    border: none;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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 20px 20px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-link {
    font-size: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
}

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

/* Disclaimer */
.disclaimer {
    background: var(--light-bg);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
}

.disclaimer-content p {
    margin-bottom: 20px;
}

.disclaimer-cta {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.disclaimer-cta h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}

.disclaimer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Cities Section */
.cities {
    background: var(--light-bg);
}

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

.city-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

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

.city-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.city-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.city-card:hover .city-image {
    transform: scale(1.05);
}

.city-card:hover .city-phone-overlay {
    background: linear-gradient(to top, rgba(0, 102, 204, 1) 0%, rgba(0, 102, 204, 0.95) 50%, rgba(0, 102, 204, 0.9) 100%);
    transform: translateY(0);
    font-size: 26px;
    padding: 20px 15px;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.35);
}

.city-phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 102, 204, 0.95) 0%, rgba(0, 102, 204, 0.9) 50%, rgba(0, 102, 204, 0.85) 100%);
    color: var(--white);
    padding: 18px 15px;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    z-index: 2;
    backdrop-filter: blur(8px);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    border-top: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.25);
}

.city-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 10px;
    padding: 0 20px;
}

.city-description {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    padding: 0 20px;
    margin-bottom: 20px;
}

.city-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0 20px 25px;
    flex-wrap: wrap;
}

.city-buttons .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 18px;
    }

    .hero-person-image {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 28px;
    }

    /* ----- موبايل: هامبرغر + قائمة منزلقة ----- */
    .nav-toggle {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .header-cta {
        order: 3;
    }

    .header-cta .btn-whatsapp {
        padding: 12px 18px;
        font-size: 14px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .header-content {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        max-width: 100%;
        background: var(--white);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
        z-index: 999;
        padding: 80px 24px 24px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s;
        visibility: hidden;
    }

    body.nav-open .nav {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-top: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 16px 0;
        font-size: 17px;
        min-height: 48px;
        line-height: 1.4;
        color: var(--text-color) !important;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link:hover {
        color: var(--primary-color) !important;
    }

    .nav-overlay {
        display: block;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body.nav-open .nav-overlay {
        pointer-events: auto;
        opacity: 1;
    }

    body.nav-open {
        overflow: hidden;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .city-buttons {
        flex-direction: column;
    }

    .city-buttons .btn {
        width: 100%;
    }

    .city-phone-overlay {
        font-size: 20px;
        padding: 16px 12px;
        letter-spacing: 1px;
    }

    .city-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .price-amount {
        font-size: 32px;
    }

    .city-phone-overlay {
        font-size: 18px;
        padding: 14px 10px;
        letter-spacing: 1px;
    }

    .city-image-wrapper {
        height: 160px;
    }

    .city-name {
        font-size: 20px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 24px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .about-hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero p {
        font-size: 16px;
    }
}
