:root {
      --primary-dark: #5a2d04;
      --accent: #d35400;
      --accent-light: #e67e22;
      --muted: #767066;
      --light-muted: #a8a8a8;
      --card-bg: #20190f;
      --glass: rgba(255, 255, 255, 0.06);
      --light-bg: #fbf7f5;
      --white: #ffffff;
      --transition: all 0.3s ease;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html, body {
      height: 100%;
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #102a43;
      background: var(--light-bg);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Improved Navigation */
    .nav {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      z-index: 1000;
      padding: 15px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      min-height: 70px;
    }
    
    .nav.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
      padding: 10px 40px;
    }
    
    .nav .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--primary-dark);
      font-weight: 700;
      transition: transform 0.3s ease;
      z-index: 101;
    }
    
    .nav .logo:hover {
      transform: scale(1.05);
    }
    
    .nav .logo .logo-img {
      width: 200px;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
    }
    
    .nav .logo .mark {
      width: 45px;
      height: 45px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--accent), var(--primary-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: var(--white);
      box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3);
    }
    
    .nav .links {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    
    .nav a {
      color: var(--primary-dark);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      position: relative;
      transition: var(--transition);
      padding: 8px 0;
    }
    
    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }
    
    .nav a:hover {
      color: var(--accent);
      transform: translateY(-1px);
    }
    
    .nav a:hover::after {
      width: 100%;
    }
    
    .nav .cta-button {
      background: var(--accent);
      color: white;
      padding: 8px 16px;
      border-radius: 6px;
      transition: var(--transition);
    }
    
    .nav .cta-button:hover {
      background: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
    }
    
    .nav .menu-btn {
      display: none;
      background: transparent;
      border: 0;
      color: var(--primary-dark);
      font-size: 22px;
      transition: transform 0.3s ease;
      z-index: 101;
    }
    
    .nav .menu-btn:hover {
      transform: scale(1.1);
    }

    /* Navigation Icon Styles */
.links a i,
.mobile-nav-link i,
.cta-button i {
  margin-right: 8px;
  font-size: 14px;
}

.cta-button i {
  margin-right: 6px;
}

/* Enhanced Hero Section */
    .hero {
      min-height: 100vh;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/Catering-hero.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding-top: 40px;
      overflow: hidden;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      width: 100%;
      padding: 40px 24px;
      text-align: center;
      color: white;
      animation: slideUpFade 1.2s ease-out;
    }
    
    .hero .outline-title {
      font-size: 6vw;
      font-weight: 900;
      letter-spacing: 6px;
      margin: 0;
      color: transparent;
      -webkit-text-stroke: 2px rgba(255, 255, 255, 0.18);
      animation: titleGlow 2s ease-in-out infinite alternate;
    }
    
    .hero h2 {
      font-size: 1.5rem;
      margin: 12px 0 18px;
      color: #f4e6bf;
      font-weight: 600;
      animation: slideUpFade 1.2s ease-out 0.3s both;
    }
    
    .hero p {
      font-size: 1.25rem;
      margin: 6px 0 20px;
      color: #fff;
      font-weight: 700;
      animation: slideUpFade 1.2s ease-out 0.6s both;
    }
    
    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      margin-top: 30px;
      animation: slideUpFade 1.2s ease-out 0.9s both;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      cursor: pointer;
    }
    
    .btn-primary {
      background: var(--accent);
      color: var(--white);
      border: 2px solid var(--accent);
    }
    
    .btn-primary:hover {
      background: var(--accent-light);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }
    
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .hero .scroll-indicator {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 30px;
      width: 56px;
      height: 56px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 30px rgba(23, 16, 2, 0.25);
      animation: bounce 2s infinite;
      cursor: pointer;
      transition: var(--transition);
      z-index: 10;
    }
    
    .hero .scroll-indicator:hover {
      transform: translateX(-50%) scale(1.1);
      background: var(--accent);
      color: var(--white);
    }

    /* Wavy divider */
    .divider {
      height: 70px;
      background: var(--white);
      border-top-left-radius: 80% 30px;
      border-top-right-radius: 80% 30px;
      margin-top: -30px;
    }

    /* Main content sections */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }
    
    .section.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.5rem;
      color: var(--primary-dark);
      margin-bottom: 15px;
    }
    
    .section-title p {
      color: var(--muted);
      max-width: 700px;
      margin: 0 auto;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--accent);
      border-radius: 2px;
    }

    
    /* Features */
    .features {
      display: flex;
      gap: 18px;
      margin-top: 36px;
    }
    
    .feature {
      flex: 1;
      background: linear-gradient(135deg, #ffe9e9, #fef1f1);
      padding: 18px;
      border-radius: 12px;
      text-align: center;
      min-height: 80px;
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
      transition: left 0.6s ease;
    }
    
    .feature:hover::before {
      left: 100%;
    }
    
    .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .feature h4 {
      margin: 8px 0 0;
      position: relative;
      z-index: 1;
    }
    
    .feature p {
      margin: 6px 0 0;
      color: var(--muted);
      position: relative;
      z-index: 1;
    }

    /* Notice/Testimonials */
    .notice {
      margin-top: 40px;
      background: var(--white);
      padding: 24px;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .notice h4 {
      margin: 0 0 4px;
      color: var(--primary-dark);
    }
    
    .testimonials {
      margin-top: 20px;
    }
    
    .testimonial {
      padding: 20px;
      background: var(--light-bg);
      border-radius: 8px;
      margin-bottom: 15px;
      position: relative;
    }
    
    .testimonial::before {
      content: '"';
      font-size: 60px;
      color: var(--accent-light);
      opacity: 0.2;
      position: absolute;
      top: 10px;
      left: 10px;
      line-height: 1;
    }
    
    .testimonial p {
      margin: 0;
      font-style: italic;
      color: var(--muted);
    }
    
    .testimonial .client {
      margin-top: 10px;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Contact section */
    .contact-area {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 28px;
      align-items: start;
      padding: 60px;
      background: linear-gradient(135deg, #372406, #473606);
      color: white;
      border-radius: 12px;
      margin-top: 30px;
      position: relative;
      overflow: hidden;
    }
    
    .contact-area::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="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
      opacity: 0.3;
    }
    
    .contact-area > * {
      position: relative;
      z-index: 1;
    }
    
    .contact-area .form {
      background: rgba(255, 255, 255, 0.04);
      padding: 30px;
      border-radius: 14px;
      transition: var(--transition);
    }
    
    .contact-area .form:hover {
      background: rgba(255, 255, 255, 0.06);
      transform: translateY(-2px);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form label {
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
      color: #fceccc;
    }
    
    .form input, .form textarea, .form select {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 0;
      background: rgba(255, 255, 255, 0.03);
      color: var(--white);
      transition: var(--transition);
      border: 1px solid transparent;
      font-family: inherit;
    }
    
    .form input:focus, .form textarea:focus, .form select:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.08);
      border-color: var(--accent);
      transform: scale(1.02);
    }
    
    .form button {
      margin-top: 12px;
      padding: 12px 24px;
      border-radius: 10px;
      background: var(--accent);
      border: 0;
      color: var(--white);
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      width: 100%;
    }
    
    .form button:hover {
      background: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
    }
    
    .form button::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transition: all 0.3s ease;
      transform: translate(-50%, -50%);
    }
    
    .form button:active::before {
      width: 300px;
      height: 300px;
    }
    
    .cs {
      padding: 30px;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
      border-radius: 12px;
      transition: var(--transition);
    }
    
    .cs:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    }
    
    .cs h4 {
      margin: 0 0 10px;
      color: #fbeccc;
    }
    
    .cs p {
      margin: 6px 0;
    }
    
    .cs .tel {
      font-weight: 800;
      font-size: 20px;
      color: var(--accent);
      text-shadow: 0 0 10px rgba(211, 84, 0, 0.3);
    }
    
    .contact-info {
      margin-top: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }
    
    .contact-icon {
      width: 40px;
      height: 40px;
      background: rgba(211, 84, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: var(--accent);
    }

    /* Footer */
    footer {
      padding: 60px 20px 30px;
      background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
      margin-top: 28px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 30px;
    }
    
    .footer-section h4 {
      color: var(--accent);
      margin: 0 0 16px;
      font-size: 18px;
      font-weight: 700;
    }
    
    .footer-section p, .footer-section li {
      color: #ccc;
      line-height: 1.6;
      margin: 8px 0;
    }
    
    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
      color: var(--accent);
    }
    
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 16px;
    }
    
    .social-link {
      width: 40px;
      height: 40px;
      background: var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .social-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(211, 84, 0, 0.4);
    }
    
    .logos {
      display: flex;
      gap: 18px;
      align-items: center;
      justify-content: center;
      padding: 20px 0;
      border-top: 1px solid #333;
      margin-top: 30px;
      flex-wrap: wrap;
    }
    
    .logos img {
      height: 20px;
      opacity: 0.7;
      transition: var(--transition);
      filter: grayscale(100%);
    }
    
    .logos img:hover {
      opacity: 1;
      transform: scale(1.1);
      filter: grayscale(0%);
    }
    
    .footnote {
      font-size: 13px;
      color: #888;
      text-align: center;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid #333;
    }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.98);
      z-index: 1500;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 30px;
      backdrop-filter: blur(20px);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu.active {
      display: flex;
      opacity: 1;
      visibility: visible;
      animation: fadeIn 0.3s ease;
    }
    
    .mobile-menu a {
      color: var(--primary-dark);
      text-decoration: none;
      font-size: 18px;
      font-weight: 600;
      transition: var(--transition);
      padding: 12px 24px;
      border-radius: 8px;
    }
    
    .mobile-menu a:hover {
      color: var(--accent);
      background: rgba(211, 84, 0, 0.1);
      transform: translateX(10px);
    }
    
    .close-menu {
      position: absolute;
      top: 20px;
      right: 20px;
      background: transparent;
      border: none;
      color: var(--primary-dark);
      font-size: 24px;
      transition: transform 0.3s ease;
      cursor: pointer;
    }
    
    .close-menu:hover {
      transform: rotate(90deg);
    }

    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--accent);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      z-index: 99;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--accent-light);
      transform: translateY(-5px);
    }

    /* Loading animation for images */
    .card img {
      background: #f0f0f0;
      background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
      background-size: 200% 100%;
      animation: 1.5s shine linear infinite;
    }
    
    @keyframes shine {
      to {
        background-position-x: -200%;
      }
    }

    /* Learn More Button */
    .about-actions {
      margin: 20px 0;
    }
    
    .learn-more-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: var(--transition);
      border: 2px solid var(--accent);
    }
    
    .learn-more-btn:hover {
      background: var(--accent-light);
      border-color: var(--accent-light);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(211, 84, 0, 0.3);
    }
    
    .learn-more-btn i {
      transition: transform 0.3s ease;
    }
    
    .learn-more-btn:hover i {
      transform: translateX(3px);
    }

    /* Carousel Container */
    .carousel-container {
      position: relative;
      width: 100%;
    }
    
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-dark);
      font-size: 16px;
      cursor: pointer;
      z-index: 10;
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-btn:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-prev {
      left: -20px;
    }
    
    .carousel-next {
      right: -20px;
    }
    
    /* Carousel Indicators */
    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .indicator.active {
      background: var(--accent);
      transform: scale(1.2);
    }
    
    .indicator:hover {
      background: var(--accent-light);
    }
    
/* Enhanced Cards for Carousel */
.cards {
  display: flex;
  gap: 18px;
  padding: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scroll-snap-type: x mandatory;
  width: 100%;
  max-width: 560px; /* Constrain to show exactly 3 cards */
}

.cards::-webkit-scrollbar {
  height: 0px; /* Hide scrollbar completely */
}
.cards::-webkit-scrollbar-track {
  background: transparent;
}
.cards::-webkit-scrollbar-thumb {
  background: transparent;
}

.card {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  width: 160px; /* Fixed width to ensure 3 cards fit */
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(23, 16, 2, 0.15);
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.card .meta {
  padding: 14px;
}

.card .meta small {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.card .meta h4 {
  margin: 6px 0 0;
  font-size: 15px;
}    /* Image Modal Styles */
    .image-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }
    
    .image-modal.active {
      display: flex;
    }
    
    .modal-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }
    
    .modal-image {
      width: 100%;
      height: auto;
      max-height: 80vh;
      object-fit: contain;
      border-radius: 12px;
    }
    
    .modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: var(--white);
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .modal-close:hover {
      background: var(--accent);
      color: var(--white);
      transform: scale(1.1);
    }
    
    .modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .modal-nav:hover {
      background: var(--accent);
      color: var(--white);
    }
    
    .modal-prev {
      left: -70px;
    }
    
    .modal-next {
      right: -70px;
    }
    
    .modal-caption {
      position: absolute;
      bottom: -40px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(255, 255, 255, 0.9);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Gallery Section Styles */
    #gallery {
      padding: 80px 20px;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 50px;
    }
    
    .gallery-item {
      position: relative;
      height: 300px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: 30px 20px 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }
    
    .gallery-overlay h4 {
      margin: 0 0 8px 0;
      font-size: 18px;
      font-weight: 600;
    }
    
    .gallery-overlay p {
      margin: 0;
      font-size: 14px;
      opacity: 0.9;
    }
    
    .gallery-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      max-width: 800px;
      margin: 0 auto;
    }
    
    .filter-btn {
      padding: 12px 24px;
      background: white;
      border: 2px solid #e9ecef;
      border-radius: 25px;
      color: #6c757d;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
    }
    
    .filter-btn:hover,
    .filter-btn.active {
      background: #d4a574;
      border-color: #d4a574;
      color: white;
      transform: translateY(-2px);
    }
    
/* About and Services Images */
.about-image,
.services-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.about-image:hover,
.services-image:hover {
  transform: translateY(-5px);
}

.team-photo,
.services-photo {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Content Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid .left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Services Actions Button */
.services-actions {
  margin-top: 30px;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #d4a574, #b8935f);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, #b8935f, #9d7a4a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

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

.learn-more-btn:hover i {
  transform: translateX(3px);
}    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
      #gallery {
        padding: 60px 15px;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
      }
      
      .gallery-item {
        height: 250px;
      }
      
      .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 20px 15px 15px;
      }
      
      .gallery-overlay h4 {
        font-size: 16px;
      }
      
      .gallery-overlay p {
        font-size: 13px;
      }
      
      .gallery-filters {
        gap: 10px;
      }
      
      .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
      }
      
  .team-photo,
  .services-photo {
    height: 300px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .content-grid .cards-wrap {
    order: -1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-item {
    height: 220px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .team-photo,
  .services-photo {
    height: 250px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}    /* Footer Icon Styles */
.footer-section p i {
  margin-right: 10px;
  width: 16px;
  color: #d4a574;
  font-size: 14px;
}

