/* ==========================================================================
   YOUR HURGHADA EXCURSION - MODERN DESIGN SYSTEM (GETYOURGUIDE / VIATOR STYLE)
   Domain: yourhurghadaexcursion.com
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    /* Premium Tourism Color Palette — Warm & Inviting */
    --brand-navy: #162447;          /* Rich Midnight Blue for Headings */
    --brand-blue: #1a73e8;          /* Google-Grade Action Blue */
    --brand-blue-hover: #1557b0;
    --brand-coral: #e8513d;         /* Warm Sunset CTA — Inviting & Trustworthy */
    --brand-coral-hover: #c7382a;
    --brand-emerald: #0d9f6e;       /* Vivid Trust Green */
    --brand-gold: #f5a623;          /* Warm Golden Star Ratings */
    --brand-teal: #0891b2;          /* Secondary Accent — Sea & Adventure */
    
    /* Neutrals & Surfaces */
    --bg-page: #ffffff;
    --bg-surface: #ffffff;
    --bg-subtle: #f8f9fb;           /* Warm Off-White for alternating sections */
    --bg-card: #ffffff;
    
    /* Borders & Dividers */
    --border-color: #e2e6ec;
    --border-subtle: #eef1f5;
    
    /* Text Hierarchy — Warmer & More Readable */
    --text-heading: #1b2a4a;        /* Deep Warm Navy — Premium & Clear */
    --text-body: #404b5a;           /* Rich Warm Gray — Easy on Eyes */
    --text-muted: #6b7a8d;          /* Soft Slate — Balanced Contrast */
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows — Softer & Warmer */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.12);
    --shadow-floating: 0 20px 48px rgba(0, 0, 0, 0.15);
    
    /* Typography — Premium DM Sans + Inter Stack */
    --font-main: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arabic: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.rtl {
    font-family: var(--font-arabic);
    direction: rtl;
    text-align: right;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

button {
    cursor: pointer;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header Typography */
.section-header {
    text-align: left;
    margin-bottom: 36px;
}

body.rtl .section-header {
    text-align: right;
}

.section-header.text-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    transition: all var(--transition-fast);
    white-space: nowrap;
    text-align: center;
}

.btn-primary {
    background-color: var(--brand-coral);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 90, 54, 0.3);
}

.btn-primary:hover {
    background-color: var(--brand-coral-hover);
    box-shadow: 0 4px 14px rgba(255, 90, 54, 0.4);
    transform: translateY(-1px);
}

.btn-blue {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.btn-blue:hover {
    background-color: var(--brand-blue-hover);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: #ffffff;
    color: var(--brand-navy);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--brand-navy);
    background-color: var(--bg-subtle);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.86rem;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 1.05rem;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.badge-bestseller {
    background: #ff5a36;
    color: #ffffff;
}

.badge-vip {
    background: #0f294d;
    color: #fef08a;
}

.badge-popular {
    background: #0071eb;
    color: #ffffff;
}

.badge-eco {
    background: #e6f4ea;
    color: #137333;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fade-in {
    animation: fadeIn 0.35s ease forwards;
}
