/* ==========================================================================
   HAYA PROMOTIONS - MAIN STYLESHEET
   Brand Colors: Trusted Blue Visual Identity (#061426, #081d38, #0b4db8, #1677ff, #4cc9f0)
   Typography: Sora (Headings), Inter (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Sora:wght@400;600;700;800&display=swap');

:root {
    --primary-navy: #070d19;
    --secondary-navy: #0e172a;
    --haya-magenta: #e11d48;
    --haya-magenta-hover: #f43f5e;
    --haya-cyan: #06b6d4;
    --haya-cyan-hover: #38bdf8;
    --haya-orange: #f97316;
    --haya-gold: #f59e0b;
    --haya-teal: #0d9488;

    --trusted-blue: #e11d48;
    --electric-blue: #06b6d4;
    --cyan-accent: #06b6d4;
    --ice-blue: #e0f2fe;
    --soft-white: #f8fafc;
    --pure-white: #ffffff;
    --dark-text: #0f172a;
    --body-text: #94a3b8;
    --muted-text: #64748b;
    --dark-card: #0f1a2e;
    --border-light: rgba(6, 182, 212, 0.22);
    --border-magenta: rgba(225, 29, 72, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-card: rgba(14, 23, 42, 0.85);
    --shadow-glow: 0 10px 30px rgba(225, 29, 72, 0.35);
    --shadow-cyan: 0 10px 30px rgba(6, 182, 212, 0.3);
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.5);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-navy);
    color: #e2e8f0;
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--pure-white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, var(--haya-cyan) 45%, var(--haya-magenta) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-haya {
    background: linear-gradient(135deg, var(--haya-magenta) 0%, var(--haya-orange) 50%, var(--haya-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-haya-magenta { color: var(--haya-magenta) !important; }
.text-haya-cyan { color: var(--haya-cyan) !important; }
.text-haya-orange { color: var(--haya-orange) !important; }
.text-cyan { color: var(--haya-cyan); }
.text-electric { color: var(--haya-magenta); }
.text-muted-custom { color: var(--muted-text); }
.bg-navy-dark { background-color: var(--primary-navy); }
.bg-navy-secondary { background-color: var(--secondary-navy); }
.bg-card-dark { background-color: var(--dark-card); }

/* Logo Brand Image Component */
.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(225, 29, 72, 0.25));
    transition: var(--transition);
}

.brand-logo-img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 4px 14px rgba(6, 182, 212, 0.4));
}

.navbar-brand-logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--pure-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Responsive Typography with clamp */
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1.08;
    font-weight: 800;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.15;
    font-weight: 700;
}

.sub-title {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 600;
}

/* Custom Cursor */
.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--haya-cyan);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease-out;
}

.custom-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(225, 29, 72, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, transform 0.15s ease-out;
}

.custom-cursor-ring.active {
    width: 56px;
    height: 56px;
    border-color: var(--haya-cyan);
    background-color: rgba(6, 182, 212, 0.1);
}

@media (max-width: 991px), (prefers-reduced-motion: reduce) {
    .custom-cursor-dot, .custom-cursor-ring { display: none !important; }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-navy);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.loader-line {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-line-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--haya-magenta), var(--haya-orange), var(--haya-cyan));
    transition: width 0.3s ease;
}

/* Buttons */
.btn-haya-primary {
    background: linear-gradient(135deg, var(--haya-magenta) 0%, var(--haya-orange) 100%);
    color: var(--pure-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-glow);
    cursor: pointer;
}

.btn-haya-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(225, 29, 72, 0.5);
    color: var(--pure-white);
    border-color: var(--haya-cyan);
}

.btn-haya-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--pure-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-haya-secondary:hover {
    background: rgba(76, 201, 240, 0.12);
    color: var(--cyan-accent);
    border-color: var(--cyan-accent);
    transform: translateY(-3px);
}

/* Header & Navigation */
.navbar-haya {
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
    z-index: 1030;
}

.navbar-haya.scrolled {
    padding: 12px 0;
    background: rgba(6, 20, 38, 0.92) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pure-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand-logo span {
    color: var(--cyan-accent);
}

.nav-link-haya {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    border-radius: 6px;
}

.nav-link-haya:hover, .nav-link-haya.active {
    color: var(--cyan-accent) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Services Dropdown */
.dropdown-menu-haya {
    background: rgba(8, 29, 56, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    min-width: 320px;
    margin-top: 12px !important;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item-haya {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-item-haya:hover {
    background: rgba(76, 201, 240, 0.1);
    transform: translateX(4px);
}

.dropdown-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(22, 119, 255, 0.15);
    color: var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-item-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-bottom: 2px;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--muted-text);
    line-height: 1.3;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    padding: 160px 0 100px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(76, 201, 240, 0.15), transparent 45%),
                radial-gradient(circle at 10% 80%, rgba(11, 77, 184, 0.25), transparent 50%),
                var(--primary-navy);
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(76, 201, 240, 0.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(76, 201, 240, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.eyebrow-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(76, 201, 240, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cyan-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Floating Hero Cards Visual */
.hero-visual-wrapper {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(13, 32, 56, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.floating-card:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(22, 119, 255, 0.3);
}

.card-pub { top: 5%; left: 0; width: 250px; }
.card-podcast { top: 18%; right: 0; width: 260px; }
.card-paid { bottom: 10%; left: 5%; width: 270px; }
.card-content { bottom: 5%; right: 5%; width: 260px; }
.card-center-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.25), rgba(11, 77, 184, 0.4));
    border: 2px solid var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pure-white);
    box-shadow: 0 0 50px rgba(76, 201, 240, 0.4);
}

/* Glassmorphism Cards */
.haya-card {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.haya-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyan-accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.haya-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-light);
    box-shadow: var(--shadow-card);
}

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

.card-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 77, 184, 0.3), rgba(76, 201, 240, 0.15));
    border: 1px solid var(--border-light);
    color: var(--cyan-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 0;
}

.feature-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li i {
    color: var(--cyan-accent);
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cyan-accent);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

/* Continuous Ticker */
.ticker-wrapper {
    background: rgba(8, 29, 56, 0.8);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 24px 0;
    overflow: hidden;
}

.ticker-item {
    padding: 0 35px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--soft-white);
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.ticker-item i {
    color: var(--cyan-accent);
    font-size: 0.85rem;
}

/* Story Visual Process Flow */
.process-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 40px;
}

.process-step-card {
    background: rgba(13, 32, 56, 0.7);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.process-step-card:hover {
    border-color: var(--cyan-accent);
    transform: translateY(-5px);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--trusted-blue);
    color: var(--pure-white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 2px solid var(--cyan-accent);
}

/* Timeline Horizontal / Vertical */
.timeline-container {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--border-light);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--trusted-blue), var(--cyan-accent));
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.5s ease;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.timeline-node {
    background: var(--dark-card);
    border: 2px solid var(--cyan-accent);
    border-radius: 16px;
    padding: 20px;
    width: 18%;
    text-align: center;
    box-shadow: var(--shadow-card);
}

/* Ecosystem Visual */
.ecosystem-container {
    position: relative;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-idea-card {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--trusted-blue), var(--electric-blue));
    border: 4px solid var(--cyan-accent);
    box-shadow: 0 0 50px rgba(76, 201, 240, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    z-index: 3;
    padding: 10px;
}

.ecosystem-node {
    position: absolute;
    background: var(--dark-card);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--soft-white);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.ecosystem-node:hover {
    border-color: var(--cyan-accent);
    color: var(--cyan-accent);
    transform: scale(1.08);
}

/* Accordion FAQs */
.accordion-haya .accordion-item {
    background: var(--dark-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-haya .accordion-button {
    background: transparent;
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 22px 28px;
    box-shadow: none;
}

.accordion-haya .accordion-button:not(.collapsed) {
    color: var(--cyan-accent);
    background: rgba(76, 201, 240, 0.05);
}

.accordion-haya .accordion-button::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(170deg);
}

.accordion-haya .accordion-body {
    color: #cbd5e1;
    padding: 0 28px 24px;
    line-height: 1.7;
}

/* Modal Styling */
.modal-content-haya {
    background: var(--secondary-navy);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    color: var(--pure-white);
    padding: 20px;
}

.modal-header-haya {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
}

.btn-close-white-custom {
    filter: invert(1);
}

/* Form Controls */
.form-control-haya, .form-select-haya {
    background: rgba(6, 20, 38, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--pure-white);
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control-haya:focus, .form-select-haya:focus {
    background: rgba(6, 20, 38, 0.95);
    border-color: var(--cyan-accent);
    color: var(--pure-white);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.25);
}

.form-label-haya {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.form-error-msg {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.form-group.has-error .form-control-haya {
    border-color: #ff6b6b;
}

.form-group.has-error .form-error-msg {
    display: block;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 440px;
    background: rgba(8, 29, 56, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-card);
    z-index: 9990;
    transition: var(--transition);
    transform: translateY(150%);
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

/* Exit Intent & Mobile Scroll Popups */
.popup-box-haya {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--secondary-navy);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 36px;
    max-width: 520px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    z-index: 9995;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-box-haya.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 20, 38, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9994;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Audio Waveform Animation Bars */
.waveform-box {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 30px;
}

.waveform-bar {
    width: 4px;
    background: var(--cyan-accent);
    border-radius: 2px;
    animation: wavePulse 1.2s ease-in-out infinite alternate;
}

@keyframes wavePulse {
    0% { height: 6px; }
    100% { height: 28px; }
}

/* Global Footer */
.footer-haya {
    background: #030a14;
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    color: var(--muted-text);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pure-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--cyan-accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    padding-top: 24px;
    font-size: 0.85rem;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--pure-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    margin-right: 8px;
}

.social-icon-btn:hover {
    background: var(--trusted-blue);
    color: var(--pure-white);
    border-color: var(--cyan-accent);
    transform: translateY(-3px);
}

/* Compliance Responsible Use Box */
.compliance-box {
    background: rgba(11, 77, 184, 0.1);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--cyan-accent);
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
}

/* Page Hero Headers */
.page-hero {
    padding: 150px 0 80px;
    background: radial-gradient(circle at 50% 0%, rgba(76, 201, 240, 0.18), transparent 50%),
                var(--primary-navy);
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}

/* Breadcrumbs */
.breadcrumb-haya {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.breadcrumb-haya a {
    color: var(--muted-text);
    text-decoration: none;
}

.breadcrumb-haya a:hover {
    color: var(--cyan-accent);
}

.breadcrumb-haya span {
    color: var(--cyan-accent);
}

/* Slick Custom Arrows */
.slick-prev-custom, .slick-next-custom {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-card);
    border: 1px solid var(--border-light);
    color: var(--pure-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.slick-prev-custom:hover, .slick-next-custom:hover {
    background: var(--trusted-blue);
    color: var(--pure-white);
    border-color: var(--cyan-accent);
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 10px;
    background: var(--haya-magenta);
    color: #fff;
    padding: 8px 16px;
    z-index: 10001;
    transition: top 0.2s ease;
    border-radius: 4px;
}

.skip-link:focus {
    top: 10px;
}

/* Background Image Overlay for Hero Sections */
.hero-wrapper {
    position: relative;
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.82) 0%, rgba(7, 13, 25, 0.95) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
    overflow: hidden;
}

.page-hero-bg {
    position: relative;
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.85) 0%, rgba(14, 23, 42, 0.98) 100%),
                url('../images/hero-bg.jpg') center/cover no-repeat;
}

/* Blog Component Styles */
.blog-card {
    background: var(--glass-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--haya-magenta);
    box-shadow: 0 16px 36px rgba(225, 29, 72, 0.25);
}

.blog-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(7, 13, 25, 0.85);
    border: 1px solid var(--haya-cyan);
    color: var(--haya-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--muted-text);
    margin-bottom: 12px;
}

.blog-meta i {
    color: var(--haya-magenta);
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--pure-white);
}

.blog-card-excerpt {
    color: var(--body-text);
    font-size: 0.92rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}

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

.blog-author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--haya-magenta), var(--haya-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

/* Category Pills & Search */
.blog-filter-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--body-text);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.blog-filter-pill:hover, .blog-filter-pill.active {
    background: linear-gradient(135deg, var(--haya-magenta) 0%, var(--haya-orange) 100%);
    border-color: transparent;
    color: var(--pure-white);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
}

.blog-search-box {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.blog-search-input {
    background: rgba(14, 23, 42, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--pure-white);
    padding: 14px 24px 14px 50px;
    width: 100%;
    font-size: 0.95rem;
    transition: var(--transition);
}

.blog-search-input:focus {
    outline: none;
    border-color: var(--haya-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    background: rgba(14, 23, 42, 1);
    color: var(--pure-white);
}

.blog-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--haya-cyan);
    font-size: 1.1rem;
}

/* Modal Article Reader */
.modal-article-header {
    background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-navy) 100%);
    border-bottom: 1px solid var(--border-light);
}

.modal-article-body {
    background: var(--primary-navy);
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
}

.modal-article-body h3 {
    color: var(--pure-white);
    margin: 28px 0 16px;
}

.modal-article-body blockquote {
    border-left: 4px solid var(--haya-magenta);
    background: rgba(225, 29, 72, 0.08);
    padding: 18px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
    font-style: italic;
}

/* Catalog Component Styles */
.catalog-package-card {
    background: var(--glass-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-package-card.featured {
    border: 2px solid var(--haya-magenta);
    box-shadow: 0 20px 45px rgba(225, 29, 72, 0.3);
    transform: scale(1.02);
}

.catalog-badge-popular {
    position: absolute;
    top: -14px;
    right: 28px;
    background: linear-gradient(135deg, var(--haya-magenta), var(--haya-orange));
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.catalog-price-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.catalog-price-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--haya-cyan);
    margin-bottom: 16px;
}

.catalog-price-val span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--muted-text);
}

.catalog-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
    flex-grow: 1;
}

.catalog-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.catalog-feature-list li i {
    color: var(--haya-cyan);
    font-size: 1.1rem;
    margin-top: 2px;
}

.catalog-matrix-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark-card);
}

.catalog-matrix-table th {
    background: var(--secondary-navy);
    padding: 18px 20px;
    color: var(--pure-white);
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.catalog-matrix-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: #cbd5e1;
}

.catalog-matrix-table tr:last-child td {
    border-bottom: none;
}

.quote-estimator-card {
    background: linear-gradient(135deg, rgba(14, 23, 42, 0.95) 0%, rgba(7, 13, 25, 0.95) 100%);
    border: 1px solid var(--haya-cyan);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-cyan);
}

.estimator-option-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    text-align: left;
}

.estimator-option-btn:hover, .estimator-option-btn.active {
    background: rgba(6, 182, 212, 0.12);
    border-color: var(--haya-cyan);
    color: var(--pure-white);
}

.skip-link:focus {
    top: 10px;
}
