/* Root Variables - Brand Colors */
:root {
    --white: #FFFFFF;
    --deep-green: #2E6B3A;
    --gold:#D9AA64;
    --charcoal: #222222;
    --soft-green-bg: #F4FBF6;
    --light-gray: #F8F9FA;
    --border-color: #E0E0E0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}



/* Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #C5A028 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: white;
}

.btn-outline-primary {
    border-color: var(--deep-green);
    color: var(--deep-green);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--deep-green);
    border-color: var(--deep-green);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 84vh;
    background: linear-gradient( rgba(34, 34, 34, 0.7)),
                url('../images/gallery/catbanner2.jpg') center/cover;
    position: relative;
}

.badge-specialist {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    margin: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--deep-green) 0%, #1e4d2a 100%);
    padding: 5rem 0 3rem;
    text-align: center;
}

/* Background Utilities */
.bg-soft-green {
    background-color: var(--soft-green-bg);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-green), #1e4d2a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

/* Gallery Preview */
.gallery-preview-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-preview-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-preview-item img {
    transition: transform 0.3s ease;
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stars i {
    font-size: 1.2rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--deep-green);
    border-radius: 5%;
    padding: 1rem;
}

/* Specialist Badge Large */
.specialist-badge-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Mission Cards */
/* Mission & Vision Section */
.mission-card {
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.mission-icon i {
  font-size: 2.2rem;
  color: #2E6B3A; /* deep green */
  transition: color 0.3s ease;
}

.mission-card:hover .mission-icon i {
  color: #D4AF37; /* gold on hover */
}


/* Team Cards */
.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--gold);
}

.text-gold {
    color: var(--gold) !important;
}

/* Feature Items */
.feature-item {
    padding: 1.5rem;
}

/* Menu Page */
.filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
}

.btn-filter {
    background: white;
    color: var(--deep-green);
    border: 2px solid var(--deep-green);
    padding: 0.6rem 1.5rem;
    margin: 0.3rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--deep-green);
    color: white;
}

/* Menu Cards */
.menu-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-icon {
    width: 70px;
    height: 70px;
    background: var(--soft-green-bg);
    color: var(--deep-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.menu-description {
    color: #666;
    margin: 1rem 0;
}

.menu-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.menu-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.menu-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-green);
    margin: 1rem 0;
}

/* Gallery Page */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 107, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--deep-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
}

/* Forms */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--deep-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 107, 58, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Booking Form */
.booking-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
/* Footer Styling */
.footer {
  background: linear-gradient(135deg, #002E1C, #00462A);
  color: #fff;
  padding-top: 40px;
  padding-bottom: 30px;
}

.footer-logo {
  height: 100px;
  object-fit: contain;
}

.text-gold {
  color: #d4af37;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.social-icons a {
  display: inline-block;
  color: #f8f9fa;
  font-size: 1.1rem;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #d4af37;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 70vh;
    }

    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .menu-card {
        margin-bottom: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation for Images */
img {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* why choose us  */
/* Why Choose Us Section */
.bg-soft-green {
  background-color: #F4FBF6;
}

.why-choose-us-section .section-title {
  color: #2E6B3A;
  letter-spacing: 1px;
}

.choose-card {
  background: #fff;
  border-radius: 15px;
  transition: all 0.4s ease;
  border: 1px solid #eee;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #d4af37;
}

.choose-icon {
  font-size: 2.5rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.choose-card:hover .choose-icon {
  color: #2E6B3A;
  transform: scale(1.2);
}


/* Services Section */
.bg-soft-green {
  background-color: #F4FBF6;
}

.section-title {
  color: #2E6B3A;
  letter-spacing: 1px;
}

/* Service Cards */
.service-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.service-image-card:hover img {
  transform: scale(1.12);
  filter: brightness(0.9);
}

/* Overlay */
.service-image-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 46, 28, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  border-radius: 15px;
}

.service-image-card .overlay h4 {
  color: #d4af37;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* Hover Effects */
.service-image-card:hover .overlay {
  opacity: 1;
}

.service-image-card:hover .overlay h4 {
  transform: translateY(0);
}

/* Golden Glow Border Animation */
.service-image-card:hover {
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.6);
}

/* Optional shimmer effect */
.service-image-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  opacity: 0;
  border-radius: 15px;
}

.service-image-card:hover::after {
  left: 125%;
  opacity: 1;
}


/* ===== MENU HIGHLIGHTS SECTION ===== */
/* ===== MENU HIGHLIGHTS SPLIT STYLE ===== */
#menu-highlights {
  background-color: #f8f9fa;
}

#menu-highlights img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  transition: transform 0.6s ease;
}

#menu-highlights .col-md-6:hover img {
  transform: scale(1.05);
}

#menu-highlights .overlay-text {
  background: rgba(0, 0, 0, 0.45);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  height: 220px;
  width: 350px;
}

.bg-gradient-menu {
  background: linear-gradient(135deg,#002E1C );
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.4s ease;
}

/* .bg-gradient-menu:hover {
  background: linear-gradient(135deg, #00773a 0%, #00b871 100%);
} */

#menu-highlights h2,
#menu-highlights h4 {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  #menu-highlights .overlay-text {
    background: rgba(0, 0, 0, 0.6);
  }
  #menu-highlights .col-md-6 img {
    height: 250px;
  }
  #menu-highlights .bg-gradient-menu {
    text-align: center;
    padding: 2rem 1.5rem;
  }
}

.google-logo {
  width: 26px;
  height: auto;
}

/* home about us  */
.feature-badge {
    background: #fff;
    border: 2px solid #198754;
    color: #198754;
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .feature-badge:hover {
    background: #002E1C;
    color: #fff;
    transform: translateY(-5px);
  }
  .feature-badge i {
    color: #f7c948;
    transition: color 0.3s ease;
  }
  .feature-badge:hover i {
    color: #ffdf70;
  }