/* =================================================================
   MAIN STYLES - ALFARUQ TRAVEL (MODERN GREEN THEME)
   ================================================================= */

/* ============================================
   1. MODERN COLOR SYSTEM (GREEN DOMINANT)
   ============================================ */
:root {
    /* PRIMARY GREEN PALETTE */
    --green-50: #E8F5E9;
    --green-100: #C8E6C9;
    --green-200: #A5D6A7;
    --green-300: #81C784;
    --green-400: #66BB6A;
    --green-500: #4CAF50;
    --green-600: #43A047;
    --green-700: #388E3C;
    --green-800: #2E7D32;
    --green-900: #1B5E20;
    
    /* ACCENT COLORS */
    --accent-50: #FFFDE7;
    --accent-100: #FFF9C4;
    --accent-200: #FFF59D;
    --accent-300: #FFF176;
    --accent-400: #FFEE58;
    --accent-500: #FFEB3B;
    --accent-600: #FDD835;
    --accent-700: #FBC02D;
    --accent-800: #F9A825;
    --accent-900: #F57F17;
    
    /* NEUTRAL COLORS */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #E0E0E0;
    --neutral-400: #BDBDBD;
    --neutral-500: #9E9E9E;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;
    
    /* GRADIENTS */
    --gradient-green: linear-gradient(135deg, var(--green-400) 0%, var(--green-700) 100%);
    --gradient-green-light: linear-gradient(135deg, var(--green-300) 0%, var(--green-500) 100%);
    --gradient-green-dark: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-400) 0%, var(--accent-700) 100%);
    --gradient-green-accent: linear-gradient(135deg, var(--green-500) 0%, var(--accent-500) 100%);
    
    /* SHADOWS */
    --shadow-xs: 0 1px 3px rgba(76, 175, 80, 0.05);
    --shadow-sm: 0 2px 8px rgba(76, 175, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(76, 175, 80, 0.12);
    --shadow-lg: 0 8px 28px rgba(76, 175, 80, 0.16);
    --shadow-xl: 0 12px 40px rgba(76, 175, 80, 0.2);
    --shadow-green: 0 4px 20px rgba(76, 175, 80, 0.15);
    --shadow-accent: 0 4px 20px rgba(255, 235, 59, 0.15);
    
    /* BORDER RADIUS */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 40px;
    --radius-circle: 50%;
    
    /* TRANSITIONS */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* SPACING */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
}

/* ============================================
   2. BASE STYLES & TYPOGRAPHY
   ============================================ */
body, button, input, select, textarea {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { 
    font-size: 2rem; 
    position: relative; 
    display: inline-block; 
}
h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
}

p {
    font-size: 1rem;
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--neutral-800);
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
/* Background Colors */
.bg-green-50 { background-color: var(--green-50) !important; }
.bg-green-100 { background-color: var(--green-100) !important; }
.bg-green-200 { background-color: var(--green-200) !important; }
.bg-green-300 { background-color: var(--green-300) !important; }
.bg-green-400 { background-color: var(--green-400) !important; }
.bg-green-500 { background-color: var(--green-500) !important; }
.bg-green-600 { background-color: var(--green-600) !important; }
.bg-green-700 { background-color: var(--green-700) !important; }
.bg-green-800 { background-color: var(--green-800) !important; }
.bg-green-900 { background-color: var(--green-900) !important; }
.bg-neutral-50 { background-color: var(--neutral-50) !important; }
.bg-neutral-100 { background-color: var(--neutral-100) !important; }
.bg-green-light { background-color: var(--green-50) !important; }

/* Text Colors */
.text-green-50 { color: var(--green-50) !important; }
.text-green-100 { color: var(--green-100) !important; }
.text-green-200 { color: var(--green-200) !important; }
.text-green-300 { color: var(--green-300) !important; }
.text-green-400 { color: var(--green-400) !important; }
.text-green-500 { color: var(--green-500) !important; }
.text-green-600 { color: var(--green-600) !important; }
.text-green-700 { color: var(--green-700) !important; }
.text-green-800 { color: var(--green-800) !important; }
.text-green-900 { color: var(--green-900) !important; }
.text-green-gradient { background: var(--gradient-green); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-neutral-50 { color: var(--neutral-50) !important; }
.text-neutral-100 { color: var(--neutral-100) !important; }
.text-neutral-200 { color: var(--neutral-200) !important; }
.text-neutral-300 { color: var(--neutral-300) !important; }
.text-neutral-400 { color: var(--neutral-400) !important; }
.text-neutral-500 { color: var(--neutral-500) !important; }
.text-neutral-600 { color: var(--neutral-600) !important; }
.text-neutral-700 { color: var(--neutral-700) !important; }
.text-neutral-800 { color: var(--neutral-800) !important; }
.text-neutral-900 { color: var(--neutral-900) !important; }
.text-accent-500 { color: var(--accent-500) !important; }

/* Border Colors */
.border-green-100 { border-color: var(--green-100) !important; }
.border-green-200 { border-color: var(--green-200) !important; }
.border-green-300 { border-color: var(--green-300) !important; }
.border-neutral-200 { border-color: var(--neutral-200) !important; }

/* Gradients */
.bg-green-gradient { background: var(--gradient-green) !important; }
.bg-accent-gradient { background: var(--gradient-accent) !important; }

/* Badges */
.badge.bg-green-gradient {
    background: var(--gradient-green) !important;
    color: white;
    font-weight: 600;
}
.badge.bg-accent-gradient {
    background: var(--gradient-accent) !important;
    color: var(--neutral-900);
    font-weight: 600;
}

/* ============================================
   4. NAVBAR STYLES
   ============================================ */
.navbar-modern-green {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    transition: all var(--transition-normal);
}
.navbar-modern-green.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

/* Brand */
.navbar-modern-green .navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.navbar-modern-green .navbar-brand img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.2));
    transition: transform var(--transition-normal);
}
.navbar-modern-green .navbar-brand:hover img {
    transform: scale(1.05) rotate(5deg);
}
.navbar-modern-green .navbar-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

/* Nav Links */
.navbar-modern-green .nav-link {
    color: var(--neutral-800) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
}
.navbar-modern-green .nav-link:hover {
    color: var(--green-700) !important;
    background: rgba(76, 175, 80, 0.05);
}
.navbar-modern-green .nav-link.active {
    color: var(--green-700) !important;
    background: rgba(76, 175, 80, 0.1);
    font-weight: 600;
}
.navbar-modern-green .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 1.5px;
}

/* Dropdown Menu */
.navbar-modern-green .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
}
.navbar-modern-green .dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--neutral-700);
    transition: all var(--transition-fast);
}
.navbar-modern-green .dropdown-item:hover {
    background-color: var(--green-50);
    color: var(--green-700);
}
.navbar-modern-green .dropdown-item.active {
    background-color: var(--green-100);
    color: var(--green-700);
    font-weight: 600;
}

/* ============================================
   5. BUTTON STYLES
   ============================================ */
.btn-modern-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    outline: none;
}
/* Button Sizes */
.btn-modern-green.sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}
.btn-modern-green.lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}
.btn-modern-green.with-icon {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
/* Button Variants */
.btn-modern-green.primary {
    background: var(--gradient-green);
    color: white;
    box-shadow: var(--shadow-green);
}
.btn-modern-green.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-green-dark);
}
.btn-modern-green.accent {
    background: var(--gradient-accent);
    color: var(--neutral-900);
    box-shadow: var(--shadow-accent);
}
.btn-modern-green.accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--neutral-900);
}
.btn-modern-green.outline {
    background: transparent;
    border: 2px solid var(--green-400);
    color: var(--green-700);
    font-weight: 600;
}
.btn-modern-green.outline:hover {
    background: rgba(76, 175, 80, 0.05);
    border-color: var(--green-600);
    color: var(--green-800);
    transform: translateY(-2px);
}
.btn-modern-green.outline-green {
    background: transparent;
    border: 2px solid var(--green-400);
    color: var(--green-700);
    font-weight: 600;
}
.btn-modern-green.outline-green:hover {
    background: rgba(76, 175, 80, 0.05);
    border-color: var(--green-600);
    color: var(--green-800);
    transform: translateY(-2px);
}
.btn-modern-green.outline.text-white {
    border-color: white;
    color: white;
}

/* ============================================
   6. FORM STYLES
   ============================================ */
.form-control-modern {
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: white;
    color: var(--neutral-800);
    width: 100%;
    font-family: inherit;
}
.form-control-modern:focus {
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
    outline: none;
    background-color: var(--green-50);
}
.form-control-modern::placeholder {
    color: var(--neutral-400);
    opacity: 1;
}
.form-control-modern.is-valid {
    border-color: var(--green-500);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%234CAF50' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: 2.5rem;
    background-color: rgba(76, 175, 80, 0.05);
}
.form-control-modern.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: 2.5rem;
    background-color: rgba(220, 53, 69, 0.05);
}
.form-control-modern.is-valid:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}
.form-control-modern.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25);
}

/* Form Labels */
.form-label-modern {
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

/* Form Validation Messages */
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: #dc3545;
    font-weight: 500;
}
.form-control-modern.is-invalid ~ .invalid-feedback {
    display: block;
}
.error-message {
    color: #dc3545;
    font-size: 0.8125rem;
    margin-top: 0.375rem;
    display: block;
    animation: fadeIn 0.3s ease-in;
    font-weight: 500;
}

/* Success/Error Messages */
.success-message {
    background-color: rgba(212, 237, 218, 0.9);
    border: 1px solid rgba(195, 230, 203, 0.8);
    color: var(--green-800);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease-in;
    margin-bottom: var(--space-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.success-message i {
    color: var(--green-500);
    font-size: 1.1rem;
}
.form-error-message {
    background-color: rgba(248, 215, 218, 0.9);
    border: 1px solid rgba(245, 198, 203, 0.8);
    color: #721c24;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    animation: fadeIn 0.3s ease-in;
    margin-bottom: var(--space-md);
    font-weight: 500;
}
.form-error-message i {
    color: #dc3545;
}

/* Form Check Modern */
.form-check-modern {
    padding: 0.75rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
    background: white;
}
.form-check-modern:hover {
    border-color: var(--green-300);
    background-color: var(--green-50);
}
.form-check-modern .form-check-input {
    margin-top: 0.3rem;
    border-color: var(--green-400);
}
.form-check-modern .form-check-input:checked {
    background-color: var(--green-500);
    border-color: var(--green-500);
}
.form-check-modern .form-check-label {
    font-weight: 500;
    color: var(--neutral-700);
    margin-left: 0.5rem;
}

/* Form Select Modern */
.form-select-modern {
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: white;
    color: var(--neutral-800);
    width: 100%;
}
.form-select-modern:focus {
    border-color: var(--green-400);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
    outline: none;
}

/* Textarea */
textarea.form-control-modern {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
    padding: 1rem;
}

/* ============================================
   7. CARD STYLES
   ============================================ */
.card-modern-green-light {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--neutral-200);
    overflow: hidden;
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.card-modern-green-light:hover {
    transform: translateY(-8px);
    border-color: var(--green-300);
    box-shadow: var(--shadow-lg);
}
.card-modern-green-light.featured {
    border-color: var(--accent-500);
    box-shadow: var(--shadow-accent);
}

/* Card Image */
.card-img-modern {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.card-modern-green-light:hover .card-img-modern {
    transform: scale(1.05);
}

/* Card Body */
.card-body-modern {
    padding: var(--space-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}
.card-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}
.card-text-modern {
    color: var(--neutral-700);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Card Badge */
.card-badge-popular {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--gradient-accent);
    color: var(--neutral-900);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    border: 1px solid rgba(255, 235, 59, 0.3);
}

/* Price Card Specific */
.package-price-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
}

/* ============================================
   8. TESTIMONIAL STYLES
   ============================================ */
.testimonial-clean-modern {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 2px solid var(--green-100);
    position: relative;
    transition: all var(--transition-normal);
    height: 100%;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.testimonial-clean-modern:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}
.testimonial-clean-modern::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    color: var(--green-100);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
    z-index: 0;
}

/* Testimonial Content */
.testimonial-content-clean {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-lg);
}
.testimonial-content-clean p {
    color: var(--neutral-800);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Testimonial Rating */
.testimonial-rating-clean {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: var(--space-md);
}
.testimonial-rating-clean i {
    color: var(--accent-500);
    font-size: 0.9rem;
}
.rating-badge-clean {
    background: var(--green-50);
    color: var(--green-800);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 0.5rem;
    border: 1px solid var(--green-200);
}

/* Testimonial Author */
.testimonial-author-clean {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--neutral-200);
}
.testimonial-author-img-clean {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-300);
}
.testimonial-author-info-clean h6 {
    color: var(--green-900);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.testimonial-author-info-clean small {
    color: var(--neutral-600);
    font-size: 0.85rem;
}
.testimonial-date-clean {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--neutral-500);
    font-size: 0.8rem;
}

/* Testimonial Departure Info */
.testimonial-departure-clean {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--neutral-100);
}
.testimonial-departure-clean small {
    color: var(--green-700);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Testimonial Grid */
.testimonial-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

/* ============================================
   9. GALLERY STYLES
   ============================================ */
.gallery-item-modern-light {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid var(--neutral-200);
    background: white;
}
.gallery-item-modern-light:hover {
    transform: translateY(-5px);
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
}
.gallery-img-modern {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.gallery-overlay-modern-light {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(27, 94, 32, 0.8));
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.gallery-item-modern-light:hover .gallery-overlay-modern-light {
    opacity: 1;
}
.gallery-info-modern {
    color: white;
}

/* ============================================
   10. PARTNER STYLES
   ============================================ */
.partner-card-modern {
    background: white;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--neutral-200);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.partner-card-modern:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.partner-logo-modern {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.partner-logo-modern img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.partner-info-modern h6 {
    color: var(--green-900);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.partner-info-modern small {
    color: var(--neutral-600);
}

/* ============================================
   11. HERO & CAROUSEL
   ============================================ */
.hero-overlay-modern {
    background: linear-gradient(
        to bottom,
        rgba(27, 94, 32, 0.7) 0%,
        rgba(46, 125, 50, 0.6) 50%,
        rgba(76, 175, 80, 0.5) 100%
    );
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 0 1rem;
}
.hero-overlay-modern h1 {
    color: white !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.hero-overlay-modern .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--green-500) !important;
    border-radius: 50% !important;
    padding: 15px !important;
    width: 50px !important;
    height: 50px !important;
    background-size: 60% !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid transparent !important;
    margin: 0 5px !important;
}
.carousel-indicators button.active {
    background-color: var(--green-500) !important;
    border-color: white !important;
    transform: scale(1.2);
}

/* ============================================
   12. PACKAGE DETAIL STYLES
   ============================================ */
.card-body-flyer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%);
    overflow: hidden;
    position: relative;
}
.flyer-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-300);
}
.flyer-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 1.5rem;
    transition: all var(--transition-normal);
}
.flyer-wrapper:hover .flyer-image {
    transform: scale(1.02);
}
.flyer-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 10;
}
.flyer-wrapper:hover .flyer-overlay {
    opacity: 1;
    transform: translateY(0);
}
.flyer-zoom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--green-500);
    color: white;
    border-radius: var(--radius-circle);
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid white;
}
.flyer-zoom-btn:hover {
    background: var(--green-600);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}
.flyer-zoom-btn i {
    font-size: 1.2rem;
}
.card-footer-flyer {
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
    padding: 1rem var(--space-xl);
}

/* Package Facilities */
.package-facilities {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-facilities li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.5;
    border-bottom: 1px solid var(--neutral-100);
}
.package-facilities li:last-child {
    border-bottom: none;
}
.package-facilities li::before {
    content: "✓";
    color: var(--green-500);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Price Options Vertical */
.price-options-vertical {
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-md);
    background: white;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.price-option-vertical {
    padding: 1.25rem;
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-normal);
}
.price-option-vertical:last-child {
    border-bottom: none;
}
.price-option-vertical:hover {
    background-color: var(--green-50);
    transform: translateX(5px);
}
.price-type-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 100%;
    transition: all var(--transition-normal);
}
.price-option-vertical:hover .price-type-badge {
    transform: scale(1.05);
}
.price-vertical-info {
    text-align: left;
}
.price-amount-vertical {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 0.25rem;
}
.btn-price-select-vertical {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--gradient-green);
    color: white;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    text-align: center;
}
.btn-price-select-vertical:hover {
    background: var(--gradient-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   13. SCHEDULE TABLE STYLES
   ============================================ */
#schedules .table {
    margin-bottom: 0;
}
#schedules .table thead th {
    font-weight: 600;
    padding: 1rem;
    background-color: var(--green-100);
    border-bottom: 2px solid var(--green-300);
    color: var(--green-900);
    vertical-align: middle;
}
#schedules .table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-normal);
}
#schedules .table tbody tr:hover td {
    background-color: rgba(76, 175, 80, 0.03);
}

/* Badge Styles */
.airline-badge {
    padding: 0.25rem 0.75rem;
    background-color: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--neutral-800);
    display: inline-block;
}
.day-badge {
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-50);
    border: 1px solid var(--accent-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-900);
    display: inline-block;
    min-width: 70px;
    text-align: center;
}
.slot-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
    text-align: center;
}
.slot-badge.available {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--green-800);
}
.slot-badge.full {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    min-width: 100px;
}
.status-badge.status-available {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--green-800);
}
.status-badge.status-available i {
    color: var(--green-600);
    font-size: 0.6rem;
}
.status-badge.status-full {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}
.status-badge.status-full i {
    color: #dc3545;
    font-size: 0.6rem;
}
.duration-badge {
    padding: 0.25rem 0.75rem;
    background-color: var(--neutral-100);
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neutral-800);
    display: inline-flex;
    align-items: center;
    min-width: 70px;
    justify-content: center;
}

/* ============================================
   14. QNA FORM SPECIFIC STYLES
   ============================================ */
.qna-error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.05);
}
.qna-error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: fadeIn 0.3s ease;
}
#qnaForm button[type="submit"].loading {
    opacity: 0.7;
    pointer-events: none;
}
#qnaForm button[type="submit"].loading i {
    animation: spin 1s linear infinite;
}
.qna-success-message {
    background-color: rgba(212, 237, 218, 0.9);
    border: 1px solid rgba(195, 230, 203, 0.8);
    color: var(--green-800);
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease;
    margin-bottom: var(--space-md);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.qna-success-message i {
    color: var(--green-500);
    font-size: 1.1rem;
}
.border-bottom.pb-2 {
    border-color: var(--green-300) !important;
}

/* ============================================
   15. FOOTER STYLES
   ============================================ */
.footer-modern-green {
    background: var(--green-900);
    color: white;
    padding: var(--space-2xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
}
.footer-modern-green::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
}

/* Social Links */
.social-links-modern {
    display: flex;
    gap: 0.75rem;
}
.social-link-modern {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    text-decoration: none;
}
.social-link-modern:hover {
    background: var(--green-500);
    transform: translateY(-3px);
    color: white;
}

/* Footer Links */
.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-modern li {
    margin-bottom: 0.75rem;
}
.footer-links-modern a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.footer-links-modern a:hover {
    color: white;
    padding-left: 0.5rem;
}

/* Contact Info */
.contact-info-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-modern li {
    margin-bottom: 1rem;
}

/* Legal Info */
.legal-info-modern p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}
.legal-info-modern small {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   16. SPECIAL ELEMENTS
   ============================================ */
/* WhatsApp Float */
.whatsapp-float-modern {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-normal);
    text-decoration: none;
}
.whatsapp-float-modern:hover {
    transform: scale(1.1);
    color: white;
    background: #128C7E;
}
.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

/* Back to Top */
.back-to-top-modern {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-green);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    cursor: pointer;
    transition: all var(--transition-normal);
}
.back-to-top-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Divider */
.divider-modern {
    padding: var(--space-xl) 0;
    background: var(--neutral-100);
}

/* Icon Box */
.icon-box-modern {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}
.icon-box-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.icon-box-modern i {
    font-size: 3rem;
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Empty State */
.empty-state-modern {
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--neutral-300);
}
.empty-state-modern i {
    font-size: 4rem;
    color: var(--green-300);
    margin-bottom: var(--space-md);
}

/* Certificate Styles */
.certificate-container {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--neutral-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
}
.certificate-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.certificate-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: center;
    transition: transform var(--transition-normal);
}
.certificate-card:hover {
    transform: translateY(-5px);
}
.certificate-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    height: 240px;
    border: 1px solid var(--neutral-300);
    background-color: white;
}
.certificate-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}
.certificate-image:hover .certificate-img {
    transform: scale(1.03);
}
.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.certificate-image:hover .certificate-overlay {
    opacity: 1;
}
.view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--green-600);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: background-color var(--transition-normal);
}
.view-certificate:hover {
    background-color: var(--green-700);
    color: white;
}
.certificate-label {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--neutral-900);
    font-size: 1.1rem;
}

/* Icon Box Small */
.icon-box-small {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Character Counter */
.character-counter {
    font-size: 0.75rem;
    color: var(--neutral-500);
    text-align: right;
    margin-top: 0.25rem;
}
.character-counter.text-warning {
    color: var(--accent-700);
}
.character-counter.text-danger {
    color: #dc3545;
}

/* ============================================
   17. ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes loading-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Loading state */
.flyer-image.loading {
    opacity: 0.7;
    background: linear-gradient(90deg, var(--neutral-100) 25%, var(--neutral-200) 50%, var(--neutral-100) 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}
.flyer-image.error {
    padding: 3rem;
    background: var(--neutral-100);
    border: 2px dashed var(--neutral-300);
    display: flex;
    align-items: center;
    justify-content: center;
}
.flyer-image.error::before {
    content: "🖼️";
    font-size: 3rem;
    color: var(--neutral-400);
}

/* ============================================
   18. RESPONSIVE DESIGN
   ============================================ */
/* Tablet (768px - 992px) */
@media (max-width: 992px) {
    .flyer-wrapper {
        min-height: 400px;
        max-height: 550px;
    }
    .card-body-flyer,
    .card-body-modern {
        padding: var(--space-lg) !important;
    }
    .card-footer-flyer {
        padding: 0.875rem var(--space-lg);
    }
    .package-price-modern {
        font-size: 1.75rem;
    }
}

/* Mobile Landscape (576px - 768px) */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    .lead { font-size: 1rem !important; }
    
    /* Hero */
    .carousel-item { height: 70vh !important; }
    .hero-overlay-modern h1 { font-size: 2rem !important; }
    .hero-overlay-modern .lead { 
        font-size: 1rem !important; 
        width: 90% !important; 
    }
    
    /* Cards & Flyer */
    .flyer-wrapper {
        min-height: 350px;
        max-height: 480px;
    }
    .flyer-image { padding: 1rem; }
    .flyer-overlay {
        opacity: 1;
        transform: translateY(0);
        top: 1rem;
        right: 1rem;
    }
    .flyer-zoom-btn {
        width: 40px;
        height: 40px;
    }
    .flyer-zoom-btn i { font-size: 1.1rem; }
    
    .card-body-flyer,
    .card-body-modern { padding: var(--space-md) !important; }
    .card-footer-flyer { padding: 0.75rem var(--space-md); }
    .card-title-modern { font-size: 1.125rem !important; }
    .package-price-modern { font-size: 1.5rem; }
    .package-facilities li {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    /* Testimonials */
    .testimonial-grid-clean {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .testimonial-clean-modern {
        padding: var(--space-lg);
    }
    .testimonial-clean-modern::before {
        font-size: 3rem;
        top: 15px;
        right: 15px;
    }
    
    /* Buttons */
    .btn-modern-green.lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Floating Elements */
    .whatsapp-float-modern {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    .back-to-top-modern {
        bottom: 5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Portrait (< 576px) */
@media (max-width: 576px) {
    .flyer-wrapper {
        min-height: 300px;
        max-height: 420px;
    }
    .flyer-image { padding: 0.75rem; }
    .card-body-flyer,
    .card-body-modern { padding: 1rem !important; }
    .card-footer-flyer { padding: 0.625rem 1rem; }
    h2 { font-size: 1.5rem !important; }
    .package-price-modern { font-size: 1.35rem; }
    .package-facilities li {
        font-size: 0.85rem;
        padding: 5px 0;
    }
    .form-control-modern { font-size: 16px; }
    .btn-modern-green { padding: 0.75rem 1.5rem; }
}

/* Tablet Landscape (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { max-width: 95% !important; }
    .hero-overlay-modern h1 { font-size: 2.5rem !important; }
    .testimonial-grid-clean { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop (> 1025px) */
@media (min-width: 1025px) {
    .testimonial-grid-clean { grid-template-columns: repeat(3, 1fr); }
}

/* Large Desktop (> 1200px) */
@media (min-width: 1200px) {
    .flyer-wrapper {
        min-height: 500px;
        max-height: 700px;
    }
    .flyer-image { padding: 2rem; }
}

/* Extra Large Desktop (> 1400px) */
@media (min-width: 1400px) {
    .flyer-wrapper {
        min-height: 550px;
        max-height: 750px;
    }
}

/* Schedule Table Responsive */
@media (max-width: 992px) {
    #schedules .table-responsive {
        border: none;
        box-shadow: none;
    }
    #schedules .table {
        font-size: 0.9rem;
    }
    #schedules .table thead th,
    #schedules .table tbody td {
        padding: 0.75rem 0.5rem;
    }
    .airline-badge,
    .day-badge,
    .slot-badge,
    .status-badge,
    .duration-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
        min-width: auto;
    }
}

@media (max-width: 768px) {
    #schedules .table {
        font-size: 0.85rem;
    }
    #schedules .table thead { display: none; }
    #schedules .table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-md);
        padding: 1rem;
        background-color: white;
        box-shadow: var(--shadow-sm);
    }
    #schedules .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
        border: none;
        border-bottom: 1px solid var(--neutral-100);
    }
    #schedules .table tbody td:last-child {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        padding-top: 1rem;
    }
    #schedules .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--green-800);
        margin-right: 1rem;
        flex: 0 0 40%;
    }
}

/* ============================================
   SEO ENHANCEMENTS
   ============================================ */

/* Hidden for users but visible to search engines */
.d-none.d-print-block {
    display: none !important;
}

@media print {
    .d-none.d-print-block {
        display: block !important;
    }
}

/* Schema.org microdata styling */
[itemscope] {
    border: none !important;
}

[itemprop="name"] {
    font-weight: 600;
}

/* Rich snippet enhancements */
.aggregate-rating {
    display: inline-flex;
    align-items: center;
    background: var(--green-50);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

/* SEO-friendly text formatting */
.seo-text-strong {
    color: var(--green-900);
    font-weight: 600;
}

.seo-text-highlight {
    background-color: var(--accent-100);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* Mobile-first SEO */
@media (max-width: 768px) {
    .seo-content-section {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq-question {
        font-size: 1rem;
    }
}
/* ============================================
   END OF MAIN.CSS
   ============================================ */