/* ============================================================
   GANIK TRAVELS & TOURS — Luxe Editorial Aesthetic
   Fonts: Playfair Display (display) + DM Sans (body)
   Palette: Midnight Navy / Emerald Green / Warm Ivory
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Core Palette */
    --navy:          #0B1D3A;
    --navy-deep:     #061225;
    --navy-light:    #142d54;
    --green:         #059669;
    --green-light:   #34D399;
    --green-pale:    #D1FAE5;
    --ivory:         #FAF7F0;
    --ivory-warm:    #F3EDE0;
    --cream:         #FFFDF7;
    --emerald:       #1A7A5C;
    --emerald-light: #23a87b;
    --terracotta:    #C4623A;
    --white:         #FFFFFF;
    --black:         #111111;
    --gray-100:      #F8F6F3;
    --gray-200:      #EDE9E3;
    --gray-300:      #D6D0C6;
    --gray-400:      #B8B0A4;
    --gray-500:      #8A8279;
    --gray-600:      #635C54;
    --gray-700:      #45403B;
    --gray-800:      #2D2A26;

    /* Functional */
    --text-primary:    var(--navy);
    --text-secondary:  var(--gray-600);
    --text-muted:      var(--gray-500);
    --bg-primary:      var(--cream);
    --bg-section:      var(--ivory);
    --accent:          var(--green);
    --accent-hover:    var(--green-light);
    --success:         var(--emerald);
    --danger:          var(--terracotta);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 6rem;
    --container-max:   1280px;
    --radius:          8px;
    --radius-lg:       16px;
    --radius-xl:       24px;

    /* Transitions */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration:    0.4s;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(11,29,58,0.06);
    --shadow-md:  0 4px 16px rgba(11,29,58,0.08);
    --shadow-lg:  0 12px 40px rgba(11,29,58,0.12);
    --shadow-xl:  0 24px 60px rgba(11,29,58,0.16);
    --shadow-green: 0 8px 32px rgba(5,150,105,0.25);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--duration) var(--ease-out); }
ul, ol { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-header .section-label::before,
.section-header .section-label::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--green);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.btn:hover::after { transform: translateX(100%); }

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--navy-deep);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(5,150,105,0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

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

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--duration) var(--ease-out);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(11, 29, 58, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 101;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-deep);
    box-shadow: var(--shadow-green);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--green), var(--green-light)) !important;
    color: var(--navy-deep) !important;
    font-weight: 600 !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 50px;
}

.nav-cta:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero Carousel Slides */
.hero-slide-bg {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.hero-slide-bg.active {
    opacity: 1;
}

.hero-slide-content {
    display: none;
}
.hero-slide-content.active {
    display: block;
}
.hero-slide-content.active .hero-label,
.hero-slide-content.active h1,
.hero-slide-content.active .hero-desc,
.hero-slide-content.active .hero-actions,
.hero-slide-content.active .hero-stats {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) forwards;
}
.hero-slide-content.active .hero-label { animation-delay: 0.2s; }
.hero-slide-content.active h1 { animation-delay: 0.4s; }
.hero-slide-content.active .hero-desc { animation-delay: 0.6s; }
.hero-slide-content.active .hero-actions { animation-delay: 0.8s; }
.hero-slide-content.active .hero-stats { animation-delay: 1s; }

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}
.hero-indicator {
    width: 40px;
    height: 4px;
    border: none;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}
.hero-indicator.active {
    width: 60px;
    background: var(--green);
}
.hero-indicator:hover {
    background: rgba(255,255,255,0.6);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(5,150,105,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(26,122,92,0.1) 0%, transparent 50%),
        linear-gradient(180deg, rgba(6,18,37,0.3) 0%, rgba(6,18,37,0.8) 100%);
    z-index: 1;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(5,150,105,1) 35px,
            rgba(5,150,105,1) 36px
        );
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 8rem 0 4rem;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero-label::before {
    content: '';
    width: 3rem;
    height: 1px;
    background: var(--green);
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--green);
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.8s forwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1s forwards;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
}

.hero-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
    display: block;
}

/* Decorative floating element */
.hero-decor {
    position: absolute;
    right: 5%;
    bottom: 10%;
    width: 320px;
    height: 320px;
    z-index: 1;
    opacity: 0.15;
}

.hero-decor-circle {
    width: 100%;
    height: 100%;
    border: 1px solid var(--green);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
    position: relative;
}

.hero-decor-circle::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 1px solid var(--green);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite reverse;
}

/* ============================================================
   PAGE BANNER (for inner pages)
   ============================================================ */
.page-banner {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--navy-deep);
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(5,150,105,0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(26,122,92,0.08) 0%, transparent 50%);
}

.page-banner-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(5,150,105,1) 35px,
            rgba(5,150,105,1) 36px
        );
}

.page-banner .container { position: relative; z-index: 2; }

.page-banner .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.page-banner .breadcrumb a { color: var(--green); }
.page-banner .breadcrumb a:hover { color: var(--green-light); }
.page-banner .breadcrumb .sep { color: rgba(255,255,255,0.3); }

.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.page-banner .subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.section-services {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
    position: relative;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.service-card-icon {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy-deep);
    box-shadow: var(--shadow-green);
    z-index: 2;
}

/* When no image, show icon centered */
.service-card-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-image.no-image .service-card-icon-large {
    font-size: 3rem;
    color: var(--green);
    opacity: 0.6;
}

.service-card-body {
    padding: 2rem 1.5rem 1.5rem;
}

.service-card-category {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.service-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.service-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.service-card-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--emerald);
}

.service-card-price span { font-size: 0.75rem; font-weight: 400; color: var(--gray-500); }

.service-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card-link:hover { color: var(--green); }
.service-card-link i { transition: transform 0.3s var(--ease-out); }
.service-card-link:hover i { transform: translateX(4px); }

/* Filter buttons */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1.5px solid var(--gray-300);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================================
   HAJJ & UMRAH SECTION
   ============================================================ */
.hajj-intro {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

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

.hajj-intro-content h2 { margin-bottom: 1.5rem; }

.hajj-intro-content p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.hajj-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2rem 0;
}

.hajj-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hajj-feature i {
    width: 36px;
    height: 36px;
    background: var(--green-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hajj-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.hajj-visual {
    position: relative;
}

.hajj-visual-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hajj-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            var(--green) 20px,
            var(--green) 21px
        );
}

.hajj-visual-card .icon-large {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 1.5rem;
}

.hajj-visual-card h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.hajj-visual-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Package Cards */
.packages-section {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--duration) var(--ease-out);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.package-card-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.package-card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5,150,105,0.15) 0%, transparent 60%);
}

.package-card-header .package-icon {
    font-size: 2rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.package-card-header h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.package-card-header p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.package-card-body {
    padding: 2rem;
}

.package-card-body .description {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.package-card-body .btn { width: 100%; }

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.section-portfolio { padding: var(--section-padding) 0; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--navy);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,18,37,0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.4s var(--ease-out);
}

.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(6,18,37,0.95) 100%);
}

.portfolio-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.portfolio-overlay .location {
    font-size: 0.82rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.portfolio-overlay .location i { font-size: 0.75rem; }

/* Portfolio placeholder for items without images */
.portfolio-item.no-image {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item.no-image .placeholder-icon {
    font-size: 3rem;
    color: rgba(5,150,105,0.3);
}

/* Video badge */
.portfolio-video-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    z-index: 2;
}

/* ============================================================
   ANNOUNCEMENTS / NEWS
   ============================================================ */
.section-announcements { padding: var(--section-padding) 0; }

.announcements-list {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.announcement-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--duration) var(--ease-out);
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.announcement-date {
    text-align: center;
    padding: 1rem;
    background: var(--navy);
    border-radius: var(--radius);
    color: var(--white);
    min-width: 70px;
    align-self: start;
}

.announcement-date .day {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--green);
}

.announcement-date .month {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
}

.announcement-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.announcement-body h3 a:hover { color: var(--green); }

.announcement-body .excerpt {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.announcement-body .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.announcement-body .read-more:hover { color: var(--green-light); }
.announcement-body .read-more i { transition: transform 0.3s; }
.announcement-body .read-more:hover i { transform: translateX(4px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-content {
    padding: var(--section-padding) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text .content {
    color: var(--text-secondary);
    line-height: 1.85;
}

.about-text .content p { margin-bottom: 1.25rem; }

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--duration) var(--ease-out);
}

.about-stat-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-green);
    transform: translateY(-3px);
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.about-visual {
    position: relative;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 500px;
}

.about-image-grid .img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-grid .img-box:first-child { grid-row: span 2; }
.about-image-grid .img-box i { font-size: 3rem; color: var(--green); opacity: 0.4; }

.about-image-grid .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: var(--section-padding) 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease-out);
}

.contact-info-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.contact-info-card a { color: var(--text-secondary); }
.contact-info-card a:hover { color: var(--green); }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    background: var(--gray-100);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5,150,105,0.15);
}

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

/* Flash messages */
.flash-message {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.flash-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.flash-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 5rem 0;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(5,150,105,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(26,122,92,0.08) 0%, transparent 50%);
}

.cta-section .container { position: relative; z-index: 2; text-align: center; }

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.6);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            var(--green) 35px,
            var(--green) 36px
        );
}

.site-footer .container { position: relative; z-index: 2; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-about p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-name { color: var(--white); }

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--navy-deep);
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: all 0.3s;
}

.footer-col ul a:hover {
    color: var(--green);
    padding-left: 0.5rem;
}

.footer-col .contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
}

.footer-col .contact-list i {
    color: var(--green);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-col .contact-list a {
    color: rgba(255,255,255,0.5);
}

.footer-col .contact-list a:hover { color: var(--green); }

.footer-bottom {
    text-align: center;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.3s var(--ease-out);
    animation: floatPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy-deep);
    color: var(--white);
    padding: 2rem;
}

.page-404 h1 {
    font-size: 8rem;
    color: var(--green);
    line-height: 1;
}

.page-404 p {
    color: rgba(255,255,255,0.6);
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.section-testimonials {
    padding: var(--section-padding) 0;
    background: var(--bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all var(--duration) var(--ease-out);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    font-size: 0.85rem;
    color: var(--gray-300);
}

.testimonial-stars i.active {
    color: #F59E0B;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-avatar-placeholder {
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.testimonial-author span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================================
   NEWSLETTER SECTION
   ============================================================ */
.newsletter-section {
    padding: var(--section-padding) 0;
    background: var(--navy-deep);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(5,150,105,0.08), rgba(5,150,105,0.03));
    border: 1px solid rgba(5,150,105,0.15);
    border-radius: var(--radius-xl);
    padding: 3rem;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.newsletter-form {
    flex-shrink: 0;
    width: 100%;
    max-width: 420px;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.newsletter-input-group input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    background: var(--white);
    color: var(--text-primary);
    min-width: 0;
}

.newsletter-input-group input::placeholder {
    color: var(--gray-400);
}

.newsletter-input-group .btn {
    border-radius: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   STATS SECTION (standalone)
   ============================================================ */
.stats-section {
    padding: 4rem 0;
    background: var(--navy);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number-lg {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
}

.stat-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO — MASONRY & CATEGORY FILTER
   ============================================================ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-200);
    border-radius: 50px;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.portfolio-masonry {
    columns: 3;
    column-gap: 1.5rem;
}

.portfolio-masonry .portfolio-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    aspect-ratio: auto;
}

.portfolio-masonry .portfolio-item:nth-child(3n+1) { aspect-ratio: 4/3; }
.portfolio-masonry .portfolio-item:nth-child(3n+2) { aspect-ratio: 3/4; }
.portfolio-masonry .portfolio-item:nth-child(3n)   { aspect-ratio: 1/1; }

.portfolio-category-badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(5,150,105,0.2);
    color: var(--green-light);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* ============================================================
   PACKAGE PRICE & DETAILS
   ============================================================ */
.package-price {
    text-align: center;
    padding: 1.25rem;
    background: var(--green-pale);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.package-price .amount {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
}

.package-price .note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.package-detail-section {
    margin-bottom: 1.25rem;
}

.package-detail-section h5 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-detail-section h5 i {
    color: var(--green);
    font-size: 0.85rem;
}

.package-detail-section p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.inclusion-list {
    display: grid;
    gap: 0.4rem;
}

.inclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.inclusion-list li i {
    color: var(--emerald);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--text-secondary);
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}

.pagination-btn:hover {
    border-color: var(--green);
    color: var(--green);
}

.pagination-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    font-weight: 600;
}

.pagination-btn i {
    font-size: 0.75rem;
}

/* ============================================================
   FEATURED ANNOUNCEMENT CARDS
   ============================================================ */
.featured-announcement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--duration) var(--ease-out);
}

.featured-announcement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.featured-ann-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.featured-ann-body {
    padding: 1.5rem;
}

.featured-ann-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.featured-ann-body h3 a:hover {
    color: var(--green);
}

.featured-ann-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.read-more:hover { color: var(--green-light); }
.read-more i { transition: transform 0.3s; }
.read-more:hover i { transform: translateX(4px); }

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video-modal.active {
    display: flex;
}

.video-modal-inner {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   FLASH TOAST
   ============================================================ */
.flash-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3000;
    animation: slideUpFade 0.5s var(--ease-out);
}

.flash-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    min-width: 300px;
}

.flash-message.success {
    background: #059669;
    color: var(--white);
}

.flash-message.error {
    background: #DC2626;
    color: var(--white);
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   HAJJ & UMRAH HIGHLIGHT — HOMEPAGE
   ============================================================ */
.hajj-highlight-home {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.hajj-highlight-home::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5,150,105,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hajj-highlight-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hajj-highlight-content .section-label span {
    color: var(--green);
}

.hajj-highlight-content h2 {
    color: var(--white);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.hajj-highlight-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.75;
}

.hajj-highlight-visual {
    display: flex;
    justify-content: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .about-grid,
    .hajj-intro-grid,
    .hajj-highlight-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .portfolio-masonry { columns: 2; }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form { max-width: 100%; }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--navy-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s var(--ease-out);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

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

    .nav-menu a {
        font-size: 1rem;
        padding: 0.75rem 0;
        width: 100%;
    }

    .hero-content { padding: 7rem 0 3rem; }
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .announcement-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .announcement-date {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        padding: 0.5rem 1rem;
    }

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

    .about-image-grid { height: 300px; }

    .hajj-features { grid-template-columns: 1fr; }

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

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

    .portfolio-masonry { columns: 1; }

    .stats-row { gap: 2rem; }
    .stat-divider { display: none; }
    .stat-number-lg { font-size: 2.2rem; }

    .newsletter-input-group { flex-direction: column; }
    .newsletter-input-group input { border-radius: var(--radius); }
    .newsletter-input-group .btn { border-radius: var(--radius); }

    .hajj-highlight-content h2 { font-size: 1.8rem; }

    .filter-bar { gap: 0.4rem; }
    .filter-btn { font-size: 0.78rem; padding: 0.4rem 1rem; }
}

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

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

    .hero-stats { gap: 1.25rem; }
    .hero-stat-number { font-size: 1.6rem; }

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

    .stats-row { flex-direction: column; gap: 1.5rem; }
    .stat-number-lg { font-size: 2rem; }
}
