/* ===================================
   Gallery, Blog & Contact Enhancements
   Hampton Venue Website - ADVANCED VERSION
   =================================== */

/* ============================================
   ENHANCED HEADER STYLES
   ============================================ */

/* Header Contact Links */
.header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.header-contact-link:hover {
    color: #C5A572;
}

.header-contact-link i {
    font-size: 0.9rem;
}

/* Header Badge */
.header-badge {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(197, 165, 114, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Header Social Links */
.header-social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.header-social-link:hover {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    transform: translateY(-2px);
}

/* ============================================
   CATERING SECTION STYLES
   ============================================ */

/* Catering Images Grid */
.catering-images-grid {
    animation: fadeInLeft 0.8s ease-out;
}

.catering-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.catering-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.catering-image-card img {
    transition: transform 0.4s ease;
}

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

.catering-image-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #62432e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Khula', sans-serif;
    box-shadow: 0 4px 15px rgba(98, 67, 46, 0.4);
}

/* Catering Content Box */
.catering-content-box {
    animation: fadeInRight 0.8s ease-out;
}

/* Catering Features List */
.catering-features-list {
    background: rgba(98, 67, 46, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #62432e;
}

.catering-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.catering-feature-icon {
    width: 40px;
    height: 40px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(98, 67, 46, 0.3);
}

/* Catering Stats Bar */
.catering-stats-bar {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(98, 67, 46, 0.1);
}

.catering-stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.catering-stat-item:hover {
    transform: translateY(-5px);
}

.catering-stat-icon {
    width: 70px;
    height: 70px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(98, 67, 46, 0.3);
}

.catering-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.catering-stat-label {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Catering Highlight Box (About Section) */
.catering-highlight-box {
    background: rgba(98, 67, 46, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(98, 67, 46, 0.2);
    box-shadow: 0 4px 20px rgba(98, 67, 46, 0.1);
}

.catering-highlight-icon {
    width: 60px;
    height: 60px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.3);
}

/* Service Featured Card */
.service-featured {
    border: 3px solid #C5A572;
    box-shadow: 0 12px 40px rgba(197, 165, 114, 0.25);
}

.service-featured:hover {
    border-color: #B76E79;
    box-shadow: 0 20px 60px rgba(197, 165, 114, 0.35);
}

/* ============================================
   ADVANCED GALLERY FEATURES
   ============================================ */

/* Load More Button */
.load-more-btn {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: linear-gradient(135deg, #B39560, #C5A572);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4);
}

.load-more-count {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Gallery Stats Bar */
.gallery-stats-bar {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item-gallery {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.stat-item-gallery:hover {
    transform: translateY(-5px);
}

.stat-item-gallery i {
    font-size: 2.5rem;
    color: #C5A572;
    margin-bottom: 1rem;
    display: block;
}

.stat-item-gallery .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
}

.stat-item-gallery .stat-label {
    color: #4A4A4A;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    font-weight: 500;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(197, 165, 114, 0.9);
    border-color: #C5A572;
    transform: scale(1.1);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   GALLERY SECTION ENHANCEMENTS
   ============================================ */

/* Gallery Counter */
.gallery-counter {
    display: inline-block;
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.1), rgba(183, 110, 121, 0.1));
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(197, 165, 114, 0.2);
}

/* Enhanced Filter Buttons */
.filter-btn-enhanced {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #4A4A4A;
    border: 2px solid rgba(197, 165, 114, 0.2);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.filter-btn-enhanced:hover {
    background: rgba(197, 165, 114, 0.1);
    border-color: #C5A572;
    transform: translateY(-2px);
}

.filter-btn-enhanced.active {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    border-color: #C5A572;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

.filter-btn-enhanced i {
    font-size: 1rem;
}

/* Enhanced Gallery Grid */
.gallery-grid-enhanced {
    animation: fadeInUp 0.8s ease-out;
}

/* Enhanced Gallery Items */
.gallery-item-enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 165, 114, 0.2);
}

.gallery-item-enhanced img {
    transition: transform 0.6s ease;
}

.gallery-item-enhanced:hover img {
    transform: scale(1.15);
}

/* Enhanced Gallery Overlay */
.gallery-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

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

/* Gallery Category Tag */
.gallery-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(197, 165, 114, 0.4);
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

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

.gallery-action-btn:hover {
    background: #C5A572;
    border-color: #C5A572;
    transform: scale(1.1);
}

/* Gallery Caption */
.gallery-caption {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ============================================
   ADVANCED BLOG FEATURES
   ============================================ */

/* Blog Toolbar */
.blog-toolbar {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Blog Search */
.blog-search-container {
    position: relative;
    flex: 1;
    max-width: 350px;
}

.blog-search-container i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #C5A572;
    font-size: 1.1rem;
}

.blog-search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 2px solid rgba(197, 165, 114, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: #C5A572;
    box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.1);
}

/* Blog Quick Categories */
.blog-quick-categories {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.blog-cat-btn {
    padding: 0.6rem 1.25rem;
    background: rgba(197, 165, 114, 0.1);
    color: #4A4A4A;
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-cat-btn:hover {
    background: rgba(197, 165, 114, 0.2);
    border-color: #C5A572;
}

.blog-cat-btn.active {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    border-color: #C5A572;
}

/* Blog Sort Select */
.blog-sort-select {
    padding: 0.75rem 1.25rem;
    border: 2px solid rgba(197, 165, 114, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-sort-select:focus {
    outline: none;
    border-color: #C5A572;
}

/* Newsletter Section */
.blog-newsletter-section {
    background: linear-gradient(135deg, rgba(197, 165, 114, 0.05), rgba(183, 110, 121, 0.05));
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(197, 165, 114, 0.2);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(98, 67, 46, 0.3);
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.newsletter-subtitle {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-family: 'Khula', sans-serif;
    border: 2px solid rgba(98, 67, 46, 0.3);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #62432e;
    box-shadow: 0 0 0 4px rgba(98, 67, 46, 0.1);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: #62432e;
    color: white;
    font-family: 'Khula', sans-serif;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(98, 67, 46, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-btn:hover {
    background: #479eed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 158, 237, 0.4);
}

.newsletter-privacy {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Blog Categories Grid */
.blog-categories-grid {
    animation: fadeInUp 0.8s ease-out;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(98, 67, 46, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(98, 67, 46, 0.2);
    border-color: #62432e;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(98, 67, 46, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.category-count {
    font-family: 'Khula', sans-serif;
    color: #62432e;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ============================================
   BLOG SECTION ENHANCEMENTS
   ============================================ */

/* Enhanced Blog Cards */
.blog-card-enhanced {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 165, 114, 0.1);
}

.blog-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 165, 114, 0.2);
}

/* Blog Image Container */
.blog-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-enhanced:hover .blog-image-container img {
    transform: scale(1.1);
}

/* Blog Featured Badge */
.blog-featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(197, 165, 114, 0.4);
}

/* Blog Read Time */
.blog-read-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 165, 114, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #C5A572;
    font-weight: 500;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.blog-tag {
    background: rgba(197, 165, 114, 0.1);
    color: #C5A572;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: #C5A572;
    color: white;
}

/* Blog Title */
.blog-title-enhanced {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card-enhanced:hover .blog-title-enhanced {
    color: #C5A572;
}

/* Blog Read More */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #C5A572;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.75rem;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* ============================================
   ADVANCED CONTACT FEATURES
   ============================================ */

/* Quick Contact Cards */
.quick-contact-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(71, 158, 237, 0.1);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(71, 158, 237, 0.2);
    border-color: #479eed;
}

.quick-contact-icon {
    width: 70px;
    height: 70px;
    background: #479eed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 20px rgba(71, 158, 237, 0.3);
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.quick-contact-text {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.quick-contact-link {
    font-family: 'Khula', sans-serif;
    color: #479eed;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.quick-contact-card:hover .quick-contact-link {
    gap: 0.5rem;
}

/* Contact Info Content */
.contact-info-content {
    flex: 1;
}

.contact-action-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Khula', sans-serif;
    color: #479eed;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-action-link:hover {
    gap: 0.5rem;
    color: #B39560;
}

/* Contact Social Section */
.contact-social-section {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */

/* Footer Headings */
.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #B8956A, transparent);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    font-family: 'Khula', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Footer Social Links */
.footer-social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #B8956A;
    border-color: #B8956A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(184, 149, 106, 0.4);
}

/* Footer Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Khula', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact-info li i {
    color: #B8956A;
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 18px;
}

/* ============================================
   CONTACT SECTION ENHANCEMENTS
   ============================================ */

/* Contact Form Container Enhanced */
.contact-form-enhanced {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(197, 165, 114, 0.1);
}

/* Form Labels Enhanced */
.form-label-enhanced {
    display: block;
    font-weight: 600;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Form Inputs Enhanced */
.form-input-enhanced {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(197, 165, 114, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333333;
    height: 3.5rem;
    line-height: 1.5;
}

select.form-input-enhanced {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A572' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-input-enhanced:focus {
    outline: none;
    border-color: #C5A572;
    box-shadow: 0 0 0 4px rgba(197, 165, 114, 0.15);
}

.form-input-enhanced::placeholder {
    color: #A0A0A0;
}

/* Office Hours Box */
.office-hours-box {
    background: linear-gradient(135deg, rgba(98, 67, 46, 0.05), rgba(98, 67, 46, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(98, 67, 46, 0.2);
}

.office-icon {
    width: 50px;
    height: 50px;
    background: #62432e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(98, 67, 46, 0.3);
}

/* Footer Hours Box */
.footer-hours-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #B8956A;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(71, 158, 237, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(71, 158, 237, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #479eed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(71, 158, 237, 0.3);
}

.contact-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 1rem;
    line-height: 1.6;
}

/* Map Container Enhanced */
.map-container-enhanced {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container-enhanced iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Links Enhanced */
.social-links-enhanced {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link-btn {
    width: 45px;
    height: 45px;
    background: #479eed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(71, 158, 237, 0.4);
}

/* Contact Success Message */
.contact-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.1));
    border: 2px solid #4CAF50;
    color: #2E7D32;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.contact-success.show {
    display: block;
    animation: slideInDown 0.5s ease-out;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    /* Gallery */
    .filter-btn-enhanced {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .gallery-item-enhanced {
        height: auto;
    }
    
    .gallery-action-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Blog */
    .blog-image-container {
        height: 200px;
    }
    
    .blog-title-enhanced {
        font-size: 1.25rem;
    }
    
    /* Contact */
    .contact-form-enhanced {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .map-container-enhanced {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .filter-btn-enhanced {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .filter-btn-enhanced i {
        display: none; /* Hide icons on very small screens */
    }
    
    .gallery-caption {
        font-size: 0.9rem;
    }
    
    .blog-image-container {
        height: 180px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}
