/* ============================================
   EDEN CLICKS EVENTS - Luxurious Custom CSS Styles
   ============================================ */

/* ============================================
   LUXURIOUS COLOR PALETTE
   ============================================ */
:root {
    --primary-emerald: #2F7C4F;
    --primary-emerald-hover: #1d5c3b;
    --accent-gold: #D4AF37;
    --accent-gold-hover: #c19b26;
    --background-cream: #FAF5EE;
    --text-primary: #222222;
    --text-secondary: #666666;
    --text-light: #f8f9fa;
    --white: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* ============================================
   GLOBAL STYLES & TYPOGRAPHY
   ============================================ */

/* Global Font Family - Inter (Professional Alternative to Integral CF) */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ============================================
   EVENT CATEGORY CARDS - CLICKABLE STYLES
   ============================================ */

/* Event Category Card Hover Effects */
.event-category-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 124, 79, 0.05), rgba(212, 175, 55, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-category-card:hover::before {
    opacity: 1;
}

.event-category-card .card-body {
    position: relative;
    z-index: 2;
}

/* Icon hover animation */
.event-category-card .card-img-top i {
    transition: all 0.3s ease;
}

.event-category-card:hover .card-img-top i {
    transform: scale(1.1);
}

/* Link styling to maintain card appearance */
a .event-category-card h6 {
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
}

a:hover .event-category-card h6 {
    color: var(--primary-emerald) !important;
}

/* Badge animation on hover */
.event-category-card .badge {
    transition: all 0.3s ease;
}

.event-category-card:hover .badge {
    transform: scale(1.05);
}

/* Body Background with SVG Pattern */
body {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 400px 300px;
    background-position: center;
    background-attachment: fixed;
}

/* Ensure important elements maintain their original backgrounds */
.container, .container-fluid {
    background: transparent;
}

/* Sections with specific backgrounds should override the body background */
.bg-light {
    background-color: var(--background-cream) !important;
}

.bg-black {
    background-color: #000 !important;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

h1 {
    font-weight: 600;
    letter-spacing: 0.01em;
}

h2 {
    font-weight: 500;
    letter-spacing: 0.005em;
}

h3, h4, h5, h6 {
    font-weight: 500;
    letter-spacing: 0.005em;
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: 800 !important;
}

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */

.navbar {
    padding: 0.5rem 0;
    box-shadow: 0 2px 8px var(--shadow-light);
    background-color: var(--background-cream) !important;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.navbar-collapse {
    flex-grow: 1;
    justify-content: center;
}

/* Desktop navigation styles */
@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

.navbar-nav.mx-auto {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar .d-flex.align-items-center.gap-3 {
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
    margin-left: -3rem;
}

.navbar-brand img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.navbar-brand img:hover {
    opacity: 0.8;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-emerald) !important;
}

/* Dropdown Styles */
.dropdown-menu {
    font-family: 'Inter', sans-serif !important;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    font-family: 'Inter', sans-serif !important;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* ============================================
   SEARCH BAR STYLES
   ============================================ */

.search-form {
    min-width: 300px;
}

.search-form .input-group {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-form .input-group-text {
    font-family: 'Inter', sans-serif !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 0.75rem 1rem;
}

.search-form .form-control {
    font-family: 'Inter', sans-serif !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #e0e0e0;
    border-left: none;
    padding: 0.75rem 1rem;
    box-shadow: none;
}

.search-form .form-control:focus {
    background-color: #f5f5f5 !important;
    border-color: #e0e0e0;
    box-shadow: none;
}

.search-form .form-control::placeholder {
    color: #999;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif !important;
}

/* User Action Buttons */
.btn-outline-light.text-dark {
    border: none !important;
    color: #000 !important;
    background: transparent;
    padding: 0.5rem;
    transition: background-color 0.3s ease;
}

.btn-outline-light.text-dark:hover {
    background-color: #f8f9fa !important;
    color: #000 !important;
}

/* ============================================
   BUTTON STYLES
   ============================================ */

.btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-lg {
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.btn-dark,
.btn-primary-emerald {
    background-color: var(--primary-emerald) !important;
    border-color: var(--primary-emerald) !important;
    color: var(--white) !important;
    font-weight: 500;
}

.btn-dark:hover,
.btn-primary-emerald:hover {
    background-color: var(--primary-emerald-hover) !important;
    border-color: var(--primary-emerald-hover) !important;
    color: var(--white) !important;
}

.btn-light {
    background-color: var(--primary-emerald) !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.btn-light:hover {
    background-color: var(--primary-emerald-hover) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

.btn-outline-light {
    background-color: transparent !important;
    border-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.btn-outline-light:hover {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
}

.btn-outline-dark {
    background-color: transparent !important;
    border-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.btn-outline-dark:hover {
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
}

.btn-emerald {
    background-color: var(--primary-emerald) !important;
    border-color: var(--primary-emerald) !important;
    color: var(--white) !important;
    font-weight: 500;
}

.btn-emerald:hover {
    background-color: var(--primary-emerald-hover) !important;
    border-color: var(--primary-emerald-hover) !important;
    color: var(--white) !important;
}

/* ============================================
   HERO SECTION WITH BACKGROUND IMAGE
   ============================================ */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(47, 124, 79, 0.7) 0%, rgba(34, 34, 34, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.4) 0%, rgba(47, 124, 79, 0.3) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-top: 2rem;
}

.hero-section .lead {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-section .text-white-75 {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .hero-image {
    display: none; /* Hide the icon since we have background image */
}

/* Hero Stats with Clean Minimalist Design */
.hero-stats {
    background: var(--background-cream);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero-stats .h4 {
    color: var(--primary-emerald) !important;
    font-weight: 700;
}

.hero-stats small {
    color: var(--text-secondary) !important;
}

/* Decorative Elements */


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

.min-vh-50 {
    min-height: 50vh;
}

/* ============================================
   CARD STYLES
   ============================================ */

.card {
    font-family: 'Inter', sans-serif !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: white !important; /* Ensure cards maintain white background */
    overflow: hidden; /* Prevent content from extending beyond card boundaries */
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-color: var(--accent-gold) !important;
}

.card-title, .card h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 500;
    letter-spacing: 0.005em;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

footer {
    font-family: 'Inter', sans-serif !important;
}

footer h5, footer h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 500;
    letter-spacing: 0.005em;
}

footer a:hover {
    color: #333 !important;
    transition: color 0.3s ease;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-control {
    font-family: 'Inter', sans-serif !important;
    border-radius: 8px;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-group-text {
    font-family: 'Inter', sans-serif !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.badge {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500;
}

.text-warning {
    color: var(--accent-gold) !important;
}

.text-success {
    color: var(--accent-gold) !important;
}

.text-primary {
    color: var(--primary-emerald) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-emerald {
    color: var(--primary-emerald) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-cream {
    color: var(--background-cream) !important;
}

.bg-cream {
    background-color: var(--background-cream) !important;
}

.bg-emerald {
    background-color: var(--primary-emerald) !important;
}

.bg-gold {
    background-color: var(--accent-gold) !important;
}

/* Luxurious hover effects */
.card:hover {
    border-color: var(--accent-gold) !important;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
    transition: all 0.3s ease;
}

/* Refined outline button styling */
.btn-outline-refined {
    background-color: transparent !important;
    border: 2px solid var(--accent-gold) !important;
    color: white;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.btn-outline-refined:hover {
    background-color: var(--white) !important;
    border-color: var(--accent-gold) !important;
    color: var(--primary-emerald) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-medium);
}



/* Premium typography for luxury headings */
.luxury-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.luxury-heading-light {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 400;
    letter-spacing: 0.005em;
    line-height: 1.3;
}

/* Ensure all section headings use serif font */
.section-title,
.card-title,
.fw-bold {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
}

/* Main hero heading styling */
.hero-main-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    color: white !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-accent-text {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    color: var(--accent-gold) !important;
    font-weight: 500;
    letter-spacing: 0.005em;
}

/* Elegant fade-in animations */
.hero-content-animated {
    animation: fadeInUp 0.8s ease-out;
}

.hero-content-animated h1 {
    animation: fadeInUp 0.9s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.hero-content-animated .lead {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-content-animated .btn {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.hero-content-animated .hero-stats {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

/* Enhanced spacing and breathing room */
.section-spacing {
    padding: 5rem 0;
    transition: all 0.3s ease;
}

.section-spacing-large {
    padding: 6rem 0;
    transition: all 0.3s ease;
}

.content-spacing {
    margin-bottom: 3rem;
}

.text-spacing {
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Refined visual polish */
section {
    position: relative;
    overflow: hidden;
}

/* Refined link and element transitions */
a, .btn, .card, .nav-link {
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
}

/* Brand Bar Styles */
.bg-black {
    background-color: #000 !important;
}

.bg-black h5, .bg-black h6 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif !important;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .search-form {
        min-width: 100%;
        margin-top: 1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-collapse {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .navbar-nav.mx-auto {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .display-4 {
        font-size: 2.5rem !important;
    }
    
    .hero-section {
        min-height: 60vh;
        background-position: center center;
    }
    

}

/* About Page Styles */
.about-page {
    padding: 4rem 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-label {
    color: #007bff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-content h1 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Stats Container */
.stats-container {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2rem;
    background: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bootstrap Icons in stat icons */
.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.stat-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

/* Services Overview */
.services-overview {
    margin-bottom: 4rem;
}

.services-overview h2,
.why-choose-us h2 {
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #007bff;
    text-align: center;
}

/* Bootstrap Icons in service icons */
.service-icon i {
    font-size: 2.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon i {
    color: #0056b3;
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    background-color: var(--background-cream) !important;
    color: var(--text-primary);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.contact-cta h2 {
    color: var(--primary-emerald);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.contact-cta .btn {
    background: var(--primary-emerald);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.contact-cta .btn:hover {
    background: var(--primary-emerald-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.btn:hover {
    background: #0056b3;
    text-decoration: none;
    color: white;
}

.btn-primary {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-container {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 0 1rem;
    }
    
    .about-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero {
        gap: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.5rem 1rem;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .contact-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .services-overview h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 1.8rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 250px;
    }
}

/* Portfolio Page Styles */
.portfolio-page {
    padding: 2rem 0;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 300;
}

.portfolio-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

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

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: white;
    transform: translateY(-1px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 123, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-links {
    display: flex;
    gap: 1rem;
}

.portfolio-link {
    background: white;
    color: #007bff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio Actions */
.portfolio-actions {
    text-align: center;
    margin-bottom: 4rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

/* Portfolio CTA */
.portfolio-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.portfolio-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.portfolio-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-cta .btn {
    background: white;
    color: #007bff;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.portfolio-cta .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



/* Responsive Design */
@media (max-width: 768px) {
    .portfolio-header h1 {
        font-size: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-item {
        margin: 0 1rem;
    }
    
    .portfolio-filter {
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-cta {
        padding: 2.5rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .portfolio-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* Packages Page Styles */
.packages-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    min-height: 100vh;
}

.packages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.packages-header h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.packages-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.package-card.popular {
    border-color: #ff6b35;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.package-ribbon {
    position: absolute;
    top: 20px;
    left: -10px;
    background: #ff6b35;
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.package-image {
    height: 250px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.package-content {
    padding: 2rem;
}

.package-content h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.package-pricing {
    margin-bottom: 1.5rem;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.95rem;
    display: block;
}

.sale-price {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.package-features li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: linear-gradient(135deg, #e55d2b 0%, #ff7a2f 100%);
    transform: translateY(-2px);
}

.book-now-section {
    margin: 4rem 0;
}

.book-now-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.book-now-image {
    height: 250px;
    overflow: hidden;
}

.book-now-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-now-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.book-now-content h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 600;
}

.book-now-pricing {
    margin-bottom: 1rem;
}

.suggested-price {
    color: #666;
    font-size: 1.1rem;
}

.book-now-btn {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3a4b 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    transform: translateY(-2px);
}

.packages-info {
    margin-top: 4rem;
}

.packages-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.packages-info .info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.packages-info .info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.packages-info .info-item h4 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Responsive adjustments for packages */
@media (max-width: 768px) {
    .packages-header h1 {
        font-size: 2.2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .book-now-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .book-now-image {
        height: 200px;
    }
    
    .package-card {
        margin: 0 1rem;
    }
    
    .packages-info .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Gallery Page Styles */
.gallery-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    min-height: 100vh;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h1 {
    font-size: 3rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.gallery-filter .filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    color: #666;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    margin-top: auto;
}

.gallery-info h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.gallery-tag {
    background: rgba(255, 107, 53, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.gallery-actions {
    display: flex;
    gap: 0.75rem;
    align-self: flex-end;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-actions-section {
    text-align: center;
    margin: 4rem 0;
}

.load-more-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin-top: 4rem;
}

.gallery-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.gallery-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.gallery-cta .btn-success {
    background: white;
    color: #007bff;
    border: none;
}

.gallery-cta .btn-success:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-cta .btn-outline-success {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.gallery-cta .btn-outline-success:hover {
    background: white;
    color: #007bff;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

#lightboxImage {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    padding: 2rem;
    background: white;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.lightbox-info p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Responsive Design */
@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gallery-filter {
        padding: 0 1rem;
    }
    
    .gallery-filter .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .gallery-cta {
        padding: 3rem 1.5rem;
        margin: 3rem 1rem 0;
    }
    
    .gallery-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 200px;
    }
    
    .lightbox-content {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - 2rem);
    }
    
    #lightboxImage {
        max-height: 50vh;
    }
}

@media (max-width: 480px) {
    .gallery-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .gallery-filter .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
    }
    
    .gallery-info p {
        font-size: 0.85rem;
    }
}

/* ============================================
   SERVICES HERO SECTION STYLES
   ============================================ */

.services-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1519167758481-83f29c8ae8ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2098&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.2), rgba(34, 139, 34, 0.2));
    pointer-events: none;
}

.services-hero-section .container {
    position: relative;
    z-index: 2;
}

.services-hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-section .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 500px;
}

/* Booking Form Card */
.booking-form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.booking-form-card .card-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-bottom: 1px solid #dee2e6;
    padding: 2rem 2rem 1rem;
}

.booking-form-card .card-header h2 {
    color: #ffc107;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-form-card .card-header p {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
}

.booking-form-card .form-control,
.booking-form-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.booking-form-card .form-control:focus,
.booking-form-card .form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    outline: none;
}

.booking-form-card .form-control::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.booking-form-card .btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffcd39);
    border: none;
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.booking-form-card .btn-warning:hover {
    background: linear-gradient(135deg, #ffcd39, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

/* Services Overview Section */
.services-overview {
    background: #f8f9fa;
}

.services-overview h2 {
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-overview .lead {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffc107;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ffcd39);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

.service-card h4 {
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

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

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn-warning {
    background: linear-gradient(135deg, #ffc107, #ffcd39);
    border: none;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.cta-section .btn-warning:hover {
    background: linear-gradient(135deg, #ffcd39, #ffc107);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero-section {
        background-attachment: scroll;
    }
    
    .services-hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .services-hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .booking-form-card {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .booking-form-card .card-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .booking-form-card form {
        padding: 1.5rem !important;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-section .btn-warning {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero-section h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .services-hero-section .lead {
        font-size: 1rem;
    }
    
    .booking-form-card .card-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ============================================
   WHY CHOOSE EEVAGGA SECTION STYLES
   ============================================ */

.why-choose-section {
    background: #ffffff;
    position: relative;
}

.why-choose-content {
    padding-right: 2rem;
}

.why-choose-section h2 {
    color: #6f42c1;
    font-weight: 700;
    line-height: 1.3;
}

.yellow-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffcd39);
    border-radius: 2px;
}

.why-choose-section .lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
}

.commitment-section h3 {
    color: #6f42c1;
    font-weight: 700;
    font-size: 1.5rem;
}

.purple-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6f42c1, #9c5bf4);
    border-radius: 2px;
}

.commitment-list {
    padding-left: 0;
}

.commitment-item {
    position: relative;
    padding-left: 0;
}

.commitment-item h5 {
    color: #6f42c1;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.commitment-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
    padding-left: 2rem;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-image:hover img {
    transform: translateY(-5px);
}

/* Decorative elements */
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(255, 193, 7, 0.1));
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .why-choose-image {
        padding-left: 0;
    }
    
    .why-choose-section h2 {
        font-size: 2rem;
    }
    
    .commitment-section h3 {
        font-size: 1.3rem;
    }
    
    .commitment-item h5 {
        font-size: 1rem;
    }
    
    .commitment-item p {
        font-size: 0.9rem;
    }
    
    .why-choose-section::before,
    .why-choose-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-choose-section h2 {
        font-size: 1.75rem;
    }
    
    .why-choose-section .lead {
        font-size: 1rem;
    }
    
    .commitment-section {
        margin-top: 2rem;
    }
    
    .commitment-item {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   EVENTS PAGE STYLES
   ============================================ */

.event-pricing {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.event-pricing .text-decoration-line-through {
    font-size: 0.875rem;
    color: #6c757d;
}

.event-pricing .fw-bold {
    font-weight: 600;
}

.event-pricing .fs-5 {
    font-size: 1.25rem;
}

/* Event card button styling */
.card .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card .btn-success:hover {
    background: linear-gradient(135deg, #20c997, #28a745);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.card .btn-outline-primary:hover {
    background: #007bff;
    border-color: #007bff;
    transform: translateY(-1px);
}

/* Badge styling for event status */
.badge.bg-primary {
    background-color: var(--primary-emerald) !important;
}

.badge.bg-success {
    background-color: var(--primary-emerald) !important;
}

.badge.bg-warning {
    background-color: var(--accent-gold) !important;
    color: var(--text-primary) !important;
}

.badge.bg-info {
    background-color: var(--primary-emerald) !important;
}

.badge.bg-danger {
    background-color: #dc3545 !important;
}

.badge.bg-secondary {
    background-color: var(--text-secondary) !important;
}

/* Card hover effects enhancement */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease;
}

.card-img-top {
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 12px 12px 0 0; /* Match card border radius */
    object-fit: cover; /* Ensure image covers the area properly */
    width: 100%; /* Ensure full width */
}

.card:hover .card-img-top {
    transform: scale(1.02); /* Reduced from 1.05 to 1.02 for a more subtle effect */
}

/* Responsive adjustments for events */
@media (max-width: 768px) {
    .event-pricing {
        padding: 0.5rem 0.75rem;
    }
    
    .event-pricing .fs-5 {
        font-size: 1.1rem;
    }
    
    .card .btn-success,
    .card .btn-outline-primary {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .event-pricing {
        padding: 0.4rem 0.6rem;
    }
    
    .event-pricing .fs-5 {
        font-size: 1rem;
    }
}

/* ============================================
   MODERN SERVICES PAGE STYLES
   ============================================ */

/* Modern Hero Section with Dark Gradient */
.modern-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #5b73e8 100%);
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.modern-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 50%, rgba(91, 115, 232, 0.8) 100%);
    z-index: 1;
}

.modern-hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-badge .badge {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(40, 167, 69, 0.9) !important;
}

.hero-cta .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Floating Elements Animation */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Modern Services Section */
.modern-services-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.section-title {
    color: #2c3e50;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #28a745, #20c997);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
}

/* Modern Service Cards */
.modern-service-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.modern-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-service-card.featured {
    border: 2px solid #28a745;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    color: white;
    font-size: 3rem;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.card-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.25rem;
}

.card-text {
    line-height: 1.6;
    color: #6c757d;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-text {
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.service-btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.btn-success.service-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
}

.btn-success.service-btn:hover {
    background: linear-gradient(45deg, #20c997, #28a745);
    transform: translateY(-2px);
}

/* Additional Services Section */
.additional-services-section {
    padding: 5rem 0;
}

.service-feature-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: white;
}

/* Modern CTA Section */
.modern-cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.modern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-buttons .btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(47, 124, 79, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
}

.whatsapp-btn:hover {
    background: var(--primary-emerald-hover);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(47, 124, 79, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Enhanced Navbar Styles */
.modern-navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.sticky-top {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    padding: 0.5rem;
    border: none !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: #28a745 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, #28a745, #20c997);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .modern-service-card {
        margin-bottom: 2rem;
    }
    
    .service-image {
        height: 200px;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .hero-cta .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .modern-services-section {
        padding: 4rem 0;
    }
    
    .service-feature-card {
        padding: 2rem 1rem;
    }
    
    .modern-cta-section {
        padding: 4rem 0;
    }
} 

/* ============================================
   SVG PATTERN BACKGROUND
   ============================================ */

/* Custom SVG Pattern Background */
.svg-pattern-bg {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 400px 300px;
    background-position: center;
}

/* Enhanced pattern background for cards */
.card.svg-pattern-bg {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 300px 225px;
    background-position: center;
    position: relative;
}

/* Accordion items with pattern */
.accordion-item.svg-pattern-bg {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 300px 225px;
    background-position: center;
}

.accordion-item.svg-pattern-bg .accordion-button {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 300px 225px;
    background-position: center;
    border: none;
}

.accordion-item.svg-pattern-bg .accordion-body {
    background-image: url('/images/pattern-randomized.svg');
    background-repeat: repeat;
    background-size: 300px 225px;
    background-position: center;
} 

/* WhatsApp Notification Badge */
.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #FF3333;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Custom Amount Input Styling */
#customAmountContainer .input-group-text {
    background-color: #f8f9fa;
    border-color: #ced4da;
    color: #495057;
    font-weight: 600;
}

#customAmountContainer .form-control {
    border-color: #ced4da;
    transition: all 0.3s ease;
}

#customAmountContainer .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

#customAmountContainer .form-control.is-invalid {
    border-color: #dc3545;
    animation: shake 0.5s ease-in-out;
}

#customAmountContainer .form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Shake animation for validation errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

.blog-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #333;
}

.blog-content h1, .blog-content h2, .blog-content h3, 
.blog-content h4, .blog-content h5, .blog-content h6 {
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.blog-content h5 {
    font-size: 1.3rem;
    color: #444;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-content h6 {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    text-align: justify;
}

.blog-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #007bff;
    margin-bottom: 2rem;
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    font-style: italic;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-content strong {
    color: #222;
    font-weight: 600;
}

.blog-content code {
    background-color: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-size: 0.9rem;
    color: #e83e8c;
}

.blog-content blockquote {
    border-left: 4px solid #dee2e6;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

/* Blog detail responsive */
@media (max-width: 768px) {
    .blog-content {
        font-size: 0.95rem;
    }
    
    .blog-content h5 {
        font-size: 1.2rem;
    }
    
    .blog-content h6 {
        font-size: 1rem;
    }
    
    .blog-content .lead {
        font-size: 1.1rem;
        padding-left: 0.8rem;
    }
    
    .blog-content ul, .blog-content ol {
        padding-left: 1.5rem;
    }
}

/* ============================================
   PAYMENT GATEWAY LOGOS
   ============================================ */

/* Payment Gateway Logo Styling */
.form-check-label img {
    border-radius: 4px;
    background-color: #f8f9fa;
    padding: 2px;
    transition: all 0.3s ease;
}

.form-check-label img:hover {
    transform: scale(1.05);
}

/* Fallback for when images don't load */
.form-check-label img::before {
    content: attr(alt);
    display: inline-block;
    width: 28px;
    height: 28px;
    font-size: 10px;
    text-align: center;
    line-height: 28px;
    background-color: #e9ecef;
    border-radius: 4px;
    color: #6c757d;
}

/* Payment Gateway Options Enhancement */
.form-check:hover {
    background-color: #f8f9fa;
    border-color: #dee2e6 !important;
}

.form-check input[type="radio"]:checked + label {
    background-color: #e8f5e8;
    border-color: #28a745 !important;
}