/* ============================================
   COLOR VARIABLES - Unified Color Scheme
   ============================================ */
:root {
    /* Primary Colors - Royal Blue Theme */
    --color-primary: #0D2B45;          /* أزرق ملكي غامق - اللون الأساسي */
    --color-primary-light: #1F4E79;   /* أزرق أفتح */
    --color-accent: #D4AF37;           /* دهبي - لون التمييز */
    --color-highlight: #F4A300;        /* أورانج شمس - لون التمييز الإضافي */
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #F8F9FB;              /* خلفية فاتحة */
    --bg-light-border: #e9ecef;
    --bg-overlay: rgba(13, 43, 69, 0.7); /* Overlay أزرق غامق شفاف */
    
    /* Text Colors */
    --text-primary: #0D2B45;           /* أزرق ملكي غامق */
    --text-secondary: #333;
    --text-gray: #555;
    --text-light: #666;
    --text-white: #ffffff;
    --text-white-light: rgba(255, 255, 255, 0.95);
    --text-white-muted: rgba(255, 255, 255, 0.85);
    
    /* Border Colors */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-primary: rgba(13, 43, 69, 0.2);
    --border-accent: rgba(212, 175, 55, 0.2);
    
    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.1);
    --shadow-primary: rgba(13, 43, 69, 0.2);
    --shadow-accent: rgba(212, 175, 55, 0.3);
    --shadow-accent-light: rgba(212, 175, 55, 0.2);
    --shadow-accent-medium: rgba(212, 175, 55, 0.4);
    --shadow-accent-dark: rgba(212, 175, 55, 0.5);
    --shadow-highlight: rgba(244, 163, 0, 0.3);
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, #b8941f 100%);
    --gradient-accent-hover: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
    --gradient-text: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --gradient-hero-overlay: linear-gradient(
        135deg,
        rgba(13, 43, 69, 0.8) 0%,
        rgba(13, 43, 69, 0.6) 50%,
        rgba(13, 43, 69, 0.8) 100%
    );
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(13, 43, 69, 0.3);
}

.navbar.scrolled {
    background: var(--color-primary);
    box-shadow: 0 4px 30px rgba(13, 43, 69, 0.4);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.nav-brand {
    flex-shrink: 0;
}

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

.nav-logo-link:hover {
    opacity: 0.9;
}

.nav-logo {
    height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
}

.nav-brand h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
    white-space: nowrap;
}

.nav-brand h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-brand:hover h2::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 80%;
}

.nav-menu a:hover {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.15);
}

.nav-menu a.active {
    color: var(--color-accent);
    background: rgba(212, 175, 55, 0.2);
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    gap: 0.3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 0.5rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    min-width: 40px;
    text-align: center;
}

.lang-btn:hover {
    color: var(--text-white);
    background: rgba(212, 175, 55, 0.2);
}

.lang-btn.active {
    background: var(--gradient-accent);
    color: var(--text-primary);
    box-shadow: 0 2px 8px var(--shadow-accent);
    font-weight: 700;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    padding: 0.6rem 1.2rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
}

.phone-icon {
    font-size: 1.1rem;
}

.nav-phone a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-phone a:hover {
    color: var(--text-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('https://images.unsplash.com/photo-1539650116574-75c0c6d73a6e?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(139, 69, 19, 0.35) 30%,
        rgba(184, 134, 11, 0.25) 50%,
        rgba(139, 69, 19, 0.35) 70%,
        rgba(0, 0, 0, 0.75) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 40px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-welcome {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.hero-welcome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
    line-height: 1.05;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-white) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
}

.btn-hero-gold {
    display: inline-block;
    background: var(--gradient-accent);
    background-size: 200% 100%;
    color: var(--text-primary);
    padding: 1.3rem 4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px var(--shadow-accent-medium), 0 0 20px var(--shadow-accent-light);
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-hero-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-hero-gold::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #d4af37, #b8941f, #d4af37);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-gold:hover::before {
    left: 100%;
}

.btn-hero-gold:hover::after {
    opacity: 1;
}

.btn-hero-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px var(--shadow-accent-dark), 0 0 30px var(--shadow-accent);
    background: linear-gradient(135deg, var(--color-highlight) 0%, #d48900 100%);
    border-color: var(--color-highlight);
}

/* Company Introduction Section */
.company-intro {
    padding: 6rem 0;
    background: var(--bg-white);
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content {
    animation: fadeInUp 0.8s ease;
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.intro-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: fadeInRight 0.8s ease;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Trip Types Section */
.trip-types {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.trip-type-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.trip-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.trip-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.trip-type-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trip-type-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Company Strengths Section */
.strengths {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.strength-card {
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    background: var(--bg-white);
}

.strength-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.strength-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.strength-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--bg-white);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.cta-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    border-radius: 2px;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--shadow-accent);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-accent-dark);
    background: linear-gradient(135deg, var(--color-highlight) 0%, #d48900 100%);
}

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

.btn-cta-secondary:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-primary);
}

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

.cta-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: right;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.cta-info-item:hover {
    background: var(--bg-white);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-info-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.cta-info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
}

.cta-info-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* Modern Features Section */
.modern-features {
    background: #faf9f7;
    padding: 6rem 0;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.features-content {
    animation: fadeInUp 0.8s ease;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.features-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    stroke-width: 2.5;
}

.feature-content {
    flex: 1;
}

.feature-content .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.feature-content .feature-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-features {
    display: inline-block;
    background: var(--color-primary);
    color: var(--text-white);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.15);
    letter-spacing: 0.01em;
}

.btn-features:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.25);
}

/* Features Images */
.features-images {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.feature-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.feature-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.features-images .card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 3;
}

.features-images .card-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 120px;
    z-index: 2;
}

.features-images .card-3 {
    width: 280px;
    height: 350px;
    top: 160px;
    right: 240px;
    z-index: 1;
}

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

.btn-primary {
    display: inline-block;
    background: var(--bg-white);
    color: var(--color-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-primary);
    background: var(--gradient-primary);
    color: var(--text-white);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Destinations Section */
.destinations {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-highlight);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-content {
    padding: 1rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.7rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.card-duration {
    font-size: 0.95rem;
    color: var(--text-light);
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-accent);
}

.btn-card {
    width: 100%;
    padding: 0.7rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-primary);
    background: var(--color-primary-light);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--bg-white);
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.gallery-content {
    animation: fadeInUp 0.8s ease;
}

.gallery-content-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.gallery-content-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.gallery-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

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

.gallery-features li::before {
    content: "✓ ";
    color: var(--color-accent);
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Gallery Images */
.gallery-images {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.gallery-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.gallery-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.gallery-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 3;
}

.gallery-card-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 120px;
    z-index: 2;
}

.gallery-card-3 {
    width: 280px;
    height: 350px;
    top: 160px;
    right: 240px;
    z-index: 1;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content-text {
    animation: fadeInUp 0.8s ease;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.about-feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.about-feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* About Images */
.about-images {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.about-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 3;
}

.about-card-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 120px;
    z-index: 2;
}

.about-card-3 {
    width: 280px;
    height: 350px;
    top: 160px;
    right: 240px;
    z-index: 1;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.reviews .section-title {
    color: var(--text-primary);
    -webkit-text-fill-color: #1a1a1a;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews .section-subtitle {
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.review-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.review-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.review-card:hover .review-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.review-info {
    flex: 1;
}

.review-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.review-location {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-stars {
    display: flex;
    gap: 0.15rem;
}

.review-stars .star {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.2s ease;
}

.review-stars .star.filled {
    color: var(--color-accent);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.2));
}

.review-text {
    line-height: 1.9;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
    text-align: left;
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    position: relative;
    z-index: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal-content {
    background: var(--bg-white);
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.close {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.booking-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

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

.footer-brand .footer-logo-link {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-logo {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--text-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.3rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 968px) {
    .navbar .container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .nav-brand h2 {
        font-size: 1.5rem;
    }
    
    .nav-logo {
        height: 44px;
        max-width: 160px;
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        max-width: 400px;
        text-align: right;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        gap: 0.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        border-left: 1px solid rgba(212, 175, 55, 0.1);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu a {
        color: #333;
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: right;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--color-accent);
    }
    
    .nav-menu a.active {
        background: rgba(212, 175, 55, 0.15);
        border-right: 3px solid #d4af37;
    }

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

    .nav-right {
        gap: 0.8rem;
    }

    .language-selector {
        padding: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger span {
        background: var(--color-primary);
        width: 28px;
        height: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--color-accent);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--color-accent);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-welcome {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .btn-hero-gold {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-images {
        height: 500px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    .features-images .card-1,
    .features-images .card-2,
    .features-images .card-3 {
        width: 220px;
        height: 280px;
        position: absolute;
    }

    .features-images .card-1 {
        top: 0;
        right: 50%;
        transform: translateX(50%) translateX(-80px);
        z-index: 3;
    }

    .features-images .card-2 {
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .features-images .card-3 {
        top: 120px;
        right: 50%;
        transform: translateX(50%) translateX(80px);
        z-index: 1;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-image {
        order: -1;
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trip-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .strengths-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .cta-info {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-images {
        height: 500px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3 {
        width: 220px;
        height: 280px;
        position: absolute;
    }

    .gallery-card-1 {
        top: 0;
        right: 50%;
        transform: translateX(50%) translateX(-80px);
        z-index: 3;
    }

    .gallery-card-2 {
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .gallery-card-3 {
        top: 120px;
        right: 50%;
        transform: translateX(50%) translateX(80px);
        z-index: 1;
    }

    .gallery-content-title {
        font-size: 2rem;
    }

    .gallery-content-description {
        font-size: 1rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .trip-types-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .about-images {
        height: 500px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    .about-card-1,
    .about-card-2,
    .about-card-3 {
        width: 220px;
        height: 280px;
        position: absolute;
    }

    .about-card-1 {
        top: 0;
        right: 50%;
        transform: translateX(50%) translateX(-80px);
        z-index: 3;
    }

    .about-card-2 {
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .about-card-3 {
        top: 120px;
        right: 50%;
        transform: translateX(50%) translateX(80px);
        z-index: 1;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-description {
        font-size: 1rem;
    }

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

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-image {
        order: -1;
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trip-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .strengths-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .cta-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-welcome {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .btn-hero-gold {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .features-list {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .features-images {
        height: 400px;
    }

    .features-images .card-1,
    .features-images .card-2,
    .features-images .card-3 {
        width: 180px;
        height: 230px;
    }

    .features-images .card-1 {
        transform: translateX(50%) translateX(-60px);
    }

    .features-images .card-2 {
        top: 50px;
        transform: translateX(50%);
    }

    .features-images .card-3 {
        top: 100px;
        transform: translateX(50%) translateX(60px);
    }

    .btn-features {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .about-images {
        height: 400px;
    }

    .about-card-1,
    .about-card-2,
    .about-card-3 {
        width: 180px;
        height: 230px;
    }

    .about-card-1 {
        transform: translateX(50%) translateX(-60px);
    }

    .about-card-2 {
        top: 50px;
        transform: translateX(50%);
    }

    .about-card-3 {
        top: 100px;
        transform: translateX(50%) translateX(60px);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .gallery-content-title {
        font-size: 1.8rem;
    }

    .gallery-content-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .gallery-images {
        height: 400px;
    }

    .gallery-card-1,
    .gallery-card-2,
    .gallery-card-3 {
        width: 180px;
        height: 230px;
    }

    .gallery-card-1 {
        transform: translateX(50%) translateX(-60px);
    }

    .gallery-card-2 {
        top: 50px;
        transform: translateX(50%);
    }

    .gallery-card-3 {
        top: 100px;
        transform: translateX(50%) translateX(60px);
    }

    .modal-content {
        padding: 1.5rem;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .features-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .features-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .features-list {
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
    }

    .feature-content .feature-title {
        font-size: 1.1rem;
    }

    .feature-content .feature-text {
        font-size: 0.85rem;
    }

    .features-images {
        height: 350px;
    }

    .features-images .card-1,
    .features-images .card-2,
    .features-images .card-3 {
        width: 150px;
        height: 190px;
    }

    .features-images .card-1 {
        transform: translateX(50%) translateX(-50px);
    }

    .features-images .card-2 {
        top: 40px;
        transform: translateX(50%);
    }

    .features-images .card-3 {
        top: 80px;
        transform: translateX(50%) translateX(50px);
    }

    .btn-features {
        padding: 0.85rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    .cards-grid {
        gap: 1.5rem;
    }

    .card-content {
        padding: 1.2rem;
    }
}

/* ============================================
   TRIPS PAGE STYLES
   ============================================ */

/* Trips Page Styles */
.trips-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.trips-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trips-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.trips-category {
    padding: 4rem 0;
    background: var(--bg-white);
}

.trips-category:nth-child(even) {
    background: var(--bg-light);
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.trip-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.trip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.trip-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

.trip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.trip-content {
    padding: 2rem;
}

.trip-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trip-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trip-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.trip-duration {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.trip-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.btn-trip {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-trip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
}

/* Trip Detail Page Styles */
.trip-detail-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    margin-top: 70px;
}

.trip-detail-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trip-detail-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trip-detail-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.trip-detail-main {
    padding: 4rem 0;
    background: var(--bg-white);
}

.trip-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.trip-detail-left {
    animation: fadeInUp 0.6s ease;
}

.trip-detail-right {
    animation: fadeInRight 0.6s ease;
}

.trip-gallery {
    margin-bottom: 3rem;
}

.trip-main-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trip-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trip-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.trip-thumbnail {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.trip-thumbnail:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

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

.trip-description {
    margin-bottom: 3rem;
}

.trip-description h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.trip-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.trip-includes {
    margin-bottom: 3rem;
}

.trip-includes h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.includes-list {
    list-style: none;
    padding: 0;
}

.includes-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
}

.includes-list li:hover {
    background: #f0f0f0;
    transform: translateX(-5px);
}

.includes-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.trip-itinerary {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.trip-itinerary h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.itinerary-timeline {
    position: relative;
    padding-right: 2rem;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4af37 0%, #b8941f 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-right: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--text-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.timeline-day {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.trip-video {
    margin-bottom: 3rem;
}

.trip-video h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.trip-important-info {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
}

.trip-important-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.important-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.3));
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.trip-booking-card {
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.booking-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.price-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: #999;
}

.booking-details {
    margin-bottom: 2rem;
}

.booking-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.booking-detail-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.booking-detail-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.btn-book-now {
    width: 100%;
    padding: 1.2rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    margin-bottom: 1rem;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
}

.btn-contact {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid #d4af37;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-contact:hover {
    background: var(--gradient-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Responsive for Trips Pages */
@media (max-width: 968px) {
    .trips-hero-title {
        font-size: 2.5rem;
    }

    .trips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

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

    .trip-booking-card {
        position: relative;
        top: 0;
    }

    .trip-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .itinerary-timeline {
        padding-right: 1.5rem;
    }

    .timeline-item {
        padding-right: 2rem;
    }

    .important-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .trips-hero-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 2rem;
    }

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

    .trip-detail-title {
        font-size: 2rem;
    }

    .trip-main-image {
        height: 300px;
    }
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

.booking-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.booking-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.booking-steps {
    padding: 4rem 0;
    background: var(--bg-white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.step-item.active {
    border-color: #d4af37;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.booking-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #d4af37;
}

.checkbox-label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.btn-submit-booking {
    width: 100%;
    padding: 1.3rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    margin-top: 2rem;
}

.btn-submit-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
}

.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.help-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h3,
.help-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-desc {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-white);
}

.contact-method.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-white);
    border-color: #25D366;
}

.contact-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-info {
    flex: 1;
}

.contact-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.contact-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-method:hover .contact-info strong,
.contact-method:hover .contact-info span {
    color: inherit;
}

.working-hours {
    padding-top: 2rem;
    border-top: 1px solid #f0f0f0;
}

.working-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.working-hours p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.help-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-help {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    text-align: center;
}

.btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, #c9a42f 100%);
}

.success-modal {
    text-align: center;
    max-width: 500px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.success-modal h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.success-modal p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-success {
    padding: 1rem 2.5rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

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

.btn-success-secondary:hover {
    background: var(--gradient-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Responsive for Booking Page */
@media (max-width: 968px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-form-container {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-hero-title {
        font-size: 2.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-item {
        padding: 1.5rem;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .btn-success,
    .btn-success-secondary {
        width: 100%;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-overview {
    padding: 6rem 0;
    background: var(--bg-white);
}

.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content {
    animation: fadeInUp 0.8s ease;
}

.section-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.overview-images {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.overview-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.overview-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.overview-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overview-images .overview-card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 3;
}

.overview-images .overview-card-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 120px;
    z-index: 2;
}

.overview-images .overview-card-3 {
    width: 280px;
    height: 350px;
    top: 160px;
    right: 240px;
    z-index: 1;
}

.about-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

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

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.about-experience {
    padding: 6rem 0;
    background: var(--bg-white);
}

.experience-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.experience-item {
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    text-align: center;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.experience-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.experience-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.experience-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    margin-top: 4rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.team-member h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-areas {
    padding: 6rem 0;
    background: var(--bg-light);
}

.areas-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

/* Areas Grid - Modern Card Design */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.area-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(13, 43, 69, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.area-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(13, 43, 69, 0.15);
}

.area-card:hover::before {
    transform: scaleX(1);
}

.area-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--gradient-primary);
}

.area-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 43, 69, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.area-card:hover .area-image::after {
    opacity: 1;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover .area-image img {
    transform: scale(1.15);
}

.area-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.area-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.area-content > p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.area-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.area-features li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-gray);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.area-features li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.area-features li:hover {
    background: rgba(13, 43, 69, 0.05);
    border-left-color: var(--color-accent);
    transform: translateX(5px);
    color: var(--text-primary);
}

/* Responsive Styles for Areas Grid */
@media (max-width: 968px) {
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .area-image {
        height: 220px;
    }
    
    .area-content {
        padding: 1.5rem;
    }
    
    .area-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .area-image {
        height: 200px;
    }
    
    .area-content h3 {
        font-size: 1.5rem;
    }
    
    .areas-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

.area-section {
    margin-bottom: 6rem;
}

.area-section:last-child {
    margin-bottom: 0;
}

.area-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.area-wrapper.reverse {
    direction: rtl;
}

.area-wrapper.reverse .area-content-text {
    direction: rtl;
}

.area-wrapper.reverse .area-images {
    direction: ltr;
}

.area-content-text {
    animation: fadeInUp 0.8s ease;
}

.area-content-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-content-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.area-features-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.area-features-list li {
    padding: 0.8rem 1.2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-light);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.area-features-list li:hover {
    background: var(--bg-white);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(-5px);
}

.area-features-list li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    margin-left: 0.5rem;
}

.area-images {
    position: relative;
    height: 600px;
    animation: fadeInRight 0.8s ease;
}

.area-image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.area-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.area-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.area-images .area-card-1 {
    width: 280px;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 3;
}

.area-images .area-card-2 {
    width: 280px;
    height: 350px;
    top: 80px;
    right: 120px;
    z-index: 2;
}

.area-images .area-card-3 {
    width: 280px;
    height: 350px;
    top: 160px;
    right: 240px;
    z-index: 1;
}

.about-why {
    padding: 6rem 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.why-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.why-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
}

.about-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.about-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for About Page */
@media (max-width: 968px) {
    .overview-wrapper {
        grid-template-columns: 1fr;
    }

    .overview-image {
        order: -1;
    }

    .section-main-title {
        font-size: 2.2rem;
    }

    .area-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .area-images {
        height: 500px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    .area-images .area-card-1,
    .area-images .area-card-2,
    .area-images .area-card-3 {
        width: 220px;
        height: 280px;
        position: absolute;
    }

    .area-images .area-card-1 {
        top: 0;
        right: 50%;
        transform: translateX(50%) translateX(-80px);
        z-index: 3;
    }

    .area-images .area-card-2 {
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .area-images .area-card-3 {
        top: 120px;
        right: 50%;
        transform: translateX(50%) translateX(80px);
        z-index: 1;
    }

    .overview-images {
        height: 500px;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        position: relative;
    }

    .overview-images .overview-card-1,
    .overview-images .overview-card-2,
    .overview-images .overview-card-3 {
        width: 220px;
        height: 280px;
        position: absolute;
    }

    .overview-images .overview-card-1 {
        top: 0;
        right: 50%;
        transform: translateX(50%) translateX(-80px);
        z-index: 3;
    }

    .overview-images .overview-card-2 {
        top: 60px;
        right: 50%;
        transform: translateX(50%);
        z-index: 2;
    }

    .overview-images .overview-card-3 {
        top: 120px;
        right: 50%;
        transform: translateX(50%) translateX(80px);
        z-index: 1;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .section-main-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-wrapper {
        grid-template-columns: 1fr;
    }

    .area-images {
        height: 400px;
    }

    .area-images .area-card-1,
    .area-images .area-card-2,
    .area-images .area-card-3 {
        width: 180px;
        height: 230px;
    }

    .area-images .area-card-1 {
        transform: translateX(50%) translateX(-60px);
    }

    .area-images .area-card-2 {
        top: 50px;
        transform: translateX(50%);
    }

    .area-images .area-card-3 {
        top: 100px;
        transform: translateX(50%) translateX(60px);
    }

    .overview-images {
        height: 400px;
    }

    .overview-images .overview-card-1,
    .overview-images .overview-card-2,
    .overview-images .overview-card-3 {
        width: 180px;
        height: 230px;
    }

    .overview-images .overview-card-1 {
        transform: translateX(50%) translateX(-60px);
    }

    .overview-images .overview-card-2 {
        top: 50px;
        transform: translateX(50%);
    }

    .overview-images .overview-card-3 {
        top: 100px;
        transform: translateX(50%) translateX(60px);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta h2 {
        font-size: 2rem;
    }

    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

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

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

/* ============================================
   REVIEWS PAGE STYLES
   ============================================ */

.reviews-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.reviews-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.review-stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    min-width: 200px;
    transition: all 0.3s ease;
}

.review-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.stat-stars {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.reviews-featured {
    padding: 6rem 0;
    background: var(--bg-white);
}

.featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.featured-review-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.featured-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #b8941f);
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-review-card:hover::before {
    opacity: 1;
}

.featured-review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-white);
}

.reviews-all {
    padding: 6rem 0;
    background: var(--bg-light);
}

.reviews-trust {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-white);
}

.trust-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.reviews-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
}

.reviews-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reviews-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.reviews-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for Reviews Page */
@media (max-width: 968px) {
    .reviews-stats {
        gap: 2rem;
    }

    .featured-reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-hero-title {
        font-size: 2.5rem;
    }

    .reviews-stats {
        flex-direction: column;
        align-items: center;
    }

    .review-stat-item {
        width: 100%;
        max-width: 300px;
    }

    .featured-reviews-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-cta h2 {
        font-size: 2rem;
    }

    .reviews-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   FAQ PAGE STYLES
   ============================================ */

.faq-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.faq-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.faq-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.8rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.faq-policy {
    padding: 6rem 0;
    background: var(--bg-light);
}

.policy-section {
    margin-bottom: 4rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-subtitle {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-content {
    display: grid;
    gap: 1.5rem;
}

.policy-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.policy-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.policy-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(212, 175, 55, 0.2));
}

.policy-text {
    flex: 1;
}

.policy-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.policy-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.policy-note {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-top: 3rem;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.policy-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.faq-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
}

.faq-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.faq-cta .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for FAQ Page */
@media (max-width: 768px) {
    .faq-hero-title {
        font-size: 2.5rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .policy-item {
        flex-direction: column;
        text-align: center;
    }

    .policy-icon {
        margin: 0 auto;
    }

    .policy-note {
        flex-direction: column;
        text-align: center;
    }

    .note-icon {
        margin: 0 auto;
    }

    .faq-cta h2 {
        font-size: 2rem;
    }

    .faq-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.blog-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.blog-posts {
    padding: 6rem 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.blog-date::before {
    content: '📅';
    margin-left: 0.3rem;
}

.blog-author::before {
    content: '✍️';
    margin-left: 0.3rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--color-accent);
}

.blog-excerpt {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more:hover {
    color: #b8941f;
    transform: translateX(-5px);
}

.blog-load-more {
    text-align: center;
    margin-top: 3rem;
}

.blog-newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
}

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

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.newsletter-form button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    white-space: nowrap;
}

/* Responsive for Blog Page */
@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }

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

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

/* ============================================
   BLOG ARTICLE DETAIL PAGE STYLES
   ============================================ */

.article-hero {
    position: relative;
    margin-top: 70px;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.article-hero-content {
    position: relative;
    z-index: 3;
    color: var(--text-white);
    padding: 3rem 0;
    width: 100%;
}

.article-meta-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.article-category {
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.article-date {
    font-size: 1rem;
    opacity: 0.9;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.article-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.article-author-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.article-author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.article-read-time {
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-content-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main-content {
    flex: 1;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.article-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 900;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-cta-box {
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta-box h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.article-cta-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin: 2rem 0;
}

.tag-label {
    font-weight: 700;
    color: var(--text-primary);
}

.article-tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: #d4af37;
    color: var(--text-primary);
    border-color: #d4af37;
    transform: translateY(-2px);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.share-label {
    font-weight: 700;
    color: var(--text-primary);
}

.share-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid;
}

.share-btn.facebook {
    background: #1877f2;
    color: var(--text-white);
    border-color: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
    color: var(--text-white);
    border-color: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
    color: var(--text-white);
    border-color: #25d366;
}

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

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-article {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.related-article:hover {
    background: #faf9f7;
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(-5px);
}

.related-article img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.related-article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-article-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-article-date {
    font-size: 0.85rem;
    color: #999;
}

.sidebar-newsletter {
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.sidebar-newsletter-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.8rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.sidebar-newsletter-form button {
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 700;
}

/* Responsive for Article Page */
@media (max-width: 968px) {
    .article-content-wrapper {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: -1;
    }

    .article-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .article-hero {
        height: 60vh;
        min-height: 400px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-meta-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.5rem;
    }

    .article-tags,
    .article-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf9f7 0%, #ffffff 100%);
    text-align: center;
    margin-top: 70px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.contact-info-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    background: var(--bg-white);
}

.contact-icon-wrapper {
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
    display: inline-block;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-phone-link,
.contact-email-link,
.contact-whatsapp-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 0.3rem 0;
}

.contact-phone-link:hover,
.contact-email-link:hover,
.contact-whatsapp-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

.contact-hours {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-link {
    color: var(--color-accent);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-link:hover {
    color: #b8941f;
    transform: translateX(-5px);
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.form-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

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

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

.contact-map-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.contact-hours-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

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

.hours-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.hours-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.3));
}

.hours-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hours-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    white-space: pre-line;
}

/* Responsive for Contact Page */
@media (max-width: 968px) {
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

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

    .form-content {
        padding: 2rem;
    }

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

    .map-wrapper iframe {
        height: 350px;
    }
}
