/* Reset */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Montserrat', sans-serif;
}


               
/* =======================
   HERO SECTION (GSAP column drift + lightbox)
======================= */
html, body {
  width: 100%;
  min-height: 100%;
  background: #05080f;
  overflow-x: hidden;
  position: relative;
}

/* Hero Section - 2-Column Layout */
.hero {
  display: flex;
  min-height: 70vh;
  max-height: 800px;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: transparent;
}

/* Desktop: Full background image - fully visible on left side */
@media (min-width: 1024px) {
  .hero {
    background: #05080f; /* Fallback color for empty space */
  }
}

.hero-image-wrapper {
  position: relative;
  width: 60%;
  height: 70vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transform: none;
  transform-origin: center center;
}

/* Desktop: Position image wrapper on left side with background image */
@media (min-width: 1024px) {
  .hero-image-wrapper {
    width: 50%;
    position: relative;
    background-image: url("../images/bg-main.a9a187fd7371.jpeg");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #05080f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding-left: 2%;
    border-radius: 50%;
    box-sizing: border-box;
    transform: none;
    transform-origin: center center;
    overflow: hidden;
  }
}

.hero-image {
  position: relative;
  width: 100%;
  height: 100%;
  /* Use relative static path so collectstatic can fingerprint the asset */
  background-image: url("../images/bg-main.a9a187fd7371.jpeg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Desktop: Hide hero-image div background since wrapper has it */
@media (min-width: 1024px) {
  .hero-image {
    background-image: none;
    width: 0;
    height: 0;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 700px;
  padding: 60px 50px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  pointer-events: none;
}

/* Desktop: Position text in the lower part of the image - inside image bounds */
@media (min-width: 1024px) {
  .hero-content {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    max-width: 500px;
    padding: 30px 20px;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
    z-index: 2;
    margin: 0;
  }
}

.hero-content * {
  pointer-events: auto;
}

/* Ensure content stays above background layers */
.hero-content * {
  position: relative;
  z-index: 2;
}

.hero-animation-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

/* Desktop: Keep floating images on right side - ensure they're not blocked */
@media (min-width: 1024px) {
  .hero-animation-wrapper {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    z-index: 5;
    pointer-events: none;
  }
  
  .hero-animation-wrapper .main,
  .hero-animation-wrapper .mainBoxes {
    pointer-events: auto;
  }
}

.hero-content h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #ffd700;
  line-height: 1.3;
  margin: 0 0 18px 0;
  font-weight: 300;
  letter-spacing: -0.3px;
  font-family: 'Playfair Display', serif;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
  mix-blend-mode: normal;
}

/* Desktop: Professional heading styling - inside image, smaller size, new color */
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: clamp(28px, 3.5vw, 40px);
    color: #ffd700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 
      0 2px 8px rgba(0, 0, 0, 0.6),
      0 4px 16px rgba(0, 0, 0, 0.4);
    font-family: 'Playfair Display', serif;
    text-align: center;
    white-space: nowrap;
    text-transform: none;
    border: none;
    padding: 0;
    display: block;
    box-shadow: none;
    transition: none;
  }
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #d0b36b;
  font-weight: 700;
  font-size: 13px;
}

.hero-content .lead {
  color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px);
  max-width: 500px;
  margin-bottom: 25px;
  line-height: 1.7;
  font-weight: 400;
  text-shadow: 
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 3;
}

/* Desktop: Professional lead text styling - lower part of image with new color */
@media (min-width: 1024px) {
  .hero-content .lead {
    font-size: clamp(18px, 2.3vw, 22px);
    color: #ffffff;
    max-width: 100%;
    margin: 0 auto 32px auto;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: 
      0 2px 10px rgba(0, 0, 0, 0.7),
      0 4px 20px rgba(0, 0, 0, 0.5),
      0 1px 3px rgba(0, 0, 0, 0.8);
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    letter-spacing: 0.2px;
  }
}

.hero-content .lead strong {
  color: #f0b746;
  font-weight: 700;
  text-shadow: 
    0 2px 8px rgba(240, 183, 70, 0.4),
    0 0 15px rgba(240, 183, 70, 0.2);
}


.hero-content .book-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #6B5B95 0%, #8364c5 50%, #9d85e6 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(107, 91, 149, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Desktop: Professional button styling - lower part of image with new color */
@media (min-width: 1024px) {
  .hero-content .book-btn {
    background: transparent;
    color: #2c3e50;
    padding: 14px 32px;
    border-radius: 0;
    font-weight: 500;
    font-size: clamp(16px, 2vw, 18px);
    letter-spacing: 1px;
    text-decoration: none;
    border: 2px solid #2c3e50;
    box-shadow: 
      0 4px 15px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    text-align: center;
  }
  
  .hero-content .book-btn:hover {
    color: #f0b746;
    border-color: #f0b746;
    background: rgba(240, 183, 70, 0.1);
    transform: translateY(-3px);
    box-shadow: 
      0 6px 20px rgba(240, 183, 70, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

.hero-content .book-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-content .book-btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-content .book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(107, 91, 149, 0.6),
    0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #7c68b9 0%, #9d85e6 50%, #8364c5 100%);
}

.hero-content .book-btn span,
.hero-content .book-btn {
  position: relative;
  z-index: 1;
}

.tilt-grid {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  gap: 18px;
  transform: rotate(-8deg) skewY(-2deg);
  transform-origin: center;
}

.tilt-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  will-change: transform;
}

.tilt-card {
  position: relative;
  padding-top: 135%;
  background-size: contain;
  background-position: center;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform-origin: center;
  cursor: pointer;
}

/* Legacy GSAP stack container */
.main {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.mainBoxes {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1200px;
  height: 720px;
  transform-style: preserve-3d;
  pointer-events: auto;
  transform: translateX(-50%);
  z-index: 3;
}

.photoBox {
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.mainClose {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 130;
  pointer-events: none;
}

.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0,0,0,0.05), rgba(0,0,0,0.25));
}

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2000;
}

.lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.lightbox img {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  z-index: 1;
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
  z-index: 1;
}

/* Responsive Hero Section */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    max-height: none;
  }
  
  .hero-image-wrapper {
    width: 100%;
    height: 55vh;
    min-height: 500px;
    max-height: 600px;
  }
  
  .hero-content {
    padding: 60px 40px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero-animation-wrapper {
    height: 45vh;
    min-height: 400px;
    max-height: 500px;
  }

  .mainBoxes {
    width: 100%;
    max-width: 600px;
    height: 500px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .main {
    min-height: 400px;
    margin-top: 30px;
  }

}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: 100vh;
    max-height: none;
    height: 100vh;
    position: relative;
    background: transparent;
  }
  
  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-height: none;
    z-index: 1;
    background-image: url("../images/bg-main.a9a187fd7371.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #05080f;
  }
  
  .hero-image {
    background-image: url("../images/bg-main.a9a187fd7371.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 100%;
    text-align: center;
    z-index: 2;
    padding: 40px 20px;
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero-animation-wrapper {
    display: none; /* Completely hide gallery on mobile */
  }

  .hero-content h1 {
    font-size: clamp(24px, 6vw, 36px);
    margin: 0 0 16px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #ffd700;
  }

  .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    animation: fadeInUp 0.6s ease-out 0.2s both;
  }

  .hero-content .lead {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .mainBoxes {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 450px;
    position: relative;
    left: 0;
    transform: none;
    margin-top: 30px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 20px;
    padding: 20px 15px;
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 183, 70, 0.5) transparent;
  }

  .mainBoxes::-webkit-scrollbar {
    height: 6px;
  }

  .mainBoxes::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
  }

  .mainBoxes::-webkit-scrollbar-thumb {
    background: rgba(240, 183, 70, 0.6);
    border-radius: 10px;
  }

  .mainBoxes::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 183, 70, 0.8);
  }

  .main {
    min-height: auto;
    margin-top: 0;
    position: relative;
    display: block;
    width: 100%;
    overflow: visible;
  }

  .photoBox {
    width: 300px !important;
    min-width: 300px !important;
    height: 450px !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    scale: 1 !important;
    scroll-snap-align: center;
    flex-shrink: 0;
    animation: slideIn 0.6s ease-out forwards;
    background-size: cover !important;
    background-position: center !important;
  }

  .photoBox:nth-child(1) {
    animation-delay: 0.1s;
  }

  .photoBox:nth-child(2) {
    animation-delay: 0.2s;
  }

  .photoBox:nth-child(3) {
    animation-delay: 0.3s;
  }

  .photoBox:nth-child(4) {
    animation-delay: 0.4s;
  }

  .photoBox:nth-child(5) {
    animation-delay: 0.5s;
  }

  .photoBox:nth-child(n+6) {
    animation-delay: 0.6s;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .tilt-grid {
    min-height: 300px;
    display: none;
  }

  .hero-content .book-btn {
    width: 100%;
    max-width: 200px;
    margin: 24px auto 0;
    display: block;
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    animation: fadeInUp 0.8s ease-out 0.6s both, pulse 2s ease-in-out infinite 1.4s;
  }

  /* Mobile-specific animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.9);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes pulse {
    0%, 100% {
      box-shadow: 0 8px 25px rgba(240, 183, 70, 0.4);
    }
    50% {
      box-shadow: 0 8px 35px rgba(240, 183, 70, 0.6);
    }
  }

  /* Hide desktop close button on mobile */
  .mainClose {
    display: none;
  }

  /* Mobile hero background - use scroll instead of fixed for better performance */

  /* Mobile image stack effect */
  .mainBoxes {
    perspective: 1000px;
  }

  .photoBox {
    position: absolute;
    left: 50% !important;
    transform: translateX(-50%) !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: mobileFloat 6s ease-in-out infinite;
  }

  .photoBox:nth-child(1) {
    animation-delay: 0s;
  }

  .photoBox:nth-child(2) {
    animation-delay: 0.5s;
  }

  .photoBox:nth-child(3) {
    animation-delay: 1s;
  }

  .photoBox:active {
    transform: translateX(-50%) scale(0.95) !important;
    animation-play-state: paused;
  }

  @keyframes mobileFloat {
    0%, 100% {
      transform: translateX(-50%) translateY(0px);
    }
    50% {
      transform: translateX(-50%) translateY(-15px);
    }
  }

  /* Smooth scroll behavior */
  .hero {
    scroll-behavior: smooth;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    height: 100vh;
    background: transparent;
  }

  .hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    max-height: none;
    background-image: url("../images/bg-main.a9a187fd7371.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #05080f;
  }
  
  .hero-image {
    background-image: url("../images/bg-main.a9a187fd7371.jpeg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
  }
  
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    padding: 30px 20px;
    text-align: center;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 14px 0;
    color: #ffd700;
  }
  
  .hero-animation-wrapper {
    display: none; /* Completely hide gallery on mobile */
  }

  .hero-content .eyebrow {
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .hero-content .lead {
    font-size: 12px;
    padding: 0 5px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .mainBoxes {
    min-height: 380px;
    margin-top: 20px;
    padding: 15px 10px;
    gap: 15px;
  }

  .main {
    min-height: auto;
  }

  .photoBox {
    width: 260px !important;
    min-width: 260px !important;
    height: 380px !important;
    border-radius: 20px !important;
  }

  .hero-content .book-btn {
    max-width: 180px;
    padding: 10px 20px;
    font-size: 12px;
  }
}

  /* Additional mobile optimizations */
@media (max-width: 768px) {
  /* Allow horizontal scroll for image carousel */
  .hero {
    overflow-x: visible;
  }

  /* Smooth image loading */
  .photoBox {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Touch-friendly interactions */
  .photoBox {
    -webkit-tap-highlight-color: transparent;
  }

  .photoBox:active {
    transform: scale(0.98);
  }

  /* Performance optimization */
  .mainBoxes {
    contain: layout style paint;
  }

  /* Add subtle hint for scrolling */
  .mainBoxes::after {
    content: '← Swipe to see more →';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
}

/* =======================
   MODERN LANDING SECTION
======================= */
.modern-landing-section {
  padding: 120px 6%;
  background: #f8f7f5;
  position: relative;
  overflow: hidden;
}

.landing-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header Section: Title and Stats Side by Side */
.landing-header-stats {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.landing-header-stats .landing-title {
  margin: 0;
  padding: 0;
}

/* Text and Image Wrapper - Side by Side */
.landing-text-image-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.landing-text-image-wrapper:hover .landing-description {
  color: #1a1a1a;
  transform: translateX(5px);
}

.landing-text-image-wrapper:hover .landing-image-right {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.landing-text-image-wrapper:hover .landing-img {
  transform: scale(1.05);
}

.landing-description-section {
  display: flex;
  align-items: center;
  width: 100%;
  padding-right: 20px;
}

.landing-description {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.landing-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
}

.landing-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.8;
  color: #5e5e5e;
  margin: 0;
  padding-top: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

/* Right Column Container */
.landing-right-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Stats Section */
.landing-stats-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 300;
  color: #d4a574;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #1a1a1a;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.landing-book-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  color: #1a1a1a;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a1a;
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-left: 0;
  cursor: pointer;
  white-space: nowrap;
}

.landing-book-btn:hover {
  color: #d4a574;
  border-bottom-color: #d4a574;
  transform: translateY(-2px);
}

/* Images Section */
.landing-images-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: 0;
}

.landing-image-right {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  min-height: 500px;
  max-height: 600px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-image-right:hover .landing-img {
  transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .modern-landing-section {
    padding: 100px 5%;
  }

  .landing-header-stats {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
  }

  .landing-text-image-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .landing-stats-section {
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .landing-image-left {
    min-height: 500px;
    max-height: 600px;
  }

  .landing-image-right {
    min-height: 400px;
    max-height: 500px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .modern-landing-section {
    padding: 80px 4%;
  }

  .landing-header {
    margin-bottom: 50px;
  }

  .landing-title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .landing-description {
    font-size: 14px;
  }

  .landing-images-section {
    gap: 25px;
  }

  .landing-right-column {
    gap: 25px;
  }

  .landing-text-image-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .landing-stats-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
    margin-bottom: 0;
  }

  .landing-book-btn {
    margin-left: 0;
    align-self: center;
  }

  .landing-image-left {
    min-height: 400px;
    max-height: 480px;
  }

  .landing-image-right {
    min-height: 320px;
    max-height: 400px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .modern-landing-section {
    padding: 60px 3%;
  }

  .landing-header {
    gap: 30px;
    margin-bottom: 40px;
  }

  .landing-text-image-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .landing-stats-section {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }

  .stat-number {
    font-size: 36px;
  }

  .landing-image-left {
    min-height: 300px;
    max-height: 360px;
  }

  .landing-image-right {
    min-height: 250px;
    max-height: 300px;
    max-width: 100%;
  }
}

/* =======================
   SERVICES AND FEATURED SECTION
======================= */
.services-featured-section {
  padding: 120px 6%;
  background: #ffffff;
  position: relative;
}

.services-featured-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Services Row */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 100px;
}

.service-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 30px;
  border-radius: 12px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(240, 183, 70, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 165, 116, 0.3);
  background: #fafafa;
}

.service-block:hover::before {
  opacity: 1;
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 32px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease, transform 0.4s ease;
}

.service-block:hover .service-title {
  color: #d4a574;
  transform: translateX(5px);
}

.service-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.7;
  color: #5e5e5e;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.service-block:hover .service-description {
  color: #4a4a4a;
}

/* Featured Section */
.featured-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
}

.featured-image-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-content-panel {
  background: #3E2D4F;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.featured-heading {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
  font-style: italic;
}

.featured-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-featured-section {
    padding: 100px 5%;
  }

  .services-row {
    gap: 50px;
    margin-bottom: 80px;
  }

  .featured-content-panel {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .services-featured-section {
    padding: 80px 4%;
  }

  .services-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-block {
    gap: 15px;
  }

  .featured-section {
    grid-template-columns: 1fr;
  }

  .featured-image-wrapper {
    min-height: 400px;
  }

  .featured-image {
    min-height: 400px;
  }

  .featured-content-panel {
    padding: 50px 30px;
    min-height: auto;
  }

  .featured-heading {
    margin-bottom: 25px;
  }

  .featured-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .services-featured-section {
    padding: 60px 3%;
  }

  .services-row {
    gap: 35px;
    margin-bottom: 50px;
  }

  .featured-image-wrapper {
    min-height: 350px;
  }

  .featured-image {
    min-height: 350px;
  }

  .featured-content-panel {
    padding: 40px 25px;
  }
}

/* =======================
   BENEFITS SECTION
======================= */
.benefits-section {
  padding: 120px 6%;
  background: #ffffff;
  position: relative;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Text Block */
.benefits-text-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 48px);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.5px;
}

.benefits-description {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.8;
  color: #5e5e5e;
  margin: 0;
}

.benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(15px, 1.5vw, 16px);
  line-height: 1.6;
  color: #3a3a3a;
  position: relative;
  padding: 12px 20px 12px 40px;
  margin-bottom: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border-left: 3px solid transparent;
}

.benefit-item::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4a574;
  opacity: 0.6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.benefit-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(240, 183, 70, 0.05) 100%);
  border-radius: 8px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.benefit-item:hover {
  color: #0b2e2a;
  transform: translateX(8px);
  border-left-color: #f0b746;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(240, 183, 70, 0.04) 100%);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
  padding-left: 45px;
}

.benefit-item:hover::before {
  width: 14px;
  height: 14px;
  opacity: 1;
  background: #f0b746;
  box-shadow: 0 0 12px rgba(240, 183, 70, 0.6);
  transform: translateY(-50%) scale(1.2);
}

.benefit-item:hover::after {
  width: 100%;
}

/* Right Images Block */
.benefits-images-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: stretch;
}

.benefit-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.benefit-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  min-height: 400px;
}

.benefit-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  padding: 30px 25px 25px;
  display: flex;
  align-items: flex-end;
}

.benefit-overlay-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-image-wrapper:hover .benefit-overlay-text {
  border-bottom-color: #ffffff;
  color: #d4a574;
  border-bottom-color: #d4a574;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .benefits-section {
    padding: 100px 5%;
  }

  .benefits-content {
    gap: 60px;
  }

  .benefits-list {
    gap: 18px 30px;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 80px 4%;
  }

  .benefits-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-text-block {
    gap: 25px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits-images-block {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-image-wrapper {
    min-height: 350px;
  }

  .benefit-image {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    padding: 60px 3%;
  }

  .benefits-content {
    gap: 40px;
  }

  .benefits-text-block {
    gap: 20px;
  }

  .benefits-images-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-image-wrapper {
    min-height: 300px;
  }

  .benefit-image {
    min-height: 300px;
  }

  .benefit-image-overlay {
    padding: 25px 20px 20px;
  }
}

/* =======================
   ANIMATED TEXT SECTION
======================= */
.animated-text-section {
  padding: 100px 6%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

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

.animated-text-content {
  position: relative;
  z-index: 2;
}

.animated-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  color: #263342;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(30px);
}

.animated-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #5e7380;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(30px);
}

.animated-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 25px 35px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  border: 1px solid rgba(240, 183, 70, 0.2);
}

.feature-item i {
  font-size: 32px;
  color: #f0b746;
  transition: all 0.3s ease;
}

.feature-item span {
  font-size: 16px;
  font-weight: 600;
  color: #263342;
  transition: color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(240, 183, 70, 0.3);
  border-color: #f0b746;
}

.feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #d69c2c;
}

.feature-item:hover span {
  color: #d69c2c;
}

/* Responsive for animated text section */
@media (max-width: 768px) {
  .animated-text-section {
    padding: 60px 4%;
  }

  .animated-features {
    gap: 20px;
  }

  .feature-item {
    padding: 20px 25px;
    min-width: 140px;
  }

  .feature-item i {
    font-size: 28px;
  }

  .feature-item span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .animated-text-section {
    padding: 50px 3%;
  }

  .animated-features {
    gap: 15px;
  }

  .feature-item {
    padding: 18px 20px;
    min-width: 120px;
  }
}

/* =======================
   FOUNDER'S JOURNEY SECTION
======================= */
.founder-section-home {
  padding: 120px 6%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.founder-section-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(240, 183, 70, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.container-home {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.founder-content-home {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.founder-image-home {
  position: relative;
  visibility: visible;
  will-change: transform, opacity;
}

.founder-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 46, 42, 0.25);
  transform: perspective(1000px) rotateY(-8deg);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 40px 100px rgba(11, 46, 42, 0.35);
}

.founder-img-home {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-wrapper:hover .founder-img-home {
  transform: scale(1.08);
}

.founder-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 46, 42, 0.15) 0%, rgba(240, 183, 70, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.founder-image-wrapper:hover .founder-image-overlay {
  opacity: 1;
}

.founder-quote-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(240, 183, 70, 0.95), rgba(212, 175, 55, 0.95));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(240, 183, 70, 0.4);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.founder-image-wrapper:hover .founder-quote-badge {
  transform: scale(1) rotate(360deg);
}

.founder-quote-badge i {
  font-size: 32px;
  color: #fff;
}

.founder-text-home {
  padding-left: 40px;
  visibility: visible;
  will-change: transform, opacity;
}

.founder-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #f0b746;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}

.founder-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background: linear-gradient(90deg, #f0b746, transparent);
}

.founder-title-home {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 30px;
  line-height: 1.2;
  background: linear-gradient(135deg, #0b2e2a 0%, #154c53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-description-home {
  font-size: 18px;
  line-height: 1.9;
  color: #5e7380;
  margin-bottom: 24px;
  visibility: visible;
  will-change: transform, opacity;
}

.founder-description-home strong {
  color: #0b2e2a;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(240, 183, 70, 0.2), transparent);
  padding: 0 4px;
}

.founder-signature-home {
  margin-top: 50px;
  padding-top: 35px;
  border-top: 2px solid rgba(240, 183, 70, 0.3);
  visibility: visible;
  will-change: transform, opacity;
}

.signature-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #f0b746, transparent);
  margin-bottom: 20px;
}

.founder-name-home {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: 1px;
}

.founder-title-home-text {
  font-size: 15px;
  color: #f0b746;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.founder-stats-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid rgba(240, 183, 70, 0.2);
}

.founder-stat-item {
  text-align: center;
  visibility: visible;
  will-change: transform, opacity;
}

.founder-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #f0b746;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #f0b746, #d69c2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-stat-label {
  font-size: 13px;
  color: #5e7380;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .founder-content-home {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .founder-text-home {
    padding-left: 0;
    order: 2;
  }

  .founder-image-home {
    order: 1;
  }

  .founder-img-home {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .founder-section-home {
    padding: 80px 4%;
  }

  .founder-content-home {
    gap: 40px;
  }

  .founder-img-home {
    height: 400px;
  }

  .founder-description-home {
    font-size: 16px;
  }

  .founder-stats-home {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .founder-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .founder-section-home {
    padding: 60px 3%;
  }

  .founder-img-home {
    height: 350px;
  }

  .founder-title-home {
    font-size: 32px;
  }

  .founder-name-home {
    font-size: 24px;
  }
}

/* =======================
   OUR SACRED INSTRUMENTS SECTION - REDESIGNED
======================= */
.instruments-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #faf9f6 0%, #ffffff 50%, #faf9f6 100%);
  position: relative;
  overflow: hidden;
}

.instruments-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11, 46, 42, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 115, 85, 0.02) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.instruments-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  z-index: 1;
}

.instruments-container {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.instruments-main-title {
  text-align: center;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 24px;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.instruments-main-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
}

.instruments-subtitle {
  text-align: center;
  font-size: clamp(17px, 2.2vw, 20px);
  color: #5e7380;
  max-width: 800px;
  margin: 40px auto 80px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Category Styling */
.instrument-category {
  margin-bottom: 100px;
  position: relative;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.instrument-category:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.instrument-category:last-child {
  margin-bottom: 0;
}

.category-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  position: relative;
}

.category-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.category-header::after {
  content: '🎼';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  opacity: 0.3;
  z-index: -1;
}

.category-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.3px;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-description {
  font-size: clamp(16px, 1.8vw, 18px);
  color: #6b7c7f;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Subcategory Styling */
.subcategory {
  margin-bottom: 70px;
  padding: 50px 0;
  position: relative;
  border-left: 3px solid transparent;
  padding-left: 30px;
  transition: all 0.3s ease;
}

.subcategory:hover {
  border-left-color: #d4af37;
  padding-left: 35px;
}

.subcategory:last-child {
  margin-bottom: 0;
}

.subcategory-title {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-left: 32px;
  transition: color 0.3s ease;
}

.subcategory:hover .subcategory-title {
  color: #0b2e2a;
}

.subcategory-title::before {
  content: '♪';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-size: 24px;
  top: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.subcategory:hover .subcategory-title::before {
  transform: scale(1.2) rotate(10deg);
  color: #f0b746;
}

.subcategory-description {
  font-size: clamp(15px, 1.6vw, 16px);
  color: #6b7c7f;
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 900px;
  padding-left: 32px;
  letter-spacing: 0.2px;
}

/* Modern Grid Layout - Responsive */
.instruments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 40px;
  padding: 0;
}

/* Enhanced Instrument Card */
.instrument-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.15);
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.instrument-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f0b746, #d4af37);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.instrument-card:hover::before {
  transform: scaleX(1);
}

.instrument-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 8px 24px rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  min-height: 300px;
  height: auto;
  overflow: visible;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.instrument-card:hover .card-image-wrapper::after {
  opacity: 1;
}

.card-icon-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.instrument-card:hover .card-icon-overlay {
  transform: scale(1.1) rotate(5deg);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 1);
}

.card-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain !important;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  filter: brightness(1) contrast(1);
  display: block;
  margin: 0 auto;
}

.instrument-card:hover .card-image {
  transform: scale(1.05);
  filter: brightness(1.05) contrast(1.1);
}

.card-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
  position: relative;
  opacity: 1;
}

.card-title {
  font-size: clamp(20px, 2.2vw, 22px);
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 14px;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
  opacity: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.instrument-card:hover .card-title {
  color: #d4af37;
}

.card-text {
  font-size: clamp(14px, 1.5vw, 15px);
  color: #3d4a56;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 500;
  letter-spacing: 0.2px;
  opacity: 1;
}

.card-btn {
  background: linear-gradient(135deg, #d4af37 0%, #f0b746 100%);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(212, 175, 55, 0.3),
    0 2px 4px rgba(212, 175, 55, 0.2);
  align-self: flex-start;
  margin-top: auto;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

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

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

.card-btn:hover {
  background: linear-gradient(135deg, #c19b2a 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 20px rgba(212, 175, 55, 0.4),
    0 4px 8px rgba(212, 175, 55, 0.3);
}

.card-btn i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-btn:hover i {
  transform: translateX(4px);
}

.card-btn:active {
  transform: translateY(-1px);
}

/* Responsive Grid Layouts */
@media (min-width: 1400px) {
  .instruments-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
  
  .card-image-wrapper {
    min-height: 350px;
    padding: 25px;
  }
  
  .card-image {
    max-height: 450px;
  }
}

@media (min-width: 1024px) and (max-width: 1399px) {
  .instruments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  
  .card-image-wrapper {
    min-height: 300px;
    padding: 18px;
  }
  
  .card-image {
    max-height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .instruments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .card-image-wrapper {
    min-height: 280px;
    padding: 16px;
  }
  
  .card-image {
    max-height: 320px;
  }
}

@media (max-width: 767px) {
  .instruments-section {
    padding: 80px 0;
  }
  
  .instruments-container {
    width: 95%;
    padding: 0 20px;
  }
  
  .instruments-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .card-image-wrapper {
    min-height: 250px;
    padding: 18px;
  }
  
  .card-image {
    max-height: 300px;
  }
  
  .instruments-main-title {
    font-size: clamp(32px, 7vw, 40px);
    margin-bottom: 20px;
  }
  
  .instruments-subtitle {
    font-size: clamp(15px, 3.5vw, 17px);
    margin: 30px auto 60px;
  }
  
  .instrument-category {
    margin-bottom: 60px;
  }
  
  .category-header {
    margin-bottom: 40px;
    padding: 25px 0;
  }
  
  .category-title {
    font-size: clamp(28px, 5vw, 32px);
  }
  
  .category-description {
    font-size: clamp(15px, 3vw, 16px);
  }
  
  .instrument-category {
    margin-bottom: 60px;
    padding: 40px 20px;
  }
  
  .subcategory {
    margin-bottom: 50px;
    padding: 30px 0;
    padding-left: 20px;
  }
  
  .subcategory:hover {
    padding-left: 25px;
  }
  
  .subcategory-title {
    font-size: clamp(22px, 4vw, 24px);
    padding-left: 28px;
  }
  
  .subcategory-description {
    font-size: clamp(14px, 3vw, 15px);
    margin-bottom: 30px;
    padding-left: 28px;
  }
  
  .card-image-wrapper {
    height: 260px;
  }
  
  .card-content {
    padding: 24px;
  }
  
  .card-title {
    font-size: clamp(18px, 4vw, 20px);
  }
  
  .card-text {
    font-size: clamp(13px, 3vw, 14px);
  }
  
  .card-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .instruments-section {
    padding: 60px 0;
  }
  
  .instruments-container {
    width: 98%;
    padding: 0 15px;
  }
  
  .instruments-grid {
    gap: 20px;
  }
  
  .card-image-wrapper {
    min-height: 180px;
    padding: 12px;
  }
  
  .card-image {
    max-height: 220px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .instrument-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

.instrument-details-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instrument-details-panel.active {
  opacity: 1;
  visibility: visible;
}

.instrument-details-panel-content {
  position: relative;
  background: #faf9f6;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  gap: 0;
  padding: 0;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.instrument-details-panel.active .instrument-details-panel-content {
  transform: scale(1);
}

.instrument-details-image-wrapper {
  flex: 0 0 50%;
  position: relative;
  min-height: 500px;
  max-height: 90vh;
  overflow: visible;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.instrument-details-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  min-height: auto;
  display: block;
}

.instrument-details-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.details-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.details-close-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(90deg);
}

.details-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  flex: 1;
  overflow-y: auto;
  background: #faf9f6;
}

.details-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.details-section:last-of-type {
  margin-bottom: 0;
}

.details-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.details-info {
  margin-bottom: 0;
}

.details-info p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

.details-info p:last-child {
  margin-bottom: 0;
}

.details-info strong {
  color: #0b2e2a;
  font-weight: 700;
  margin-right: 8px;
  font-size: 15px;
}

.details-note {
  font-size: 14px;
  color: #5e7380;
  line-height: 1.7;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.details-description {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

.inquiry-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.inquiry-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 20px;
}

.inquiry-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.inquiry-whatsapp-btn {
  background: #25d366;
  color: #fff;
}

.inquiry-whatsapp-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.inquiry-email-btn {
  background: #0b2e2a;
  color: #fff;
}

.inquiry-email-btn:hover {
  background: #154c53;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 46, 42, 0.4);
}

/* Instrument Contact Links */
.instrument-contact-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: flex-start;
  overflow: hidden;
}

.instrument-contact-links.hidden {
  display: none;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f0b746 0%, #d69c2c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 183, 70, 0.3);
  transform: scale(0.8);
  opacity: 0;
}

.contact-email-link:hover {
  background: linear-gradient(135deg, #d69c2c 0%, #c08a20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 183, 70, 0.4);
}

.contact-email-link i {
  font-size: 16px;
}

.whatsapp-qr {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  transform: scale(0.8);
  opacity: 0;
}

.instrument-contact-links:not(.hidden) .contact-email-link,
.instrument-contact-links:not(.hidden) .whatsapp-qr {
  transform: scale(1);
  opacity: 1;
}

.whatsapp-qr:hover {
  transform: scale(1.05);
}

/* Modal Contact Links */
.modal-contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  align-items: flex-start;
}

.modal-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #f0b746 0%, #d69c2c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 183, 70, 0.3);
}

.modal-email-link:hover {
  background: linear-gradient(135deg, #d69c2c 0%, #c08a20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 183, 70, 0.4);
}

.modal-email-link i {
  font-size: 18px;
}

.modal-whatsapp-qr {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.modal-whatsapp-qr:hover {
  transform: scale(1.05);
}

/* Modal Styles */
.instrument-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.instrument-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal-wrapper {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 1000px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.instrument-modal.active .modal-wrapper,
.instrument-modal.active .modal-container {
  transform: scale(1);
}

.modal-close-btn,
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.modal-close-btn:hover,
.modal-close-btn:focus,
.modal-close:hover,
.modal-close:focus {
  background: rgba(0, 0, 0, 0.9);
  transform: rotate(90deg);
  outline: 3px solid #f0b746;
  outline-offset: 2px;
}

.modal-content-wrapper {
  width: 100%;
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
  width: 100%;
}

.modal-image-section {
  width: 100%;
  height: 100%;
  min-height: 500px;
  max-height: 90vh;
  overflow: visible;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

.modal-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center center;
  display: block;
  min-height: auto;
  transition: opacity 0.3s ease;
  margin: 0 auto;
}

.modal-image-title {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, rgba(11, 46, 42, 0.95), rgba(11, 46, 42, 0.9));
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  width: fit-content;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

.modal-image-title::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #f0b746, #d4af37);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.modal-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.02);
  z-index: 1;
  pointer-events: none;
}

.modal-text-section {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #faf9f6;
  overflow-y: auto;
  max-height: 90vh;
  min-height: 500px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.modal-details-section,
.modal-description-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.details-info {
  margin-top: 15px;
}

.details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 15px;
}

.details-row:last-child {
  margin-bottom: 0;
}

.detail-item {
  width: 100%;
}

.detail-item p {
  margin: 0;
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

.detail-item strong {
  color: #0b2e2a;
  font-weight: 700;
  margin-right: 8px;
  font-size: 15px;
}

.detail-value {
  color: #5e7380;
  font-weight: 400;
}

.details-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b2e2a;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.details-info {
  margin-bottom: 0;
}

.details-info p {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

.details-info p:last-child {
  margin-bottom: 0;
}

.details-info strong {
  color: #0b2e2a;
  font-weight: 700;
  margin-right: 8px;
  font-size: 15px;
}

.modal-description-section .modal-description {
  margin-top: 0;
}

/* Modal Gallery Section */
.modal-gallery-section {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: 20px;
}

.modal-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

/* For 4 images, show 3 in first row, 1 in second row */
.modal-gallery-grid .gallery-item:nth-child(4) {
  grid-column: 1 / 2;
}

.modal-gallery-grid .gallery-item {
  position: relative;
  width: 100%;
  min-height: 150px;
  height: auto;
  overflow: visible;
  border-radius: 12px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-gallery-grid .gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-gallery-grid .gallery-item.active {
  border: 3px solid #f0b746;
  box-shadow: 0 8px 20px rgba(240, 183, 70, 0.4);
  transform: translateY(-5px);
}

.modal-gallery-grid .gallery-image {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain !important;
  object-position: center center;
  display: block;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

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

.modal-additional-info {
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.modal-additional-info h3 {
  font-size: 18px;
  color: #0b2e2a;
  margin-bottom: 12px;
  font-weight: 700;
}

.modal-additional-info p {
  font-size: 14px;
  color: #5e7380;
  line-height: 1.6;
  margin-bottom: 12px;
}

.modal-header-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.modal-title {
  font-size: clamp(22px, 3vw, 28px);
  color: #0b2e2a;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  text-transform: none !important;
  font-family: 'Playfair Display', serif;
}

.modal-description {
  font-size: 15px;
  color: #5e7380;
  line-height: 1.8;
  margin: 0;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
  .modal-wrapper {
    width: 95%;
    max-height: 95vh;
  }

  .modal-content-wrapper,
  .modal-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .modal-image-section {
    min-height: 300px;
    max-height: 400px;
    padding: 15px;
  }
  
  .modal-image {
    max-height: 350px;
  }

  .modal-text-section {
    padding: 25px;
    max-height: calc(95vh - 400px);
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 150px;
  }
  
  .details-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal-header-section {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .modal-title {
    font-size: 22px;
    margin: 0;
  }
  
  .modal-image-title {
    padding: 7px 14px;
    font-size: 13px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modal-text-section {
    padding: 20px;
  }

  .modal-title {
    font-size: 20px;
  }

  .modal-details-section,
  .modal-description-section {
    padding: 15px;
  }
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  flex-wrap: wrap;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.email-btn {
  background: #d4af37;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.email-btn:hover {
  background: #c19b2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.modal-btn i {
  font-size: 18px;
}

.modal-features {
  margin-top: 10px;
}

.modal-features h3 {
  font-size: 20px;
  color: #0b2e2a;
  margin-bottom: 15px;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li {
  padding: 10px 0;
  padding-left: 28px;
  color: #5e7380;
  font-size: 15px;
  position: relative;
  line-height: 1.6;
}

.modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0b746;
  font-weight: bold;
  font-size: 20px;
}

.book-session-btn {
  margin-top: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #f0b746 0%, #d69c2c 100%);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 183, 70, 0.3);
  align-self: flex-start;
}

.book-session-btn:hover,
.book-session-btn:focus {
  background: linear-gradient(135deg, #d69c2c 0%, #c08a20 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 183, 70, 0.4);
  outline: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .instruments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .modal-content {
    flex-direction: column;
    max-height: 95vh;
  }
  
  .modal-image-section {
    flex: 0 0 auto;
    min-height: 300px;
    max-height: 400px;
    padding: 15px;
  }
  
  .modal-image {
    max-height: 350px;
    min-height: auto;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 120px;
  }
  
  .modal-text-section {
    padding: 35px 30px;
    overflow-y: auto;
  }
  
  .modal-wrapper {
    max-width: 700px;
    width: 90%;
  }
  
  .modal-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .modal-image-section {
    min-height: 250px;
    max-height: 350px;
    padding: 12px;
  }
  
  .modal-image {
    max-height: 300px;
  }

  .modal-header-section {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .modal-image-title {
    padding: 7px 14px;
    font-size: 13px;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 100px;
  }
  
  .modal-text-section {
    padding: 30px 25px;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 130px;
  }
}

@media (max-width: 768px) {
  .instruments-section {
    padding: 70px 0;
  }
  
  .instruments-container {
    width: 95%;
    padding: 0 15px;
  }
  
  .instruments-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .card-image-wrapper {
    height: 250px;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .modal-container {
    max-height: 95vh;
  }
  
  .modal-image-section {
    min-height: 200px;
    max-height: 280px;
    padding: 10px;
  }
  
  .modal-image {
    max-height: 250px;
    min-height: auto;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 80px;
  }

  .modal-header-section {
    gap: 8px;
    margin-bottom: 18px;
  }
  
  .modal-image-title {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .modal-text-section {
    padding: 30px 25px;
  }
  
  .modal-title {
    font-size: 24px;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 110px;
  }
  
  .modal-description {
    font-size: 15px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-btn {
    width: 100%;
    justify-content: center;
  }
  
  .modal-wrapper {
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
  }
  
  .modal-text-section {
    padding: 25px 20px;
    gap: 16px;
  }
  
  .modal-image-section {
    min-height: 250px;
  }
  
  .modal-title {
    font-size: 20px;
  }
  
  .modal-description {
    font-size: 14px;
  }
  
  .modal-additional-info h3 {
    font-size: 16px;
  }
  
  .modal-additional-info p {
    font-size: 13px;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .instruments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .instrument-image-container {
    height: 200px;
  }
  
  .instrument-info {
    padding: 20px;
  }
  
  .learn-more-instrument-btn {
    width: 100%;
    text-align: center;
  }
  
  .book-session-btn {
    width: 100%;
  }

  .instrument-contact-links {
    align-items: center;
  }

  .contact-email-link {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-qr {
    width: 100px;
    height: 100px;
    margin: 0 auto;
  }

  .modal-contact-links {
    align-items: center;
  }

  .modal-email-link {
    width: 100%;
    justify-content: center;
  }

  .modal-whatsapp-qr {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .modal-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .modal-gallery-grid .gallery-image {
    max-height: 70px;
  }
  
  .modal-gallery-section {
    padding: 15px;
  }

  .modal-gallery-section .details-section-title {
    font-size: 16px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .instrument-item,
  .learn-more-instrument-btn,
  .modal-close-btn,
  .book-session-btn {
    transition: none;
  }
  
  .instrument-image {
    transition: none;
  }
}

/* Focus styles for keyboard navigation */
.learn-more-instrument-btn:focus-visible,
.modal-close-btn:focus-visible,
.book-session-btn:focus-visible {
  outline: 3px solid #f0b746;
  outline-offset: 3px;
}

/* statsss */
.stats-section {
    background: #f5fbf5;
    padding: 80px 0;
}

.stats-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.stats-left h2 {
    font-size: 55px;
    color: #154c53;
    font-weight: 700;
    line-height: 1.2;
}

.underline {
    width: 120px;
    height: 4px;
    background: #d0b36b;
    margin-top: 20px;
}

.stats-right {
    display: flex;
    gap: 100px;
}

.stat-box h1 {
    font-size: 60px;
    color: #10b548;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-title {
    font-size: 20px;
    color: #1e405a;
    font-weight: 600;
}

.stat-desc {
    font-size: 16px;
    color: #6c7a84;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .stats-right {
        flex-direction: column;
        gap: 40px;
    }

    .stats-left h2 {
        font-size: 40px;
    }

    .stat-box h1 {
        font-size: 50px;
    }
}


/* videossss */
/* Video Section */
.video-section {
    background: linear-gradient(to bottom, #f7f9f6, #e8eee9);
    padding: 80px 20px;
    text-align: center;
}

.video-content {
    max-width: 600px;
    margin: auto;
}

/* Badge */
.video-badge {
    display: inline-block;
    background: #ebe9d7;
    color: #6a6a5a;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Title */
.video-title {
    font-size: 30px;
    margin-top: 15px;
    color: #123c44;
    font-weight: 700;
}

/* Subtitle */
.video-subtitle {
    margin-top: 10px;
    font-size: 15px;
    color: #607078;
    line-height: 1.6;
}

/* Video Box */
.video-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.video-player {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 600px) {
    .video-title {
        font-size: 24px;
    }

    .video-subtitle {
        font-size: 14px;
    }
}

                            /* FAQ SECTION */
.faq-section {
  padding: 80px 15%;
  text-align: center;
  background-color: #FFE2AF;
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.faq-section p {
  margin-bottom: 40px;
  color: #556;
}

/* FAQ ITEM */
.faq-item {
  background: white;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 15px;
  cursor: pointer;
  box-shadow: 0 2px 10px C9B59C;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.faq-answer {
  margin-top: 10px;
  display: none;
  opacity: 0;
  line-height: 1.6;
  transition: opacity 0.4s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  display: block;
  opacity: 1;
}

.icon {
  font-size: 22px;
  transition: 0.4s;
}
.faq-item.active .icon {
  transform: rotate(180deg);
}





/* Sections */
section { padding: 5rem 2rem; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 3rem; color: #6B5B95; }

/* Services */
.services-section {
  text-align: center;
  padding: 90px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  color: #6B5B95;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  position: relative;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #6B5B95, #9d85e6);
  display: block;
  margin: 15px auto 0;
  border-radius: 3px;
}

/* --- GRID LAYOUT --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- SERVICE CARD --- */
.service-card {
  background: #f9f9fb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(107, 91, 149, 0.25);
}

/* --- IMAGE WRAPPER --- */
.img-wrapper {
  position: relative;
  overflow: hidden;
  height: 230px;
}

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

/* --- OVERLAY EFFECT --- */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(107, 91, 149, 0.85);
  color: #fff;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20%);
}

.service-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- CONTENT --- */
.service-content {
  padding: 1.5rem 1rem 2rem;
}

.service-content h3 {
  color: #6B5B95;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.service-card:hover h3 {
  color: #9d85e6;
}

/* --- BUTTON --- */
.book-btn {
  background: linear-gradient(135deg, #6B5B95, #8364c5);
  color: #fff;
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(107, 91, 149, 0.3);
}

.book-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #7c68b9, #a18ff1);
  box-shadow: 0 6px 20px rgba(107, 91, 149, 0.5);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .img-wrapper {
    height: 180px;
  }
  .book-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.8rem;
  }
}


/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .about-content { flex-direction: column; gap: 30px; margin-top: -50px; }
  .about-image, .about-text { min-width: 100%; }
  .about-hero { height: 250px; }
  .about-hero .section-title { font-size: 2.2rem; }
  .about-boxes { flex-direction: column; gap: 20px; }
}

/* Our Bowls & Gong */
.bowls-gong {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.bowls-gong h2 {
  font-size: 2.5rem;
  color: #6B5B95;
  margin-bottom: 40px;
}

/* --- CATEGORY CARDS --- */
.bowls-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.bowl-card {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 25px;
  max-width: 300px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bowl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(107, 91, 149, 0.3);
}

.bowl-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 15px;
}

.bowl-card h3 {
  color: #6B5B95;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* --- EXPANDED SECTIONS --- */
.category {
  display: none;
  animation: fadeIn 0.5s ease;
}

.category h3 {
  font-size: 1.8rem;
  color: #6B5B95;
  margin-bottom: 20px;
}

.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.item {
  background: #f0f4f8;
  border-radius: 12px;
  padding: 15px;
  max-width: 250px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.item img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}

.item p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Hidden class */
.hidden {
  display: none;
}

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

/* Testimonials */
#testimonial {
  padding: 100px 5%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

#testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f0b746, transparent);
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1a3a3a;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  font-weight: 300;
}

/* Modern Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Testimonial Cards - Modern Design */
.testimonial-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(240, 183, 70, 0.1);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f0b746, #d69c2c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(240, 183, 70, 0.15);
  border-color: rgba(240, 183, 70, 0.3);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.quote-icon {
  font-size: 4rem;
  color: #f0b746;
  font-family: 'Georgia', serif;
  line-height: 1;
  opacity: 0.3;
  font-weight: 700;
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 400;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.author-info h4 {
  font-size: 1.1rem;
  color: #1a3a3a;
  margin: 0 0 0.3rem 0;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.author-info span {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
  #testimonial {
    padding: 60px 4%;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .section-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .quote-icon {
    font-size: 3rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
}

/* Contact Section */
.contact-section {
  background: #f9f7ff;
  padding: 5rem 2rem;
  text-align: center;
}

.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.contact-info h3 {
  font-size: 2rem;
  color: #6B5B95;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.6;
}

.info-item {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333;
}

.info-item strong {
  color: #6B5B95;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(107, 91, 149, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #6B5B95;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #6B5B95;
  box-shadow: 0 0 5px rgba(107, 91, 149, 0.3);
}

.submit-btn {
  background: linear-gradient(135deg, #6B5B95, #8364c5);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107, 91, 149, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(107, 91, 149, 0.6);
  background: linear-gradient(135deg, #7c68b9, #9d85e6);
}


/* Responsive */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    gap: 2rem;
  }
  .contact-info, .contact-form {
    min-width: 100%;
  }
}

/* Footer */
.footer {
	width: 100%;
	background: #00121b;
	display: block;
}

.inner-footer {
	width: 95%;
	margin: auto;
	padding: 30px 10px;
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	justify-content: center;
}

.footer-items {
	width: 25%;
	padding: 10px 20px;
	box-sizing: border-box;
}

h1 {
	padding: 10px 0;
	font-size: 25px;
	color: #fff;
	text-transform: uppercase;
}

.footer-items p {
	color: grey;
	font-size: 16px;
	text-align: justify;
	line-height: 25px;
}

h2 {
	margin: 10px 0;
	color: grey;
	font-size: 16px;
	font-weight: lighter;
	text-transform: uppercase;
}

/* Override for modal title */
.instrument-modal .modal-title,
.modal-title {
	text-transform: none !important;
	color: #0b2e2a !important;
	font-size: clamp(22px, 3vw, 28px) !important;
	font-weight: 700 !important;
	font-family: 'Playfair Display', serif !important;
}

.border {
	height: 2px;
	width: 40px;
	background: #ff9800;
}

ul {
	list-style: none;
	color: #fff;
	font-size: 15px;
	letter-spacing: 0.5px;
}

ul a {
	text-decoration: none;
	outline: none;
	color: #fff;
	transition: 0.3s;
}

ul a:hover {
	color: #ff9800;
}

ul li {
	margin: 10px 0;
	height: 25px;
}

li i {
	margin-right: 20px;
}

.social-media {
	width: 100%;
	color: #fff;
	text-align: center;
}

.social-media a {
	text-decoration: none;
}

.social-media i {
	height: 15px;
	width: 15px;
	margin: 20px 5px;
	padding: 10px;
	color: #fff;
	border-radius: 50%;
	border: 1px solid grey;
	transition: 0.3s;
}

.social-media i:hover {
	background: grey;
}

.footer-bottom {
	padding: 10px;
	background: #3d545f;
	color: #fff;
	font-size: 12px;
}

@media screen and (max-width: 1085px) {
	.footer-items {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	.footer-items {
		width: 100%;
	}
}