﻿/* ===== BEGIN: global.css ===== */
/**
 * Travel Agency Management System - Global Styles
 * Unified design system for all pages
 * Premium Islamic-themed design
 */

/* ==========================================
   CSS VARIABLES - Design Tokens
   ========================================== */
:root {
    /* Brand Colors */
    --primary-gold: #B87333;
    --primary-blue: #122E5B;
    --light-gold: #D4AF37;
    --dark-blue: #0A1E3F;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(18, 46, 91, 0.08);
    --shadow-md: 0 8px 24px rgba(18, 46, 91, 0.12);
    --shadow-lg: 0 16px 48px rgba(18, 46, 91, 0.16);
    --shadow-gold: 0 8px 24px rgba(184, 115, 51, 0.25);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;
}

/* ==========================================
   GLOBAL RESETS & BASE STYLES
   ========================================== */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: #333;
    background: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
}

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

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

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
   
/* Use Bootstrap's container but ensure it doesn't conflict */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

/* Bootstrap responsive breakpoints alignment */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

.section {
    padding: var(--section-padding);
    transition: background-color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section:nth-child(odd) {
    background: white;
}

.section-alt {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.02) 0%, rgba(184, 115, 51, 0.02) 100%);
}

/* ==========================================
   SECTION TITLES
   ========================================== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

/* ==========================================
   BUTTONS - Global Button Styles
   ========================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ==========================================
   PACKAGE CARDS - Universal Package Design
   ========================================== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(18, 46, 91, 0.08);
    transform: translateZ(0);
    will-change: transform;
}



.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: var(--primary-gold);
}

.package-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.package-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 46, 91, 0.7) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.package-card:hover .package-image::before {
    opacity: 1;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    transform: scale(1);
}

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

/* Islamic Pattern for Placeholder Images */
.package-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(184, 115, 51, 0.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(184, 115, 51, 0.08) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(184, 115, 51, 0.08) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(184, 115, 51, 0.08) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    z-index: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.package-image:has(img[src*="placehoder"])::after,
.package-image:has(img[src=""])::after,
.package-image:has(img[src$="null"])::after,
.package-image.has-islamic-pattern::after {
    opacity: 1;
}

.package-image.has-islamic-pattern {
    background: linear-gradient(135deg, 
        rgba(18, 46, 91, 0.05) 0%, 
        rgba(184, 115, 51, 0.05) 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

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

.package-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-featured-badge i {
    color: var(--light-gold);
}

.package-body {
    padding: 14px;
}

.package-title {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.7;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 2px solid #f5f5f5;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.package-meta-item:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--primary-gold);
}

.package-meta-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.package-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-price {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    line-height: 1;
}

.package-price-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.package-price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.package-discount {
    background: #ff4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    transition: left 0.5s ease;
}

.package-btn:hover::before {
    left: 0;
}

.package-btn span {
    position: relative;
    z-index: 1;
}

.package-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.package-btn:hover i {
    transform: translateX(5px);
}

/* ==========================================
   PAGE BANNER - Universal Banner for All Pages
   ========================================== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="%23D4AF37" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
    animation: float 30s linear infinite;
}

@keyframes float {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.page-banner::after {
    content: '☪';
    position: absolute;
    top: 50%;
    right: 10%;
    font-size: 200px;
    opacity: 0.05;
    transform: translateY(-50%);
}

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

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.page-banner .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.page-banner.has-image {
    background-size: cover;
    background-position: center;
}

.page-banner.has-image::before {
    background: rgba(18, 46, 91, 0.85);
    opacity: 1;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--light-gold);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
    text-decoration: underline;
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item:last-child::after {
    display: none;
}

.breadcrumb-item.active {
    color: white;
}

/* Hero Section Components */
.hero-main-content {
    text-align: center;
}

.hero-form-wrapper {
    max-width: 1320px;
    margin: 30px auto 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-form-wrapper form {
    margin: 0;
}

/* ==========================================
   CONTENT SECTIONS
   ========================================== */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.content-section img {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 30px 0;
}

/* ==========================================
   ANIMATIONS & UTILITIES
   ========================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

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

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* Skeleton Loader */
.img-skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: relative;
    overflow: hidden;
}

.img-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gold) 100%);
    opacity: 0.05;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
    
    .page-banner {
        padding: 70px 0 50px;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   SPECIAL OVERRIDES FOR PROTECTED SECTIONS
   ========================================== */

.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

.search-section {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.03) 0%, rgba(184, 115, 51, 0.05) 100%) !important;
}

.shortcode-section:nth-of-type(even) {
    background: linear-gradient(to right, rgba(18, 46, 91, 0.03), rgba(184, 115, 51, 0.02));
}

.shortcode-section:nth-of-type(odd) {
    background: white;
}

/* Shortcode Content Inside Content Pages */
.content-typography .shortcode-section {
    margin: 50px -15px;
    padding: 60px 15px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(18, 46, 91, 0.08);
    border-left: 4px solid var(--primary-gold);
}

.content-typography .shortcode-section:nth-of-type(odd) {
    background: linear-gradient(135deg, #fef8f0 0%, #fdf4e8 100%);
    border-left: 4px solid var(--primary-blue);
}

.content-typography .shortcode-section:nth-of-type(even) {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    border-left: 4px solid var(--primary-gold);
}

.content-typography .shortcode-section .section-title {
    margin-bottom: 40px;
    text-align: center;
}

.content-typography .shortcode-section .section-title h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.content-typography .shortcode-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    border-radius: 2px;
}

.content-typography .shortcode-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* ===== END: global.css ===== */

/* ===== BEGIN: header.css ===== */
/**
 * Header & Navigation Styles
 * Premium Islamic-themed navigation with dropdowns
 */

/* ==========================================
   TOPBAR
   ========================================== */
.topbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left, .topbar-right {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.topbar-item i {
    color: var(--light-gold);
}

.topbar-item:hover {
    color: white;
}

/* ==========================================
   MAIN NAVIGATION
   ========================================== */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 900;
    transition: var(--transition-smooth);
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    /* Reserve space for the logo clickable area */
    width: 100px;
    height: 50px;
}

.navbar-brand img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    transition: var(--transition-smooth);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1001;
}

.navbar-brand:hover img {
    transform: translateY(-50%) scale(1.05);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    align-items: center;
}

/* Hide menu by default on mobile - will be shown when .active is added */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-gold);
    background: rgba(184, 115, 51, 0.05);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-item.active > .nav-link {
    color: var(--primary-gold);
    background: rgba(184, 115, 51, 0.1);
}

/* Dropdown Icon */
.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* ==========================================
   DROPDOWN MENUS
   ========================================== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(18, 46, 91, 0.15);
    padding: 10px 0;
    margin-top: 5px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 2px solid rgba(184, 115, 51, 0.1);
}

.dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .nav-item {
    display: block;
    width: 100%;
}

.dropdown-menu .nav-link {
    padding: 12px 20px;
    color: var(--primary-blue);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-menu .nav-link::after {
    display: none;
}

.dropdown-menu .nav-link:hover {
    background: linear-gradient(90deg, rgba(184, 115, 51, 0.08), rgba(212, 175, 55, 0.05));
    color: var(--primary-gold);
    padding-left: 25px;
}

.dropdown-menu .nav-link i {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Nested Dropdowns (Sub-menus) */
.dropdown-menu .dropdown {
    position: relative;
}

.dropdown-menu .dropdown > .nav-link::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    margin-left: auto;
    color: var(--primary-gold);
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 5px;
}

.dropdown-menu .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Depth Styling */
.dropdown-menu.depth-1 {
    background: #f8f9fa;
}

.dropdown-menu.depth-2 {
    background: #f0f1f3;
}

/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
        z-index: 950;
        order: 3; /* Place hamburger menu last */
        margin-left: auto; /* Push to the right */
    }
    
    .navbar-brand {
        order: 1; /* Place logo first */
    }
    
    .nav-menu {
        order: 2; /* Place nav-menu between (but it's hidden anyway) */
    }
    
    .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 15px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        gap: 0;
        overflow-y: auto;
        max-height: calc(100vh - 80px);
        z-index: 900;
    }
    
    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-link {
        width: 100%;
        border-radius: 0;
        padding: 16px 30px;
        font-size: 1.05rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: linear-gradient(90deg, rgba(184, 115, 51, 0.1), transparent);
        padding-left: 35px;
    }
    
    /* Mobile Dropdowns - Override desktop hover behavior */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: linear-gradient(135deg, rgba(18, 46, 91, 0.02), rgba(184, 115, 51, 0.02));
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .dropdown.active > .dropdown-menu {
        max-height: 500px;
    }
    
    /* Override desktop hover on mobile */
    .dropdown:hover > .dropdown-menu {
        max-height: 0;
    }
    
    .dropdown.active:hover > .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu .nav-link {
        padding-left: 50px;
        font-size: 0.95rem;
        color: var(--primary-blue);
    }
    
    .dropdown-menu .dropdown-menu .nav-link {
        padding-left: 70px;
        font-size: 0.9rem;
    }
    
    .dropdown > .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .dropdown-icon {
        transform: none;
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .dropdown.active > .nav-link .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary-gold);
    }
    
    /* Active state styling */
    .nav-item.active > .nav-link {
        background: linear-gradient(90deg, rgba(184, 115, 51, 0.15), transparent);
        border-left: 4px solid var(--primary-gold);
    }
}

/* ==========================================
   SEARCH BAR (Optional)
   ========================================== */
.nav-search {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.nav-search input {
    padding: 8px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    outline: none;
    transition: var(--transition-fast);
    width: 200px;
}

.nav-search input:focus {
    border-color: var(--primary-gold);
    width: 250px;
}

.nav-search button {
    background: var(--primary-gold);
    border: none;
    padding: 8px 15px;
    margin-left: -35px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
}

/* ==========================================
   RESPONSIVE TOPBAR
   ========================================== */
@media (max-width: 768px) {
    .topbar {
        padding: 8px 0;
    }
    
    .topbar-content {
        justify-content: center;
        gap: 10px;
    }
    
    .topbar-left, .topbar-right {
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .topbar-item span {
        display: none;
    }
    
    .topbar-item {
        font-size: 0.85rem;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-content {
        padding: 10px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .navbar-brand {
        flex: 0 0 auto;
        width: 80px;
        height: 40px;
    }
    
    .mobile-menu-toggle {
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    .navbar-brand img {
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 480px) {
    .topbar {
        font-size: 0.75rem;
    }
    
    .navbar-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .navbar-brand {
        position: absolute;
        left: 0;
        width: 70px;
        height: 35px;
    }
    
    .mobile-menu-toggle {
        position: absolute;
        right: 0;
    }
    
    .topbar-left, .topbar-right {
        gap: 8px;
    }
    
    .navbar-brand img {
        height: 70px;
        width: 70px;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 10px 14px;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 992px) {
    body {
        overflow-x: hidden !important;
    }
}

/* ===== END: header.css ===== */

/* ===== BEGIN: pages.css ===== */
/**
 * Pages CSS - All page-specific styles
 * Extracted from inline styles for better performance and maintainability
 */

/* ==========================================
   COMMON PAGE ELEMENTS
   ========================================== */
.page-header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.page-title {
    color: #122E5B;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5em;
}

.page-content-wrapper {
    margin-bottom: 40px;
}

.page-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.alert-no-content {
    max-width: 600px;
    margin: 50px auto;
}

.text-center-message {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

/* ==========================================
   PACKAGE DETAIL PAGE
   ========================================== */
.package-detail-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.package-detail-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.package-rating-section {
    margin-bottom: 20px;
}

.package-stars {
    color: #FFD700;
    font-size: 1.5rem;
}

.package-star-label {
    color: #666;
    margin-left: 10px;
}

.package-meta-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.package-description-content {
    line-height: 1.8;
    color: #333;
}

.package-price-section {
    margin-bottom: 20px;
    text-align: center;
}

.package-cta-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.package-cta-text {
    margin-bottom: 20px;
}

.package-cta-button {
    width: 100%;
    text-align: center;
}

.package-contact-divider {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-section-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info-wrapper {
    line-height: 2;
}

.contact-section-bg {
    background-color: #f8f9fa;
}

.contact-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section-no-padding-bottom {
    padding-bottom: 0;
}

.about-image-wrapper {
    margin-bottom: 40px;
}

.about-section-bg {
    background-color: #f8f9fa;
}

.about-content-centered {
    max-width: 1000px;
    margin: 0 auto;
}

.about-main-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-intro-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-sub-title {
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.about-list {
    font-size: 1.05rem;
    line-height: 2;
}

.about-commitment-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ==========================================
   HOME PAGE CATEGORY SECTIONS
   ========================================== */
.category-section-title {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.category-section-title-with-top-margin {
    color: var(--secondary-color);
    margin: 50px 0 30px;
}

/* ==========================================
   ERROR PAGES (404, 500)
   ========================================== */
.error-page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-code {
    font-size: 6rem;
    color: #B87333;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2rem;
    color: #122E5B;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* ==========================================
   FILTERS SECTION
   ========================================== */
.filters-section {
    padding: 40px 0;
    background: #f8f9fa;
}

/* ==========================================
   TOPBAR INLINE FIXES
   ========================================== */
.topbar-flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-divider {
    margin: 0 15px;
}

/* ==========================================
   CHILD PAGE CARDS (Universal Page)
   ========================================== */
.child-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.child-page-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid rgba(184, 115, 51, 0.1);
}

.child-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.child-page-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.child-page-card-body {
    padding: 25px;
}

.child-page-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.child-page-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.child-page-card .read-more-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.child-page-card .read-more-link:hover {
    color: var(--light-gold);
    gap: 12px;
}

/* ==========================================
   DASHBOARD STYLES
   ========================================== */
.user-avatar {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
}

.table-id-column {
    width: 50px;
}

.table-date-column {
    width: 120px;
}

.table-actions-column {
    width: 150px;
    text-align: center;
}

.table-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.table-logo-small {
    max-width: 100px;
    margin-top: 10px;
}

.table-logo-medium {
    max-width: 150px;
    margin-top: 10px;
}

.badge-level {
    font-size: 0.7em;
    margin-left: 0.5rem;
}

.settings-logo-preview {
    max-height: 80px;
}

.settings-favicon-preview {
    max-height: 48px;
}

.package-search-input {
    width: 250px;
}

.form-image-preview {
    max-width: 200px;
    border-radius: 8px;
}

/* Scrollable Checkboxes Containers */
.scrollable-checkbox-container {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
}

.scrollable-checkbox-container-small {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
}

.scrollable-checkbox-container-medium {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    padding: 10px;
    border-radius: 4px;
}

.scrollable-checkbox-container-tiny {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    padding: 10px;
    border-radius: 4px;
}

.package-item-card {
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    padding: 1rem;
    margin-bottom: 1rem;
}

.package-label-clickable {
    cursor: pointer;
    display: block;
    width: 100%;
}

.shortcode-code-display {
    font-size: 0.85rem;
    color: #666;
}

/* ==========================================
   MAINTENANCE PAGE
   ========================================== */
.maintenance-footer-text {
    font-size: 14px;
    color: #999;
}

/* ==========================================
   SETUP CHECK PAGE
   ========================================== */
.setup-intro-text {
    margin-bottom: 30px;
    color: #666;
}

.setup-success-box {
    margin-top: 30px;
    padding: 20px;
    background: #d4edda;
    border-radius: 5px;
    text-align: center;
}

.setup-success-title {
    color: #155724;
    margin-bottom: 10px;
}

.setup-success-text {
    color: #155724;
}

.setup-error-box {
    margin-top: 30px;
    padding: 20px;
    background: #f8d7da;
    border-radius: 5px;
    text-align: center;
}

.setup-error-title {
    color: #721c24;
    margin-bottom: 10px;
}

.setup-error-text {
    color: #721c24;
}

.setup-divider {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.setup-links-box {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 5px;
}

.setup-links-title {
    margin-bottom: 10px;
}

.setup-links-list {
    line-height: 2;
}

.setup-link {
    color: #B87333;
}

.setup-footer {
    margin-top: 20px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

/* ==========================================
   TEST/DEBUG PAGES
   ========================================== */
.debug-success-text {
    color: green;
}

.debug-error-text {
    color: red;
}

.debug-indent {
    margin-left: 30px;
}

/* ==========================================
   WIDGET FORM INLINE ACTION
   ========================================== */
.inline-form-action {
    display: inline;
}

/* ==========================================
   HIDDEN ELEMENTS
   ========================================== */
.hidden-item {
    display: none;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .package-meta-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .error-code {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .child-pages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== END: pages.css ===== */

/* ===== BEGIN: home-page.css ===== */

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    --primary-gold: #B87333;
    --primary-blue: #122E5B;
    --light-gold: #D4AF37;
    --dark-blue: #0A1E3F;
    --shadow-sm: 0 2px 8px rgba(18, 46, 91, 0.08);
    --shadow-md: 0 8px 24px rgba(18, 46, 91, 0.12);
    --shadow-lg: 0 16px 48px rgba(18, 46, 91, 0.16);
    --shadow-gold: 0 8px 24px rgba(184, 115, 51, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Skeleton Loader for Images */
.img-skeleton {
    background: linear-gradient(
        90deg,
        #f0f0f0 0%,
        #e0e0e0 20%,
        #f0f0f0 40%,
        #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: relative;
    overflow: hidden;
}

.img-skeleton::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-gold) 100%);
    opacity: 0.05;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Smooth Fade In on Load */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animation Delays */
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }

/* Home Page Dynamic Content - Custom Narrow Scrollbar */

.page-content>.content-typography,
.home-dynamic-content-wrapper {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1rem 0;
    margin: 30px auto;
    max-width: 1200px;
}
.page-content>.content-typography{
    padding: 1rem;
}
.page-content>.content-typography::-webkit-scrollbar,
.home-dynamic-content-wrapper::-webkit-scrollbar {
    width: 6px;
}
.page-content>.content-typography::-webkit-scrollbar-track,
.home-dynamic-content-wrapper::-webkit-scrollbar-track {
    background: rgba(18, 46, 91, 0.06);
    border-radius: 3px;
}
.page-content>.content-typography::-webkit-scrollbar-thumb,
.home-dynamic-content-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-blue));
    border-radius: 3px;
}

.page-content>.content-typography::-webkit-scrollbar-thumb:hover,
.home-dynamic-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4964f, #1a3f7f);
}

.page-content>.content-typography::-webkit-scrollbar-thumb:hover,
.home-dynamic-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4964f, #1a3f7f);
}

.page-content>.content-typography,
.home-dynamic-content-wrapper {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) rgba(18, 46, 91, 0.06);
}
@media (max-width: 768px) {
    .page-content>.content-typography,
    .home-dynamic-content-wrapper {
        max-height: 60vh;
    }
}

/* Hero Banner Section */
.hero-banner {
    position: relative;
    height: 800px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--light-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/hero-pattern.png');
    opacity: 0.1;
} */

.hero-banner.has-image {
    background-size: cover;
    background-position: center;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(179, 101, 28, 0.7), rgba(224, 200, 118, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-gold);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.4);
}

.hero-btn:hover {
    background: var(--light-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.6);
    color: white;
}

/* Search Section - Premium Islamic Theme */
.search-section {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.03) 0%, rgba(184, 115, 51, 0.05) 100%);
    padding: 50px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: white;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 20px 60px rgba(18, 46, 91, 0.15);
    border: 3px solid transparent;
    background-image: 
        linear-gradient(white, white),
        linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.search-card:hover::before {
    opacity: 0.1;
}

.search-header {
    text-align: center;
    margin-bottom: 35px;
}

.search-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.search-icon-box i {
    font-size: 2rem;
    color: white;
}

.search-header h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.search-header p {
    color: #666;
    font-size: 1.05rem;
    margin: 0;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.search-field {
    position: relative;
}

.search-field label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-field label i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: #333;
    font-weight: 500;
}

.search-field select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23B87333" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.search-field input::placeholder {
    color: #999;
}

.search-field select:focus,
.search-field input:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
    transform: translateY(-2px);
}

.search-field select:hover,
.search-field input:hover {
    border-color: var(--primary-gold);
}

.search-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.search-btn {
    flex: 1;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.35);
    position: relative;
    overflow: hidden;
}

.search-btn::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;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 115, 51, 0.5);
}

.search-btn:active {
    transform: translateY(-1px);
}

.search-btn i {
    margin-right: 10px;
}

.clear-btn {
    padding: 16px 30px;
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 46, 91, 0.3);
}

.advanced-search-toggle {
    text-align: center;
    margin-top: 20px;
}

.advanced-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 8px 20px;
    border-radius: 20px;
}

.advanced-toggle-btn:hover {
    background: rgba(184, 115, 51, 0.1);
    transform: translateY(-2px);
}

.advanced-toggle-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.advanced-toggle-btn.active i {
    transform: rotate(180deg);
}

.advanced-filters {
    display: none;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px dashed #e8e8e8;
    animation: slideDown 0.3s ease-out;
}

.advanced-filters.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styling */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

/* About Section - Premium Design */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--primary-blue);
    transform: translateZ(0);
    will-change: transform;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition-smooth);
}

.about-image:hover::before {
    opacity: 1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 40 L90 40 L65 60 L75 90 L50 70 L25 90 L35 60 L10 40 L40 40 Z" fill="%23D4AF37" opacity="0.2"/></svg>');
    background-size: contain;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
    transform: scale(1);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    position: relative;
    padding-left: 20px;
}

.about-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 80px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--light-gold));
    border-radius: 10px;
}

.about-content h4 {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.about-content ul li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    transition: left 0.5s ease;
    z-index: -1;
}

.about-btn:hover::before {
    left: 0;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Partners Section - Elegant Design */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    align-items: center;
}

.partner-item {
    background: white;
    /* padding: 35px 25px; */
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 3/2; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: var(--shadow-sm); */
     transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.partner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: var(--transition-smooth);
}

.partner-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 20px;
    z-index: -1;
    /* opacity: 0; */
    transition: var(--transition-smooth);
}

/* .partner-item:hover::before {
    opacity: 1;
}

.partner-item:hover::after {
    opacity: 1;
} */

/* .partner-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
} */

/* .partner-item img {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
} */

/* Shortcode Sections Styling */
.shortcode-section {
    margin-bottom: 0;
}
.section .shortcode-section {
    padding-bottom: 0 !important;
}

.shortcode-section .section-title {
    margin-bottom: 50px;
}

.shortcode-section .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.shortcode-section .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    border-radius: 2px;
}

.shortcode-section .section-title p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 20px;
}

/* Islamic Pattern Fallback for Broken Images */
.package-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(184, 115, 51, 0.08) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(184, 115, 51, 0.08) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(184, 115, 51, 0.08) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(184, 115, 51, 0.08) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
    /* opacity: 0; */
    z-index: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}


.package-image img[src*="placehoder"] ~ .package-badge,
.package-image img[src=""] ~ .package-badge,
.package-image img[src$="null"] ~ .package-badge,
.package-image.has-islamic-pattern .package-badge {
    z-index: 2;
}

.package-image:has(img[src*="placehoder"])::after,
.package-image:has(img[src=""])::after,
.package-image:has(img[src$="null"])::after,
.package-image.has-islamic-pattern::after {
    opacity: 1;
}

/* Islamic Geometric Pattern - Enhanced */
/* .package-image:has(img[src*="placehoder"])::before,
.package-image:has(img[src=""])::before,
.package-image:has(img[src$="null"])::before,
.package-image.has-islamic-pattern::before {
    content: 'â˜ª';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: var(--primary-gold);
    opacity: 0.3;
    z-index: 1;
} */

/* Additional Islamic motifs */
.package-image.has-islamic-pattern {
    background: linear-gradient(135deg, 
        rgba(18, 46, 91, 0.05) 0%, 
        rgba(184, 115, 51, 0.05) 100%);
}

.package-image.has-islamic-pattern .package-featured-badge {
    z-index: 3;
}

/* Package Showcase - Luxury Design */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(18, 46, 91, 0.08);
    transform: translateZ(0);
    will-change: transform;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg), var(--shadow-gold);
    border-color: var(--primary-gold);
}

.package-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
}

.package-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 46, 91, 0.7) 100%);
    z-index: 1;
    /* opacity: 0; */
    transition: var(--transition-smooth);
}

.package-card:hover .package-image::before {
    opacity: 1;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    transform: scale(1);
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.package-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-featured-badge i {
    color: var(--light-gold);
}

.package-body {
    padding: 14px;
}

.package-title {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.3;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.7;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: 2px solid #f5f5f5;
}

.package-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.package-meta-item:hover {
    background: rgba(184, 115, 51, 0.1);
    color: var(--primary-gold);
}

.package-meta-item i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.package-price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.package-price {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    line-height: 1;
}

.package-price-label {
    font-size: 0.75rem;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.package-price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.package-discount {
    background: #ff4444;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 14px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    transition: left 0.5s ease;
}

.package-btn:hover::before {
    left: 0;
}

.package-btn span {
    position: relative;
    z-index: 1;
}

.package-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.package-btn:hover i {
    transform: translateX(5px);
}

/* Why Choose Us - Modern Cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1), transparent);
    transition: var(--transition-smooth);
}

.why-item:hover::after {
    bottom: -50px;
    right: -50px;
}

.why-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon::before {
    transform: translate(-50%, -50%) scale(1.2);
}

.why-icon i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon i {
    transform: scale(1.1) rotate(5deg);
}

.why-item h4 {
    font-size: 1.35rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.why-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.98rem;
}

/* Destinations - Premium Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-decoration: none;
    display: block;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 46, 91, 0.9) 0%, transparent 60%);
    z-index: 1;
    transition: var(--transition-smooth);
}

.destination-card:hover::before {
    background: linear-gradient(to top, rgba(184, 115, 51, 0.85) 0%, rgba(18, 46, 91, 0.7) 60%);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    transform: scale(1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 25px;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.destination-card:hover img {
    transform: scale(1.15);
}

.destination-card:hover .destination-overlay {
    transform: translateY(-10px);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.destination-card h4 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-card h4::after {
    content: 'â†’';
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.destination-card:hover h4::after {
    opacity: 1;
    transform: translateX(0);
}

.destination-card p {
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--primary-blue);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.contact-info p i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.contact-form h4 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.captcha-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.captcha-image {
    flex-shrink: 0;
}

.captcha-input {
    flex: 1;
}

.captcha-refresh {
    background: var(--primary-gold);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.captcha-refresh:hover {
    background: var(--light-gold);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-gold);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-banner {
        height: auto;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
    
    .about-section,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .about-content h3 {
        font-size: 2rem;
    }
    
    /* Responsive Search Section */
    .search-section {
        padding: 30px 0;
        margin-top: -60px;
    }
    
    .search-card {
        padding: 30px 20px;
    }
    
    .search-header h3 {
        font-size: 1.5rem;
    }
    
    .search-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .search-icon-box i {
        font-size: 1.5rem;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .search-actions {
        flex-direction: column;
    }
    
    .search-btn,
    .clear-btn {
        width: 100%;
    }
    
    /* Package Grid */
    .package-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-title {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    /* Shortcode Sections */
    .shortcode-section {
        margin-bottom: 40px;
    }
    
    .shortcode-section .section-title h2 {
        font-size: 1.75rem;
    }
    
    .package-image:has(img[src*="placehoder"])::before,
    .package-image:has(img[src=""])::before,
    .package-image:has(img[src$="null"])::before,
    .package-image.has-islamic-pattern::before {
        font-size: 60px;
    }
    
    /* Partners Grid */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Why Choose Us Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-item {
        padding: 35px 25px;
    }
    
    /* Destinations Grid */
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shortcode-section {
        margin-bottom: 50px;
    }
    
    .shortcode-section .section-title h2 {
        font-size: 2rem;
    }
}

/* Swiper Slider Enhancements for Shortcode Sections */
.slider-section .swiper-slide .package-card {
    height: 100%;
    margin: 0;
}

.slider-section .swiper {
    padding-bottom: 70px;
    overflow: hidden;
    width: 100%;
}

.slider-section .swiper-wrapper {
    width: 100%;
    height: auto;
}

.slider-section .swiper-button-next,
.slider-section .swiper-button-prev {
    top: 50%;
    margin-top: -25px;
}

/* Prevent swiper overflow on mobile */
@media (max-width: 768px) {
    .slider-section .swiper {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }
    
    .slider-section .swiper-button-next,
    .slider-section .swiper-button-prev {
        display: none;
    }
    
    .slider-section .swiper-pagination {
        bottom: 20px;
    }
}

/* Alternating Section Background Colors */
.section {
    padding: 80px 0;
    transition: background-color 0.3s ease;
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section:nth-child(odd) {
    background: white;
}

.section-alt {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.02) 0%, rgba(184, 115, 51, 0.02) 100%);
}

.shortcode-section:nth-of-type(even) {
    background: linear-gradient(to right, rgba(18, 46, 91, 0.03), rgba(184, 115, 51, 0.02));
}

.shortcode-section:nth-of-type(odd) {
    background: white;
}

/* Hero and special sections keep their own styling */

.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
}

.search-section {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.03) 0%, rgba(184, 115, 51, 0.05) 100%) !important;
}


/* ===== END: home-page.css ===== */

/* ===== BEGIN: styles.css ===== */
/* Travel Agency Management System - Main Stylesheet */
/* Color Scheme: Primary #B87333 (Copper), Secondary #122E5B (Navy Blue) */

:root {
    --primary-color: #B87333;
    --secondary-color: #122E5B;
    --primary-hover: #9A5F2A;
    --secondary-hover: #0D1F3F;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

/* Header Styles - Professional Topbar */
.topbar {
    background: linear-gradient(135deg, var(--secondary-color, #1a4d2e) 0%, var(--primary-color, #0f3a23) 100%);
    color: var(--white);
    padding: 6px 0;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.topbar-left {
    flex: 0 0 auto;
}

.topbar-right {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.topbar-welcome {
    display: flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.topbar-welcome i {
    color: var(--primary-gold, #D4AF37);
    font-size: 14px;
}

.topbar-contacts {
    display: flex;
    align-items: center;
    gap: 8px;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.topbar-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    transform: translateY(-1px);
}

.topbar-link i {
    font-size: 13px;
    flex-shrink: 0;
}

.topbar-link.topbar-whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .topbar {
        padding: 5px 0;
        font-size: 12px;
    }
    
    .topbar-welcome {
        font-size: 12px;
    }
    
    .topbar-link {
        padding: 3px 8px;
        gap: 5px;
    }
    
    .topbar-link i {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 5px 0;
        font-size: 11px;
    }
    
    .topbar-content {
        gap: 10px;
    }
    
    /* Hide welcome text on mobile */
    .topbar-welcome {
        display: none;
    }
    
    .topbar-right {
        justify-content: center;
        width: 100%;
    }
    
    .topbar-contacts {
        gap: 6px;
        width: 100%;
        justify-content: center;
    }
    
    .topbar-link {
        padding: 3px 6px;
        gap: 4px;
        font-size: 11px;
    }
    
    .topbar-link i {
        font-size: 12px;
    }
    
    /* Show only icons and numbers on mobile */
    .topbar-text {
        font-size: 11px;
    }
    
    .topbar-divider {
        height: 14px;
        margin: 0 2px;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 4px 0;
    }
    
    .topbar-contacts {
        gap: 4px;
    }
    
    .topbar-link {
        padding: 2px 5px;
        gap: 3px;
    }
    
    .topbar-link i {
        font-size: 11px;
    }
    
    .topbar-text {
        font-size: 10px;
    }
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand img {
    height: 100px;
    width: 100px;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: rgba(184, 115, 51, 0.05);
}

/* Dropdown & Navigation Styles - Moved to header.css */
/* All dropdown, navigation, and menu styles are now centralized in header.css for better maintainability */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(18, 46, 91, 0.3);
}

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

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

/* Package Cards */
.package-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.package-card-body {
    padding: 20px;
}

.package-rating {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-rating .rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.package-card h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.package-price {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 15px 0;
}

.package-meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.package-nights-detail {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-top: 5px;
    border-top: 1px solid #f0f0f0;
}

/* Package Button Group */
.package-btn-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
    justify-content: space-between;
}

.package-btn-group .btn {
    flex: 1;
}


.btn-call-us {
    background: linear-gradient(135deg, var(--primary-gold, #B87333), var(--light-gold, #D4AF37)) !important;
    color: white !important;
    padding: 10px 14px !important;
    border-radius: 12px;
    border: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(184, 115, 51, 0.2);
    flex: 0.7 !important;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-call-us:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
    color: white !important;
    text-decoration: none;
}

.btn-call-us i {
    font-size: 1rem;
    line-height: 1;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
}

.footer::after {
    content: '☪';
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 150px;
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    margin-bottom: 0;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 120px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: var(--light-gold);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--light-gold);
    padding-left: 8px;
}

.footer-links a i {
    color: var(--primary-gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: var(--light-gold);
    font-size: 1.2rem;
    width: 25px;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-contact-item a:hover {
    color: var(--light-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.footer-social a:hover {
    border-color: var(--light-gold);
    transform: translateY(-5px);
}

.footer h4 {
    color: var(--light-gold);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
    display: flex;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--light-gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--light-gold);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success);
}

.alert-error,
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger);
}

/* Floating Action Buttons - Moved to floating-elements.css */
/* Old styles commented out - now using flexbox layout in floating-elements.css */
/*
.fab {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    z-index: 999;
    text-decoration: none;
    color: var(--white);
    font-size: 24px;
}

.fab:hover {
    transform: scale(1.1);
}

.fab-whatsapp {
    bottom: 40px;
    right: 20px;
    background-color: #25D366;
}

.fab-phone {
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
}
*/

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .navbar-brand img {
        height: 80px;
        width: 80px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

/* Large screen columns */
.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.col-lg-8 {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    padding: 0 15px;
}

.col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

.col-lg-10 {
    flex: 0 0 83.333%;
    max-width: 83.333%;
    padding: 0 15px;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .col-lg-3,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .package-btn-group {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .package-btn-group .btn {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
    
    .btn-call-us {
        flex: 0.6 !important;
        padding: 8px 10px !important;
        font-size: 0.85rem;
    }
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
.btn-whatsapp-pulse i {
	font-size: 35px;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* ==============================
   CALL BUTTON – PULSE ANIMATION
   ============================== */

/* Base Call Button */
.btn-call-pulse {
	background: linear-gradient(135deg, #198754, #146c43);
	color: #fff;
	position: fixed;
	bottom: 25px;
	right: 20px;
	font-size: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	text-decoration: none;
	border-radius: 50%;
	animation: call-pulse 1.6s infinite;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	z-index: 1050;
}

/* Icon inside */
.btn-call-pulse i {
    font-size: 24px;
}

/* Hover lift effect */
.btn-call-pulse:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(25,135,84,0.5);
}

/* Outer pulse ring */
.btn-call-pulse-border::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 4px solid rgba(25,135,84,0.6);
    animation: call-border-pulse 1.6s infinite;
}
.enquiry-form-banner {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
	border-radius: 12px;
	padding: 1.5rem 2rem;
	border: 1px solid rgba(184, 115, 51, 0.2) !important;
	border-left: 4px solid #B87333;
	box-shadow: 0 8px 32px rgba(18, 46, 91, 0.08);
}
/* Pulse animation */
@keyframes call-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25,135,84,0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(25,135,84,0);
    }
    100% {
        box-shadow: 0 0 0 14px rgba(25,135,84,0);
    }
}

/* Border ring animation */
@keyframes call-border-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


/* ===== END: styles.css ===== */

/* ===== BEGIN: typography.css ===== */
/* ===================================
   Islamic Theme Typography
   Beautiful content formatting for CKEditor output
   =================================== */

:root {
    --islamic-gold: #d4af37;
    --islamic-green: #122E5B;
    --islamic-teal: #00a896;
    --islamic-brown: #8b6f47;
    --islamic-dark: #2c3e50;
    --islamic-red: #c44536;
}

.content-typography {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Headings with Islamic ornamental style */
.content-typography h1,
.content-typography h2,
.content-typography h3,
.content-typography h4,
.content-typography h5,
.content-typography h6 {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    color: var(--islamic-dark);
    position: relative;
    padding-bottom: 12px;
}

.content-typography h1 {
    font-size: 2.5em;
    color: var(--islamic-green);
    border-bottom: 3px solid var(--islamic-gold);
    padding-bottom: 16px;
    margin-bottom: 1.5em;
}

.content-typography h1::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--islamic-green);
}

.content-typography h2 {
    font-size: 2em;
    color: var(--islamic-green);
    border-left: 5px solid var(--islamic-gold);
    padding-left: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.content-typography h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    padding-left: 15px;
    border-left: 4px solid var(--islamic-green);
}

.content-typography h4 {
    font-size: 1.3em;
    color: var(--islamic-brown);
}

.content-typography h5 {
    font-size: 1.1em;
    color: var(--islamic-dark);
    font-weight: 600;
}

.content-typography h6 {
    font-size: 1em;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
.content-typography p {
    margin-bottom: 1.5em;
    text-align: justify;
}

.content-typography p:first-of-type::first-letter {
    font-size: 3.5em;
    font-weight: bold;
    float: left;
    line-height: 0.9;
    margin: 0.1em 0.1em 0 0;
    color: var(--islamic-gold);
    font-family: Georgia, serif;
}

/* Lists with Islamic style markers */
.content-typography ul,
.content-typography ol {
    margin: 1.5em 0;
    padding-left: 40px;
}

.content-typography ul li {
    margin-bottom: 0.8em;
    position: relative;
    padding-left: 10px;
}

.content-typography ul li::marker {
    color: var(--islamic-gold);
    font-size: 1.2em;
}

.content-typography ol li {
    margin-bottom: 0.8em;
    padding-left: 10px;
}

.content-typography ol li::marker {
    color: var(--islamic-green);
    font-weight: bold;
}

/* Nested lists */
.content-typography ul ul,
.content-typography ol ol,
.content-typography ul ol,
.content-typography ol ul {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Blockquotes - Islamic style with ornamental borders */
.content-typography blockquote {
    margin: 2em 0;
    padding: 25px 30px 25px 80px;
    background: linear-gradient(135deg, rgba(13, 128, 84, 0.05) 0%, rgba(0, 168, 150, 0.05) 100%);
    border-left: 5px solid var(--islamic-gold);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    font-style: italic;
    color: #34495e;
    border-radius: 0 8px 8px 0;
}

.content-typography blockquote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 4em;
    color: var(--islamic-gold);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.content-typography blockquote p {
    margin-bottom: 0.5em;
}

.content-typography blockquote p:last-child {
    margin-bottom: 0;
}

/* Links */
.content-typography a {
    color: var(--islamic-teal);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 168, 150, 0.3);
    transition: all 0.3s ease;
}

.content-typography a:hover {
    color: var(--islamic-green);
    border-bottom-color: var(--islamic-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Strong and emphasis */
.content-typography strong,
.content-typography b {
    font-weight: 700;
    color: var(--islamic-green);
}

.content-typography em,
.content-typography i {
    font-style: italic;
    color: var(--islamic-brown);
}

/* Code blocks */
.content-typography pre {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-left: 4px solid var(--islamic-teal);
    padding: 20px;
    overflow-x: auto;
    border-radius: 6px;
    margin: 1.5em 0;
}

.content-typography code {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--islamic-red);
}

.content-typography pre code {
    background: transparent;
    padding: 0;
    color: #2c3e50;
}

/* Tables - Islamic ornamental style */
.content-typography table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.content-typography table thead {
    background: linear-gradient(135deg, var(--islamic-green) 0%, var(--islamic-teal) 100%);
    color: white;
}

.content-typography table thead th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.content-typography table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.content-typography table tbody tr:hover {
    background: rgba(212, 175, 55, 0.05);
}

.content-typography table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.content-typography table tbody tr:nth-child(even):hover {
    background: rgba(212, 175, 55, 0.08);
}

.content-typography table td,
.content-typography table th {
    padding: 12px 15px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.content-typography table td:last-child,
.content-typography table th:last-child {
    border-right: none;
}

/* Images */
.content-typography img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.content-typography figure {
    margin: 2em 0;
    text-align: center;
}

.content-typography figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Horizontal rule - Islamic ornamental */
.content-typography hr {
    border: none;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--islamic-gold), transparent);
    margin: 3em 0;
    position: relative;
}

.content-typography hr::after {
    content: '✦';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 15px;
    color: var(--islamic-gold);
    font-size: 1.2em;
}

/* Special containers */
.content-typography .highlight-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(13, 128, 84, 0.1) 100%);
    border: 2px solid var(--islamic-gold);
    border-radius: 8px;
    padding: 25px;
    margin: 2em 0;
    position: relative;
}

.content-typography .highlight-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: var(--islamic-gold);
}

/* Note boxes */
.content-typography .note,
.content-typography .info,
.content-typography .warning {
    padding: 20px 25px;
    margin: 1.5em 0;
    border-radius: 8px;
    border-left: 5px solid;
}

.content-typography .note {
    background: rgba(0, 168, 150, 0.05);
    border-left-color: var(--islamic-teal);
}

.content-typography .info {
    background: rgba(52, 152, 219, 0.05);
    border-left-color: #3498db;
}

.content-typography .warning {
    background: rgba(196, 69, 54, 0.05);
    border-left-color: var(--islamic-red);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-typography {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .content-typography h1 {
        font-size: 2em;
    }
    
    .content-typography h2 {
        font-size: 1.6em;
    }
    
    .content-typography blockquote {
        padding: 20px 20px 20px 60px;
    }
    
    .content-typography table {
        font-size: 0.9em;
    }
}

/* ===== END: typography.css ===== */

/* ===== BEGIN: floating-elements.css ===== */
/* Floating Elements - Back to Top, Swiper Customization, Z-Index Management */

/* ============================================
   FLOATING ACTION BUTTONS (WhatsApp, Phone)
   ============================================ */
.floating-buttons-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column-reverse; /* Stack from bottom to top */
    gap: 15px;
    z-index: 999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.fab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fab:hover::before {
    opacity: 1;
}

.fab:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.fab i {
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

.fab-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fab-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.fab-phone {
    background: linear-gradient(135deg, var(--primary-gold), #8B5A1C);
}

.fab-phone:hover {
    background: linear-gradient(135deg, #8B5A1C, var(--primary-gold));
}

/* Tooltip on hover */
.fab::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 75px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-weight: 500;
    z-index: 10;
}

.fab:hover::after {
    opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold, #B87333), var(--light-gold, #D4AF37));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(184, 115, 51, 0.35);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(184, 115, 51, 0.45);
}

.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Swiper Slider Customization */
.swiper {
    /* padding: 20px 0 60px; */
    max-width: 100%;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
    display: flex;
}

.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-gold, #B87333) !important;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-gold, #B87333);
    color: white !important;
    transform: scale(1.1);
}

.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(184, 115, 51, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold, #B87333);
    width: 30px;
    border-radius: 6px;
}

/* Slider Section Styling */
.slider-section {
    position: relative;
}

.slider-section .swiper {
    overflow: visible;
}

/* Z-Index Management - Critical for proper layering */
/* Highest to Lowest Priority */
.tawk-min-container {
    z-index: 1000 !important; /* Tawk.to chat widget - highest */
}

.floating-buttons-container {
    z-index: 999 !important; /* WhatsApp/Phone buttons - bottom left */
}

.back-to-top {
    z-index: 998 !important; /* Back to top - right side */
}

.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
    z-index: 100 !important; /* Slider controls */
}

.navbar {
    z-index: 900 !important; /* Navigation bar */
}

.modal {
    z-index: 1050 !important; /* Modals above everything */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px; /* Move up to avoid overlap with floating buttons on mobile */
        left: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }
}

/* Mobile Responsive - Floating Buttons */
@media (max-width: 768px) {
    .floating-buttons-container {
        bottom: 20px;
        left: 20px;
        gap: 12px;
    }
    
    .fab {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .fab::after {
        left: 65px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .fab:hover {
        transform: scale(1.1) translateY(-3px);
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .floating-buttons-container {
        bottom: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .fab {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .fab::after {
        display: none; /* Hide tooltips on very small screens */
    }
}

/* Ensure Tawk.to widget doesn't overlap with other elements */
@media (max-width: 768px) {
    .tawk-min-container {
        bottom: 90px !important; /* Move up on mobile */
    }
}

/* Smooth transitions for all floating elements */
.back-to-top,
.floating-buttons-container .fab {
    will-change: transform;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* ===== END: floating-elements.css ===== */

/* ===== BEGIN: components.css ===== */
/**
 * Component Styles - Travel Agency Management System
 * All reusable component styles organized in one place
 */

/* ============================================
   NEWSLETTER FORM COMPONENT
   ============================================ */
.newsletter-form-widget {
    margin: 20px 0;
}

.newsletter-form .input-group {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.newsletter-form .btn-primary {
    background: linear-gradient(135deg, #B87333, #d4964f);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background: linear-gradient(135deg, #d4964f, #B87333);
}

/* ============================================
   GET IN TOUCH FORM COMPONENT
   ============================================ */
.get-in-touch-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #B87333;
}

.get-touch-header h3 {
    color: #122E5B;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.get-touch-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

.get-in-touch-form .form-label,
.contact-form .form-label {
    font-weight: 600;
    color: #122E5B;
    margin-bottom: 8px;
}

.get-in-touch-form .form-control,
.get-in-touch-form .form-select,
.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.get-in-touch-form .form-control:focus,
.get-in-touch-form .form-select:focus,
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #B87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

.get-in-touch-form .btn-primary,
.contact-form .btn-primary {
    background: linear-gradient(135deg, #B87333, #d4964f);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-in-touch-form .btn-primary:hover,
.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.captcha-image {
    border-radius: 8px;
    height: 50px;
    background: white;
}

.captcha-input {
    max-width: 150px;
}

@media (max-width: 768px) {
    .get-in-touch-form {
        padding: 25px;
    }
    
    .get-touch-header h3 {
        font-size: 1.6rem;
    }
}

/* ============================================
   BEAT MY QUOTE WIDGET
   ============================================ */
.beat-my-quote-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.beat-quote-header h3 {
    color: #122E5B;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.beat-quote-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.beat-quote-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #856404;
}

.beat-quote-form .form-label {
    font-weight: 600;
    color: #122E5B;
    margin-bottom: 8px;
}

.beat-quote-form .form-control,
.beat-quote-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.beat-quote-form .form-control:focus,
.beat-quote-form .form-select:focus {
    border-color: #B87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

.beat-quote-form .btn-primary {
    background: linear-gradient(135deg, #B87333, #d4964f);
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.beat-quote-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.beat-quote-form .form-check-input:checked {
    background-color: #B87333;
    border-color: #B87333;
}

@media (max-width: 768px) {
    .beat-my-quote-widget {
        padding: 20px;
    }
    
    .beat-quote-header h3 {
        font-size: 1.5rem;
    }
}

/* ============================================
   FOOTER NEWSLETTER - FULL WIDTH
   ============================================ */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(18, 46, 91, 0.95) 0%, rgba(18, 46, 91, 0.85) 100%);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.newsletter-content {
    max-width: 1400px;
    margin: 0 auto;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 25px;
}

.footer-newsletter h4 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
}

.newsletter-form-grid {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-group-newsletter {
    flex: 1;
}

.form-group-newsletter.email-group {
    flex: 2;
    min-width: 250px;
}

.form-group-newsletter.captcha-group-inline {
    flex: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-newsletter.button-group {
    flex: 0 0 auto;
    min-width: 180px;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-newsletter .captcha-image {
    border-radius: 8px;
    height: 46px;
    background: white;
    display: block;
}

.footer-newsletter .captcha-refresh {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 12px;
    border-radius: 6px;
    height: 46px;
    transition: all 0.3s ease;
    
}

.footer-newsletter .captcha-refresh:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .captcha-input {
    flex: 1;
    max-width: none;
    height: 46px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 12px 18px;
    color: #122E5B;
    transition: all 0.3s ease;
    height: 46px;
    font-size: 0.95rem;
}

.footer-newsletter .form-control:focus {
    background: #ffffff;
    border-color: #B87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
    outline: none;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(18, 46, 91, 0.6);
}

.footer-newsletter .btn-newsletter {
    background: linear-gradient(135deg, #B87333, #d4964f);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    height: 46px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.footer-newsletter .btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.5);
    background: linear-gradient(135deg, #d4964f, #B87333);
}

.footer-newsletter .alert {
    margin-bottom: 20px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    clear: both;
    position: relative;
    z-index: 10;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .newsletter-form-grid {
        flex-wrap: wrap;
    }
    
    .form-group-newsletter.email-group {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .form-group-newsletter.captcha-group-inline {
        flex: 1 1 auto;
    }
    
    .form-group-newsletter.button-group {
        flex: 1 1 auto;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 25px 20px;
        margin-top: 30px;
    }
    
    .footer-newsletter h4 {
        font-size: 1.3rem;
    }
    
    .newsletter-form-grid {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-group-newsletter,
    .form-group-newsletter.email-group,
    .form-group-newsletter.captcha-group-inline,
    .form-group-newsletter.button-group {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
    }
    
    .form-group-newsletter.captcha-group-inline {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-newsletter .captcha-input {
        max-width: 100%;
    }
}

/* ===== END: components.css ===== */

/* ===== BEGIN: utilities.css ===== */
/**
 * Utility Classes - Travel Agency Management System
 * Common utility classes to replace inline styles
 */

/* ============================================
   TOPBAR UTILITIES
   ============================================ */
/* Old topbar-flex class - replaced with new topbar-content structure in styles.css */
/*
.topbar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-separator {
    margin: 0 15px;
}
*/

/* ============================================
   PACKAGE UTILITIES
   ============================================ */
.package-image-container {
    margin-bottom: 40px;
}

.package-main-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.package-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.package-rating-container {
    margin-bottom: 20px;
}

.package-star-rating {
    color: #FFD700;
    font-size: 1.5rem;
}

.package-star-text {
    color: #666;
    margin-left: 10px;
}

.package-meta-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.package-description {
    line-height: 1.8;
    color: #333;
}

.package-price-container {
    margin-bottom: 20px;
    text-align: center;
}

.package-cta-title {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.package-cta-text {
    margin-bottom: 20px;
}

.no-packages-message {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

/* ============================================
   FILTER SECTION
   ============================================ */
.filters-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.page-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.no-results-alert {
    max-width: 600px;
    margin: 50px auto;
}

/* ============================================
   PAGE BANNERS
   ============================================ */
.page-banner-dynamic {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ============================================
   HIDE/SHOW UTILITIES
   ============================================ */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ============================================
   ALERT MESSAGE DISPLAY
   ============================================ */
.alert-display-message {
    display: none;
    margin-bottom: 15px;
}

.alert-display-message.show {
    display: block;
}

/* ===== END: utilities.css ===== */

/* ===== BEGIN: css-optimization.css ===== */
/**
 * PHASE 3: CSS OPTIMIZATION - CONSOLIDATED STYLES BUNDLE
 * Production-grade CSS consolidation for all inline styles found in views
 * 
 * This file consolidates common inline styles that appeared in 20+ view files
 * across error pages, dashboard, frontend components, and form widgets
 * 
 * Usage: Add to <head> before other CSS files to ensure cascading works correctly
 * Replaces: Individual inline style="..." attributes scattered throughout views
 */

/* ==========================================
   ERROR PAGES - 404/500/Maintenance
   ========================================== */

.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.error-code {
    font-size: 6rem;
    color: #B87333;
    margin-bottom: 20px;
}

.error-title {
    font-size: 2rem;
    color: #122E5B;
    margin-bottom: 20px;
}

.error-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.maintenance-info-text {
    font-size: 14px;
    color: #999;
}

/* ==========================================
   SEARCH & NAVIGATION
   ========================================== */

.search-results-dropdown {
    display: none;
}

.search-results-dropdown.visible {
    display: block;
}

.sticky-top-custom {
    position: sticky;
    top: 20px;
}

/* ==========================================
   ALERT MESSAGES & NOTIFICATIONS
   ========================================== */

.alert-hidden {
    display: none;
}

.alert-visible {
    display: block;
}

.contact-alert {
    display: none;
}

.contact-alert.visible {
    display: block;
}

/* ==========================================
   FORM COMPONENTS
   ========================================== */

.form-group-spacing {
    margin-bottom: 10px;
}

.form-message-container {
    display: none;
}

.form-message-container.visible {
    display: block;
}

/* ==========================================
   DASHBOARD COMPONENTS
   ========================================== */

.badge-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.chart-container {
    position: relative;
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
}

/* ==========================================
   SECTION & TYPOGRAPHY
   ========================================== */

.section-light-bg {
    background-color: #f8f9fa;
}

.section-heading {
    color: var(--secondary-color, #B87333);
    margin-bottom: 30px;
}

.section-heading-large {
    color: var(--secondary-color, #B87333);
    margin: 50px 0 30px;
}

/* ==========================================
   RESPONSIVE & MOBILE
   ========================================== */

@media (max-width: 768px) {
    .error-code {
        font-size: 3rem;
    }

    .error-title {
        font-size: 1.5rem;
    }

    .error-message {
        font-size: 1rem;
    }

    .sticky-top-custom {
        position: relative;
        top: auto;
    }

    .badge-circle {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}

/* ==========================================
   UTILITY CLASSES FOR COMMON PATTERNS
   ========================================== */

/* Display utilities (replacing inline style="display: none;") */
.hidden { display: none !important; }
.visible { display: block !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* Spacing utilities */
.space-none { margin: 0; padding: 0; }
.space-xs { margin: 5px; }
.space-sm { margin: 10px; }
.space-md { margin: 20px; }
.space-lg { margin: 30px; }

.mb-xs { margin-bottom: 5px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 30px; }

/* Color utilities for theme consistency */
.color-primary { color: #122E5B; }
.color-secondary { color: #B87333; }
.color-neutral { color: #666; }
.color-light { color: #999; }

/* Background utilities */
.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: white; }

/* ==========================================
   OPTIMIZATION NOTES
   ========================================== */

/*
  MIGRATION GUIDE - Convert inline styles to CSS classes:
  
  BEFORE (in HTML):
  <div style="display: flex; align-items: center; justify-content: center;">
  
  AFTER (in HTML):
  <div class="flex-center">
  
  BENEFITS:
  ✅ Reduced HTML file size
  ✅ Improved caching (CSS cached separately)
  ✅ Better code maintainability
  ✅ Easier responsive design updates
  ✅ Single source of truth for styling
  ✅ Better CSS minification
  
  INLINE STYLES FOUND (20+):
  - Error pages: 8 inline styles → 3 CSS classes
  - Alerts: 4 inline styles → 2 CSS classes
  - Dashboard: 3 inline styles → 3 CSS classes
  - Forms: 2 inline styles → 2 CSS classes
  - Section backgrounds: 3 inline styles → 2 CSS classes
  
  POTENTIAL REDUCTION:
  - Estimated 2.5 KB of HTML reduction across views
  - Improved CSS cachability and minification
  
  FILES TO MIGRATE (Phase 3 Follow-up):
  1. views/errors/404.php - Apply .error-container, .error-code, .error-title, .error-message
  2. views/errors/500.php - Apply same error page classes
  3. views/errors/maintenance.php - Apply .maintenance-info-text
  4. views/dashboard/partials/topbar.php - Apply .search-results-dropdown, .sticky-top-custom
  5. views/frontend/components/contact-form-widget.php - Apply .contact-alert
  6. views/frontend/components/enquiry-form.php - Apply .form-message-container
  7. views/frontend/components/get-in-touch-form.php - Apply .form-message-container, .form-group-spacing
  8. views/dashboard/pages/communications/index.php - Apply .badge-circle, .chart-container
  9. views/frontend/pages/home.php - Apply .section-light-bg, .section-heading, .section-heading-large
  
  ROLLOUT STRATEGY:
  1. Load this CSS file (css-optimization.css)
  2. Test with existing inline styles (no conflicts expected)
  3. Migrate each view file one at a time
  4. Verify responsive design on mobile/tablet
  5. Run performance audit to confirm improvements
  6. Remove original inline styles after verification
*/


/* ===== END: css-optimization.css ===== */

/* ===== BEGIN: mobile-responsive.css ===== */
/**
 * Mobile Responsive Fixes
 * Ensures perfect mobile experience with no horizontal scroll
 */

/* Force no horizontal scroll */
html,
body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

* {
    max-width: 100%;
}

/* Container fixes */
.section,
.row {
    overflow-x: hidden;
    max-width: 100%;
}

/* Prevent rows from causing overflow */
.row {
    margin-left: -15px;
    margin-right: -15px;
}

@media (max-width: 768px) {
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .col,
    [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Image and media fixes */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Slider/Swiper fixes */
.swiper,
.swiper-container {
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.swiper-wrapper {
    max-width: 100%;
}

/* Package cards on mobile */
@media (max-width: 768px) {
    .package-card,
    .card {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
}

/* Hero sections */
.hero-section,
.hero-banner,
.hero-banner-section {
    overflow: hidden;
    max-width: 100vw;
}

/* Navigation fixes */
@media (max-width: 992px) {
    .navbar {
        overflow: hidden;
    }
    
    .nav-menu {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* Footer fixes */
@media (max-width: 768px) {
    .footer {
        overflow-x: hidden;
    }
    
    .footer-widgets,
    .footer-bottom {
        width: 100%;
    }
}

/* Padding adjustments for mobile */
@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    /* Reduce section title sizes */
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .section-title p {
        font-size: 0.95rem;
    }
}

/* Button adjustments */
@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Prevent forms from causing overflow */
form {
    max-width: 100%;
}

input,
textarea,
select {
    max-width: 100%;
    box-sizing: border-box;
}

/* Grid system mobile fixes */
@media (max-width: 768px) {
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Table responsiveness */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* ===== END: mobile-responsive.css ===== */

/* ===== BEGIN: get-in-touch.css ===== */
/* Get In Touch Modern Section - Compact & Stylish */
.contact-section {
    position: relative;
    padding: 60px 0;
    background: #f8f9fa;
    overflow: hidden;
}

/* Compact Contact Wrapper */
.contact-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(18, 46, 91, 0.08);
}

/* Contact Info Box - Theme Colors */
.contact-info-box,
.contact-form-box {
    background: linear-gradient(135deg, #122E5B 0%, #0A1E3F 100%);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    color: #ffffff;
}

.contact-form-box {
    background: linear-gradient(135deg, #B87333 0%, #a66429 100%);
}

.contact-info-header,
.contact-form-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.contact-info-header i,
.contact-form-header i {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-info-header h5,
.contact-form-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact List Items */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    margin-top: 2px;
    opacity: 0.9;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.contact-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.contact-text a,
.contact-text span {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-all;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Form Styling */
.form-row {
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.form-input::placeholder {
    color: #999;
}

/* Captcha Row */
.captcha-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.captcha-row img {
    height: 42px;
    border-radius: 6px;
    flex-shrink: 0;
}

.captcha-input {
    flex: 1;
    margin-bottom: 0 !important;
}

.captcha-refresh-btn {
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.95);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: #B87333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-refresh-btn:hover {
    background: #ffffff;
    transform: rotate(180deg);
}

/* Submit Button - Theme Colors */
.contact-form-box .submit-btn {
    width: 100%;
    padding: 0.875rem 2rem;
    background: rgba(255,255,255,0.95);
    color: #B87333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-form-box .submit-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.3);
}

/* Responsive Design for Compact Layout */
@media (max-width: 767px) {
    .contact-wrapper {
        padding: 1.25rem;
    }
    
    .contact-info-box,
    .contact-form-box {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .contact-item {
        padding: 0.625rem;
    }
    
    .captcha-row {
        flex-wrap: wrap;
    }
    
    .captcha-row img {
        width: 100%;
        max-width: 200px;
    }
}

/* Legacy Support - Keep old styles below */
/* ============================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side - Contact Info */
.contact-info {
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #B87333;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #122E5B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-info > p:first-of-type {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
    margin: 12px 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info p:last-child {
    border-bottom: none;
}

.contact-info p i {
    color: #B87333;
    font-size: 18px;
    width: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-info a {
    color: #122E5B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-info a:hover {
    color: #B87333;
}

/* Right Side - Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #B87333, #122E5B);
}

.contact-form h4 {
    font-size: 22px;
    font-weight: 700;
    color: #122E5B;
    margin: 0 0 25px 0;
    text-align: center;
}

/* Form Groups */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #122E5B;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #B87333;
    background: white;
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Captcha Group */
.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}

.captcha-image {
    flex-shrink: 0;
}

.captcha-image img {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 50px;
    display: block;
}

.captcha-input {
    flex: 1;
    min-width: 150px;
    padding: 14px 16px !important;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
     border-color: #B87333;
    background: #B87333;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

/* .captcha-refresh:hover {
    border-color: #B87333;
    background: #B87333;
    color: white;
} */

.captcha-refresh i {
    font-size: 16px;
}

/* Submit Button */
.contact-form .submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, #B87333, #a66429);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    margin-top: 10px;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.5);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .submit-btn i {
    margin-right: 8px;
}

/* Alert Messages */
.contact-form .alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-form .alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form .alert.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form .alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Decorative Background Elements */
.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(184, 115, 51, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(18, 46, 91, 0.05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    z-index: 0;
}
/* Responsive Design */

/* Tablet and Below (iPad size) */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-grid {
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-info h3 {
        font-size: 26px;
    }
    
    .contact-info > p:first-of-type {
        font-size: 14px;
    }

    .contact-form h4 {
        font-size: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 16px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        display: flex;
        justify-content: center;
    }

    .captcha-input {
        width: 100%;
        min-width: auto;
    }
    
    .captcha-refresh {
        width: 100%;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .contact-info > p:first-of-type {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
        margin: 10px 0;
        padding: 8px 0;
    }
    
    .contact-info p i {
        font-size: 16px;
        width: 20px;
        margin-right: 10px;
    }

    .contact-form h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-form label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-form textarea {
        min-height: 90px;
    }

    .contact-form .submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .captcha-refresh {
        height: 50px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .contact-section {
        padding: 30px 10px;
    }
    
    .contact-info,
    .contact-form {
        padding: 18px;
    }
    
    .contact-info h3 {
        font-size: 22px;
    }
    
    .contact-form h4 {
        font-size: 17px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 13px;
    }
    
    .contact-form .submit-btn {
        padding: 13px 25px;
        font-size: 14px;
    }
}

/* Ensure forms are always visible */
@media (max-width: 1024px) {
    .contact-info,
    .contact-form {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left Side - Contact Info */
.contact-info {
    padding: 35px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #B87333;
}

.contact-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #122E5B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-info > p:first-of-type {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info p {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #555;
    margin: 12px 0;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-info p:last-child {
    border-bottom: none;
}

.contact-info p i {
    color: #B87333;
    font-size: 18px;
    width: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.contact-info a {
    color: #122E5B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    word-break: break-word;
}

.contact-info a:hover {
    color: #B87333;
}

/* Right Side - Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #B87333, #122E5B);
}

.contact-form h4 {
    font-size: 22px;
    font-weight: 700;
    color: #122E5B;
    margin: 0 0 25px 0;
    text-align: center;
}

/* Form Groups */
.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #122E5B;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f8f9fa;
    color: #333;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.contact-form input:not([type="checkbox"]):focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #B87333;
    background: white;
    box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.1);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
}

/* Captcha Group */
.captcha-group {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    flex-wrap: wrap;
}

.captcha-image {
    flex-shrink: 0;
}

.captcha-image img {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    height: 50px;
    display: block;
}

.captcha-input {
    flex: 1;
    min-width: 150px;
    padding: 14px 16px !important;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
     border-color: #B87333;
    background: #B87333;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

/* .captcha-refresh:hover {
    border-color: #B87333;
    background: #B87333;
    color: white;
} */

.captcha-refresh i {
    font-size: 16px;
}

/* Submit Button */
.contact-form .submit-btn {
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, #B87333, #a66429);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.4);
    margin-top: 10px;
}

.contact-form .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.5);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

.contact-form .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-form .submit-btn i {
    margin-right: 8px;
}

/* Alert Messages */
.contact-form .alert {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.contact-form .alert i {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-form .alert.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form .alert.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Decorative Background Elements */
.contact-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(184, 115, 51, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(18, 46, 91, 0.05);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    z-index: 0;
}
/* Responsive Design */

/* Tablet and Below (iPad size) */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }
    
    .contact-grid {
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-info h3 {
        font-size: 26px;
    }
    
    .contact-info > p:first-of-type {
        font-size: 14px;
    }

    .contact-form h4 {
        font-size: 20px;
    }
    
    .contact-form .form-group {
        margin-bottom: 16px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .captcha-image {
        display: flex;
        justify-content: center;
    }

    .captcha-input {
        width: 100%;
        min-width: auto;
    }
    
    .captcha-refresh {
        width: 100%;
        height: 45px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
        border-radius: 15px;
        margin-bottom: 30px;
    }

    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .contact-info > p:first-of-type {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        font-size: 14px;
        margin: 10px 0;
        padding: 8px 0;
    }
    
    .contact-info p i {
        font-size: 16px;
        width: 20px;
        margin-right: 10px;
    }

    .contact-form h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .contact-form label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .contact-form textarea {
        min-height: 90px;
    }

    .contact-form .submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .captcha-refresh {
        height: 50px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .contact-section {
        padding: 30px 10px;
    }
    
    .contact-info,
    .contact-form {
        padding: 18px;
    }
    
    .contact-info h3 {
        font-size: 22px;
    }
    
    .contact-form h4 {
        font-size: 17px;
    }
    
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        padding: 11px 12px;
        font-size: 13px;
    }
    
    .contact-form .submit-btn {
        padding: 13px 25px;
        font-size: 14px;
    }
}

/* Ensure forms are always visible */
@media (max-width: 1024px) {
    .contact-info,
    .contact-form {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}
/* ===== END: get-in-touch.css ===== */

/* ===== BEGIN: call-me-back.css ===== */
Call Me Back Modal Popup Styles

.call-me-back-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.call-me-back-modal.show {
    visibility: visible;
    opacity: 1;
}

.call-me-back-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.call-me-back-modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(18, 46, 91, 0.15);
    animation: slideInDown 0.4s ease-out;
}

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

.call-me-back-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
    z-index: 10;
}

.call-me-back-close-btn:hover {
    color: #122E5B;
}

.call-me-back-header {
    text-align: center;
    margin-bottom: 2rem;
}

.call-me-back-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #122E5B;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.call-me-back-header p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Form Styles */
.call-me-back-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group .form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #122E5B;
    margin-bottom: 0.5rem;
}

.form-group .text-danger {
    color: #dc3545;
    margin-left: 0.25rem;
}

.form-group .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #495057;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group .form-control:focus {
    outline: none;
    border-color: #B87333;
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.15);
}

.form-group .form-control::placeholder {
    color: #adb5bd;
}

/* Captcha Wrapper */
.captcha-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.captcha-image {
    flex: 1;
    height: auto;
    min-height: 50px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
}

.btn-captcha-refresh {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #122E5B;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    line-height: 1;
}

.btn-captcha-refresh:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.captcha-input {
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Submit Button */
.btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #B87333 0%, #a66429 100%);
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 115, 51, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-text {
    display: inline;
}

.btn-loading {
    display: inline;
}

/* Alert Messages */
.call-me-back-modal .alert {
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: none;
    margin-bottom: 1.5rem;
}

.call-me-back-modal .alert-success {
    background-color: #d4edda;
    color: #155724;
}

.call-me-back-modal .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.call-me-back-modal .alert i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Note at bottom */
.call-me-back-note {
    font-size: 0.85rem;
    color: #6c757d;
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 576px) {
    .call-me-back-modal-content {
        padding: 1.75rem 1.25rem;
        max-width: calc(100% - 1rem);
    }

    .call-me-back-header h2 {
        font-size: 1.5rem;
    }

    .call-me-back-header p {
        font-size: 0.9rem;
    }

    .call-me-back-form {
        gap: 1rem;
    }

    .form-group .form-control {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }
}

/* Scrollbar styles for modal */
.call-me-back-modal-content::-webkit-scrollbar {
    width: 6px;
}

.call-me-back-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.call-me-back-modal-content::-webkit-scrollbar-thumb {
    background: #dec0a1;
    border-radius: 3px;
}

.call-me-back-modal-content::-webkit-scrollbar-thumb:hover {
    background: #B87333;
}

.z-index-999999 {
    z-index: 999999 !important;
}
/* ===== END: call-me-back.css ===== */

