/* ====================================
   Modern Islamic Luxury - أهل الرياض للعمرة
   Design System: Midnight & Champagne
   ==================================== */

:root {
    /* Colors - Primary Palette */
    --primary: #0f172a;
    /* Midnight Blue */
    --primary-light: #1e293b;
    /* Slate 800 */
    --primary-dark: #020617;
    /* Slate 950 */

    /* Colors - Secondary Palette */
    --secondary: #115e59;
    /* Royal Teal */
    --secondary-light: #14b8a6;
    /* Teal 500 */
    --secondary-dark: #0f766e;
    /* Teal 700 */

    /* Colors - Accent Palette */
    --accent: #d4af37;
    /* Champagne Gold */
    --accent-light: #fcd34d;
    /* Amber 300 */
    --accent-gradient: linear-gradient(135deg, #d4af37, #fcd34d);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    --gradient-luxury: linear-gradient(45deg, var(--primary), var(--secondary));

    /* Colors - Neutral Palette */
    --bg-body: #f8fafc;
    /* Slate 50 */
    --bg-surface: #ffffff;
    /* White */
    --bg-glass: rgba(255, 255, 255, 0.85);

    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #64748b;
    /* Slate 500 */
    --text-light: #94a3b8;
    /* Slate 400 */
    --text-white: #ffffff;

    --border: #e2e8f0;
    /* Slate 200 */
    --border-light: #f1f5f9;
    /* Slate 100 */

    /* Typography */
    --font-main: 'Tajawal', 'Cairo', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --container: 1280px;
    --header-height: 90px;
}

/* ====================================
   Reset & Base Styles
   ==================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    direction: rtl;
    text-align: right;
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.7;
    font-size: var(--font-size-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ====================================
   Utility Classes
   ==================================== */

.container {
    width: 90%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* ====================================
   Header Styles (Floating Island)
   ==================================== */

header {
    position: fixed;
    top: var(--spacing-md);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--spacing-md);
}

.header-inner {
    background: rgba(0, 61, 71, 0.95);
    /* Custom Dark Teal */
    backdrop-filter: blur(16px);
    border-radius: var(--radius-full);
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--container);
    margin: 0 auto;
}

.logo a {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--text-white);
    display: block;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* ====================================
   Button Styles
   ==================================== */

.btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--primary-dark);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ====================================
   Hero Section (Asymmetrical)
   ==================================== */

.hero {
    min-height: 100vh;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    /* Space for header */
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: #dee8ff73;
    border-bottom-right-radius: 100px;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    padding-left: var(--spacing-xl);
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(17, 94, 89, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    border: 1px solid rgba(17, 94, 89, 0.2);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
    font-weight: 800;
}

.hero h1 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 100%;
    height: 15px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
    transform: rotate(-2deg);
}

.hero p {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: var(--transition-slow);
}

.hero-img-wrapper:hover {
    transform: rotate(0);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: var(--bg-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.card-1 {
    bottom: 40px;
    right: -30px;
}

.card-2 {
    top: 40px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card i {
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.floating-card div h4 {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--primary);
}

.floating-card div p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    margin: 0;
}

/* ====================================
   Services Section (Cards)
   ==================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.section-header p {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

.service-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-base);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: var(--spacing-lg);
}

.card-title {
    font-size: var(--font-size-lg);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.card-price {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .card-content {
        padding: var(--spacing-md);
    }
    
    .card-title {
        font-size: var(--font-size-base);
    }
    
    .card-price {
        font-size: var(--font-size-lg);
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f2f6f6;
    border-radius: 50%;
    /* دائرة كاملة */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: #004a57;
    font-size: var(--font-size-xl);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: #004a57;
    color: #f2f6f6;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-lg);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.service-link {
    color: var(--secondary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ====================================
   Economic Umrah Section
   ==================================== */

.economic-section {
    background: #fef8f3;
    padding: var(--spacing-3xl) 0;
}

.economic-hero {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.economic-main-title {
    font-size: var(--font-size-3xl);
    color: var(--primary);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.economic-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.economic-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-2xl);
    align-items: start;
    background: white;
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
}

.economic-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.economic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.economic-details {
    padding: var(--spacing-md) 0;
}

.economic-title {
    font-size: var(--font-size-xl);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    line-height: 1.4;
}

.number-badge {
    background: var(--secondary);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 800;
    flex-shrink: 0;
}

.economic-desc {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-size: var(--font-size-base);
}

.economic-features {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.economic-features li {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--text-main);
    line-height: 1.6;
}

.economic-features li:last-child {
    margin-bottom: 0;
}

.economic-features i {
    color: #115e59;

    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.economic-features strong {
    color: var(--primary);
    font-weight: 700;
}

.economic-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-pink {
    background: #ffc0cb;
    color: #c41e3a;
    font-weight: 700;
    border: 1px solid #ffb3bd;
}

.btn-pink:hover {
    background: #ffb0be;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Design for Economic Section */
@media (max-width: 1024px) {
    .economic-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .economic-main-title {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 768px) {
    .economic-section {
        padding: var(--spacing-2xl) 0;
    }

    .economic-content {
        padding: var(--spacing-lg);
    }

    .economic-main-title {
        font-size: var(--font-size-xl);
    }

    .economic-title {
        font-size: var(--font-size-base);
    }

    .economic-actions {
        gap: var(--spacing-sm);
    }

    .economic-actions .btn {
        font-size: var(--font-size-sm);
        padding: 10px 20px;
    }
}


.service-link:hover {
    gap: 10px;
}

/* ====================================
   Footer
   ==================================== */

footer {
    background: #003d47;
    color: var(--text-light);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(17, 94, 89, 0.2), transparent 40%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.footer-brand h3 {
    color: var(--text-white);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand h3 i {
    color: var(--accent);
}

.footer-brand p {
    margin-bottom: var(--spacing-lg);
    max-width: 300px;
}

.footer-col h4 {
    color: var(--text-white);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: 700;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
    position: relative;
    z-index: 1;
}

/* ====================================
   Animations
   ==================================== */

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-content {
        padding-left: 0;
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-bg-shape {
        width: 100%;
        height: 60%;
        border-radius: 0 0 50px 50px;
        top: 0;
    }

    .hero-img-wrapper {
        max-width: 500px;
        margin: 0 auto var(--spacing-xl);
        order: 1;
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --font-size-3xl: 1.75rem;
        --font-size-4xl: 2.5rem;
    }

    /* Fix Header on Mobile */
    header {
        position: sticky;
        top: 0;
        padding: 0;
        background: var(--primary);
    }

    .header-inner {
        border-radius: 0;
        background: #003d47;
        border: none;
        padding: 15px 20px;
        backdrop-filter: none;
    }

    .nav-menu {
        display: none;
    }

    .header-actions .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Fix Hero on Mobile */
    .hero {
        padding-top: 40px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-img-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* Fix Floating Cards on Mobile - Restore Animation */
    .floating-card {
        display: flex;
        position: absolute;
        animation: float 6s ease-in-out infinite;
        z-index: 2;
        padding: 0.5rem;
        gap: 0.25rem;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        width: auto;
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.95);
        border: none;
    }

    .floating-card i {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .floating-card div h4 {
        font-size: 0.75rem;
    }

    .floating-card div p {
        font-size: 0.6rem;
    }

    .card-1 {
        bottom: -20px;
        right: 0;
        left: auto;
    }

    .card-2 {
        top: 20px;
        left: 0;
        right: auto;
    }

    .hero-image {
        display: block;
        margin-bottom: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-content-wrapper {
        padding: var(--spacing-lg);
    }

    .seo-header h2 {
        font-size: var(--font-size-xl);
    }
}

/* ====================================
   SEO Section Styles
   ==================================== */

.seo-section {
    background: var(--bg-body);
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--border);
}

.seo-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-surface);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.seo-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.seo-header h2 {
    color: var(--primary);
    font-size: var(--font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
}

.seo-header .subtitle {
    color: var(--secondary);
    font-size: var(--font-size-lg);
    font-weight: 500;
}

.seo-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: justify;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.seo-card {
    background: var(--bg-body);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.seo-card h3 {
    color: var(--primary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 10px;
}

.seo-card h3 i {
    color: var(--accent);
}

.seo-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
    font-size: var(--font-size-sm);
}

.seo-list li i {
    color: var(--secondary);
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
}

.seo-footer-text {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.seo-footer-text p {
    font-size: var(--font-size-lg);
    color: var(--primary);
    font-weight: 500;
    text-align: center;
}

/* ====================================
   Pricing Table Section
   ==================================== */

.flight-schedule-section {
    padding: var(--spacing-3xl) 0;
    background: var(--bg-body);
}

.accordion-wrapper {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.accordion-header {
    background: var(--primary);
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.accordion-header:hover {
    background: var(--primary-light);
}

.accordion-header h2 {
    color: var(--text-white);
    font-size: var(--font-size-xl);
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.accordion-header h2 i {
    color: var(--accent);
}

.toggle-icon {
    color: var(--accent);
    font-size: var(--font-size-xl);
    transition: var(--transition-base);
}

.accordion-content {
    padding: var(--spacing-xl);
    background: var(--bg-surface);
}

.table-responsive {
    overflow-x: auto;
}

.flight-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.flight-table th {
    background: var(--bg-body);
    color: var(--primary);
    font-weight: 800;
    padding: var(--spacing-md);
    text-align: right;
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.flight-table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border);
    color: var(--text-main);
    transition: var(--transition-base);
}

.flight-table tr:last-child td {
    border-bottom: none;
}

.flight-table tr:hover td {
    background: var(--bg-body);
}

.flight-table td strong {
    color: var(--secondary);
    font-size: var(--font-size-lg);
}

@media (max-width: 768px) {
    .accordion-header {
        padding: var(--spacing-md);
    }

    .accordion-header h2 {
        font-size: var(--font-size-lg);
    }

    .accordion-content {
        padding: var(--spacing-md);
    }

    .flight-table th,
    .flight-table td {
        padding: var(--spacing-sm);
        font-size: var(--font-size-sm);
    }
}

/* Table Features Icons */
.table-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.table-features div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #555;
}

.table-features i {
    color: var(--primary);
    font-size: 1rem;
}

/* ====================================
   FAQ Section
   ==================================== */

.faq-section {
    background: var(--bg-body);
    padding: var(--spacing-3xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-surface);
    transition: var(--transition-base);
}

.faq-question h3 {
    font-size: var(--font-size-lg);
    color: var(--primary);
    margin: 0;
    font-weight: 700;
}

.faq-question i {
    color: var(--secondary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question {
    background: var(--bg-body);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    display: none;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border-light);
    background: var(--bg-body);
    padding-top: var(--spacing-md);
}

.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.fixed-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.fixed-btn:hover::before {
    width: 100%;
    height: 100%;
}

.fixed-btn i {
    position: relative;
    z-index: 1;
}

.fixed-btn-phone {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    animation: pulse-phone 2s infinite;
}

.fixed-btn-phone:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(15, 118, 110, 0.4);
}

.fixed-btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: pulse-whatsapp 2s infinite;
}

.fixed-btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Pulse Animations */
@keyframes pulse-phone {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(15, 118, 110, 0.2),
            0 0 0 0 rgba(15, 118, 110, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(15, 118, 110, 0.2),
            0 0 0 15px rgba(15, 118, 110, 0);
    }
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2),
            0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2),
            0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsive Design for Fixed Buttons */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        left: 15px;
        bottom: 20px;
        gap: 12px;
    }

    .fixed-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .fixed-contact-buttons {
        left: 10px;
        bottom: 15px;
        gap: 10px;
    }

    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ====================================
   Gallery Section
   ==================================== */

.gallery-section {
    background: var(--bg-surface);
    padding: var(--spacing-3xl) 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.gallery-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
    aspect-ratio: 4/3;
}

.gallery-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: var(--font-size-3xl);
    color: var(--accent);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}
