/* Base Styles */
:root {
    --color-dark: #221e1f;
    --color-gold: #a37d28;
    --color-brown: #433210;
    --color-olive: #5f551b;
    --color-dark-brown: #291f0b;
    --color-light: #f9f5ea;
    --color-white: #ffffff;
    --font-primary: "Helvetica Neue", Arial, sans-serif;
    --font-secondary: "Georgia", serif;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }


  



  /* Mobile Floating Book Button */
.mobile-book-btn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  animation: fadeIn 0.3s ease;
}

.mobile-book-btn .cta-btn {
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 4px;
}

/* Animation for smooth appearance */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Show only on mobile devices */
@media (max-width: 768px) {
  .mobile-book-btn {
      display: block;
  }
}

  .slide-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Create a semi-transparent overlay to improve text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 33%), rgb(0 0 0 / 16%));
    z-index: 1;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.slide-content .cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.slide-content .cta-btn:hover {
    background-color: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .cta-btn {
        padding: 10px 22px;
        font-size: 1rem;
    }
}
  
  body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
  }

  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo img {
    height: 60px; /* Adjust this value based on your preferred logo size */
    width: auto;
    max-width: 100%;
  }
  
  /* Hide the text heading when using the logo image */
  .logo h3 {
    display: none;
  }
  
  /* Make the logo responsive for different screen sizes */
  @media screen and (max-width: 768px) {
    .logo img {
      height: 50px;
      width: auto;
    }
  }
  
  @media screen and (max-width: 480px) {
    .logo img {
      height: 50px;
      width: auto;
    }
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .text-center {
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-dark);
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
  }
  
  .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .btn:hover {
    background-color: var(--color-brown);
  }
  
  .cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--color-gold);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .cta-btn:hover {
    background-color: var(--color-brown);
  }
  
  /* Navbar */
  .navbar {
    background-color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  /* .logo h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
  }
  
  .logo img {
    height: 60px;
    width: auto;
  } */
  
  .nav-menu {
    display: flex;
    align-items: center;
  }
  
  .nav-menu li {
    margin-left: 25px;
  }
  
  .nav-menu a {
    color: black;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--color-gold);
  }
  
  .menu-toggle {
    display: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Hero Slider */
  .hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  
  .slides {
    width: 100%;
    height: 100%;
  }
  
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide:nth-child(1) {
    background-image: 
      url("/images/bg1.jpg");
  }
  
  .slide:nth-child(2) {
    background-image: 
      url("/images/bg1.jpg");
  }
  
  .slide:nth-child(3) {
    background-image: 
      url("/images/bg1.jpg");
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
  }
  
  .slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  .lookbook-section {
    padding: 80px 0;
    background-color: white;
}

.lookbook-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    touch-action: pan-x;
}

.lookbook-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.lookbook-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.lookbook-item {
    flex: 0 0 250px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.lookbook-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.lookbook-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.lookbook-indicator-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.lookbook-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lookbook-indicator.active {
    background-color: var(--color-gold, #d4af37);
}
  
  .services-section {
    padding: 80px 0;
}

.services-slider {
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    touch-action: pan-x;
}

.services-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.services-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.service-slide {
    flex: 0 0 300px;
    margin: 0 15px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-slide:hover img {
    transform: scale(1.05);
}

.service-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.slider-indicator-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-indicator.active {
    background-color: var(--color-gold, #d4af37);
}

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

.service-card {
    background-color: var(--color-light);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.service-card p {
    color: #666;
}
  
  /* Testimonials Section */
  .testimonials-section {
    padding: 80px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
  }
  
  .testimonials-section .section-title {
    color: var(--color-white);
  }
  
  .testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial {
    display: none;
    text-align: center;
    padding: 0 20px;
  }
  
  .testimonial.active {
    display: block;
  }
  
  .testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
  }
  
  .testimonial-content h4 {
    font-size: 1rem;
    color: var(--color-gold);
  }
  
  .testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--color-gold);
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 0;
    background-color: var(--color-white);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .contact-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  /* Footer */
  .footer {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  /* .footer-logo h2 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
  } */
  
  .footer-links h3,
  .footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    /* color: var(--color-gold); */
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: var(--color-white);
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: var(--color-gold);
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background-color: var(--color-gold);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .credits {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  
  .credits a {
    color: #433210;
    transition: var(--transition);
  }
  
  .credits a:hover {
    color: var(--color-white);
    text-decoration: underline;
  }
  
  /* Page Header */
  .page-header {
    background-color: var(--color-gold);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
  }
  
  .page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }
  
  .page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* Look Book Categories */
  .lookbook-categories {
    padding: 80px 0;
  }
  
  .category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .category-btn {
    padding: 10px 20px;
    background-color: var(--color-light);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .category-btn:hover,
  .category-btn.active {
    background-color: var(--color-gold);
    color: var(--color-white);
  }
  

  @media screen and (max-width: 768px) {
    .lookbook-categories {
      padding: 40px 0;
    }
    
    .category-nav {
      gap: 10px;
      margin-bottom: 30px;
      justify-content: flex-start; /* Left align on mobile */
      overflow-x: auto; /* Enable horizontal scrolling if needed */
      padding-bottom: 8px; /* Add space for potential scrollbar */
      -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    }
    
    .category-btn {
      padding: 8px 16px;
      font-size: 0.9rem;
      white-space: nowrap; /* Prevent text wrapping */
      flex: 0 0 auto; /* Don't allow buttons to grow/shrink */
      border-radius: 20px; /* More rounded corners for modern look */
      box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    }
  }
  
  /* For very small screens */
  @media screen and (max-width: 480px) {
    /* .category-nav {
      justify-content: center;
    } */
    
    .category-btn {
      padding: 7px 14px;
      font-size: 0.85rem;
    }
  }

  .lookbook-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
  }
  
  /* Services Categories */
  .services-categories {
    padding: 80px 0;
  }
  
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Service Detail Styles */
  .service-detail-item {
    margin-bottom: 40px;
    display: none;
  }
  
  .service-detail-item.active {
    display: block;
  }
  
  .service-detail-content {
    display: flex;
    background-color: var(--color-light); /* Using brand light color */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }
  
  .service-detail-info {
    flex: 1;
    padding: 30px;
    max-height: auto;
    overflow-y: auto;
  }
  
  .service-category-title {
    color: var(--color-dark);
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
  }
  
  .service-detail {
    margin-bottom: 30px;
    position: relative;
  }
  
  .service-title-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
  }
  
  .service-title-price h3 {
    color: var(--color-dark);
    font-size: 1.4rem;
    margin: 0;
    white-space: nowrap;
  }
  
  .dotted-line {
    flex: 1;
    height: 1px;
    margin: 0 10px;
    border-bottom: 2px dotted var(--color-dark);
  }
  
  .service-title-price .price {
    color: var(--color-gold);
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
  }
  
  .service-detail .includes,
  .service-detail .time,
  .service-detail .experience {
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 15px;
    color: var(--color-dark);
  }
  
  .service-detail-image {
    /* flex: 0 0 300px; */
    position: sticky;
    top: 107px;
    align-self: flex-start;
    height: 600px;
    border: 8px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .learn-more {
    display: inline-block;
    color: white;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: none;

  }
  
  /* .learn-more:hover {
    color: var(--color-brown);
  } */
  
  @media (max-width: 768px) {
    .service-detail-content {
      flex-direction: column;
      border-radius: 8px;
    }
  
    .service-detail-image {
      /* position: relative; */
      /* flex: 0 0 300px; */
      top : 0;
      height: 350px;
      width: 350px;
      /* margin: 15px 15px 0 15px; */
      order: -1; /* This puts the image above the content in mobile view */
    }
  
    .service-detail-info {
      padding: 0 30px 30px 30px;
      max-height: none;
    }
  
    .service-title-price {
      flex-wrap: nowrap;
    }
  
    .services-categories .container {
      padding: 0;
    }
  
    .category-nav {
      padding: 0 20px;
    }
  }
  
  .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--color-light);
    border-radius: 8px;
    transition: var(--transition);
  }
  
  .service-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
  }
  
  .service-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-dark);
  }
  
  .service-price span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
  }
  
  /* Booking Section */
  .booking-section {
    padding: 60px 0;
    background-color: var(--color-dark);
    color: var(--color-white);
    text-align: center;
  }
  
  .booking-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .booking-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .slide-content h2 {
      font-size: 2.5rem;
    }
  
    .hero-slider {
      height: 100vh;
    }
  }
  
  @media (max-width: 768px) {
    .hero-slider {
      height: 100vh;
    }
  
    .slide-content h2 {
      font-size: 2rem;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .nav-menu {
      position: fixed;
      top: 60px;
      left: -100%;
      width: 100%;
      height: calc(100vh - 70px);
      background-color: white;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding-top: 40px;
      transition: var(--transition);
    }
  
    .nav-menu.active {
      left: 0;
    }
  
    .nav-menu li {
      margin: 15px 0;
    }
  
    .slide-content h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 576px) {
    .slide-content h2 {
      font-size: 1.8rem;
    }
  
    .hero-slider {
      height: 100vh;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .service-item {
      flex-direction: column;
      text-align: center;
    }
  
    .service-price {
      margin-top: 15px;
    }
  }
  




  /* Signature Services Section Styles */
.signature-services {
  padding: 80px 0;
  background-color: white;
}

.signature-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.signature-service-card {
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.signature-service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-gold);
  color: var(--color-white);
  padding: 8px 15px;
  border-radius: 4px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.service-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-gold);
}

.service-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.signature-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: transparent;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.signature-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .signature-services-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .signature-services {
      padding: 60px 0;
  }
  
  .signature-services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .signature-services-grid {
      grid-template-columns: 1fr;
  }
  
  .service-image {
      height: 376px;
  }
}









.corner-booking-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% - 50px));
    transition: transform 0.3s ease;
    z-index: 999;
}

.corner-booking-tab.expanded {
    transform: translateY(-50%) translateX(0);
}

.tab-container {
    position: relative;
    display: flex;
    align-items: center;
}

.tab-label {
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 8px 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.tab-content {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    width: 200px;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.2);
}

.tab-content h4 {
    color: white;
    margin: 0 0 10px;
    font-size: 16px;
}

.tab-content p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 15px;
    font-size: 13px;
    line-height: 1.4;
}

.tab-content .price {
    color: #c9a65c; /* Gold accent */
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.tab-content .cta-btn {
    display: block;
    width: 100%;
    background-color: #c9a65c; /* Gold accent */
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.tab-content .cta-btn:hover {
    background-color: #d4b36e;
}

/* Hide on very small screens */
@media (max-width: 380px) {
    .corner-booking-tab {
        display: none;
    }
}

































.mobile-onlyy {
  display: none;
}

/* Show mobile-only Book Now on small screens */
@media (max-width: 768px) {
    .mobile-onlyy {
        display: inline-block;
        margin-left: auto;
        margin-right: 1rem; /* adjust as needed */
    }

    .desktop-only {
        display: none;
    }

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

    .logo {
        flex: 1;
    }

    .menu-toggle {
        margin-left: auto;
    }
}
