/* About Us Section CSS */
:root {
  --cream: #FEFCF8;
  --warm-white: #FFFFFF;
  --beige: #F5EFE6;
  --teal: #0F4C3A;
  --teal-light: #1A6B54;
  --blue: #918382;
  --blue-light: #918382;
  --gold: #837779;
  --gold-light: #918382;
  --gold-dark: #B8941F;
  --plum: #581845;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --overlay-dark: rgba(15, 76, 58, 0.6);
  --overlay-gold: rgba(212, 175, 55, 0.3);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}
    * {
      box-sizing: border-box;
    }
    
    html, body {
      margin: 0;
      padding: 0;
      background: var(--cream);
      color: var(--gray-800);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      scroll-behavior: smooth;
      line-height: 1.6;
    }
    
    h1, h2, h3, .logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
    }
    
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    /* Header */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(254, 252, 248, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.3s ease;
      height: 80px;
      display: flex;
      align-items: center;
    }
    
    header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: var(--shadow-md);
      border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2rem;
      height: 80px;
    }
    
    .logo {
      font-size: 2.2rem;
      font-weight: 900;
      background: var(--gradient-teal);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: -0.5px;
      z-index: 1101;
    }
    
    nav {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      z-index: 1100;
    }
    
    nav a {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--gray-600);
      padding: 0.75rem 1rem;
      border-radius: 12px;
      position: relative;
      transition: all 0.3s ease;
    }
    
    nav a:hover, nav a:focus {
      color: var(--teal);
      background: rgba(15, 76, 58, 0.08);
      transform: translateY(-1px);
      outline: none;
    }
    
    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: var(--gradient-gold);
      transition: all 0.3s ease;
      transform: translateX(-50%);
    }
    
    nav a:hover::after {
      width: 80%;
    }
    
    .cta-btn {
      background: var(--gradient-gold);
      color: var(--warm-white);
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 0.875rem 2rem;
      margin-left: 1.5rem;
      font-size: 0.95rem;
      cursor: pointer;
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .cta-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;
    }
    
    .cta-btn:hover::before {
      left: 100%;
    }
    
    .cta-btn:hover, .cta-btn:focus {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
      outline: none;
    }
    
    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 44px;
      height: 44px;
      cursor: pointer;
      margin-left: 1.5rem;
      z-index: 1102;
      background: none;
      border: none;
      border-radius: 12px;
      transition: background 0.3s ease;
    }
    
    .hamburger:hover {
      background: rgba(15, 76, 58, 0.08);
    }
    
    .hamburger span {
      height: 3px;
      width: 28px;
      background: var(--teal);
      margin: 3px 0;
      border-radius: 3px;
      transition: all 0.3s ease;
      display: block;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }
    .hamburger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Mobile Nav */
    @media (max-width: 900px) {
      .nav-container {
        padding: 0 1.5rem;
      }
      nav {
        gap: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .nav-container {
        padding: 0 1rem;
      }
      
      nav {
        position: fixed;
        top: 80px;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        align-items: stretch;
        width: 280px;
        padding: 2rem 1.5rem;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        height: calc(100vh - 80px);
        border-top-left-radius: 24px;
        border-bottom-left-radius: 24px;
        visibility: hidden;
        pointer-events: none;
      }
      
      nav.open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
      }
      
      nav a {
        margin-bottom: 1rem;
        padding: 1rem 1.5rem;
        text-align: left;
        font-size: 1.1rem;
        border-radius: 16px;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
      }
      
      nav a:hover {
        background: var(--teal);
        color: var(--warm-white);
        transform: translateX(8px);
      }
      
      .cta-btn {
        margin: 1.5rem 0 0 0;
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
      }
      
      .hamburger {
        display: flex;
      }
      
      .logo {
        font-size: 1.8rem;
      }
    }
    
    @media (max-width: 480px) {
      .nav-container {
        padding: 0 0.75rem;
      }
      
      .logo {
        font-size: 1.6rem;
      }
      
      nav {
        width: 100vw;
        border-radius: 0;
        padding: 1.5rem 1rem;
      }
    }
    
    /* Hero Section */
    .hero {
      width: 100vw;
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .hero-slider {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      z-index: 1;
    }
    
    .hero-slide {
      position: absolute;
      width: 100%; height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    
    .hero-slide.active {
      opacity: 1;
      z-index: 2;
    }
    
    .hero-overlay {
      position: relative;
      z-index: 3;
      width: 100%;
      text-align: center;
      color: var(--warm-white);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      background: linear-gradient(135deg, rgba(15, 76, 58, 0.4) 0%, rgba(74, 107, 124, 0.3) 100%);
      padding: 2rem;
    }
    
    .hero-overlay h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      margin-bottom: 1.5rem;
      font-weight: 900;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      letter-spacing: -1px;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero-overlay p {
      font-size: clamp(1.1rem, 2.5vw, 1.4rem);
      margin-bottom: 3rem;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      max-width: 600px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
      animation: fadeInUp 1s ease-out 0.3s both;
    }
    
    .hero-btn {
      background: var(--gradient-gold);
      color: var(--warm-white);
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      padding: 1.25rem 3rem;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: var(--shadow-lg);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
      animation: fadeInUp 1s ease-out 0.6s both;
    }
    
    .hero-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.6s;
    }
    
    .hero-btn:hover::before {
      left: 100%;
    }
    
    .hero-btn:hover, .hero-btn:focus {
      transform: translateY(-3px) scale(1.05);
      box-shadow: var(--shadow-xl);
      outline: none;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Scroll Indicator */
        /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      animation: bounce 2s infinite;
    }
    
    .scroll-indicator i {
      font-size: 2rem;
      color: var(--warm-white);
      opacity: 0.8;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
      }
      40% {
        transform: translateX(-50%) translateY(-10px);
      }
      60% {
        transform: translateX(-50%) translateY(-5px);
      }
    }
    
    /* Our Rooms */
    .rooms-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 8rem 2rem 6rem 2rem;
      background: var(--cream);
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    
    .section-subtitle {
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      font-family: 'Inter', sans-serif;
    }
    
    .rooms-section h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--teal);
      margin-bottom: 1.5rem;
      font-weight: 700;
      letter-spacing: -1px;
    }
    
    .section-description {
      font-size: 1.2rem;
      color: var(--gray-600);
      max-width: 600px;
      margin: 0 auto;
      font-family: 'Inter', sans-serif;
      line-height: 1.7;
    }
    
    .rooms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
      gap: 2.5rem;
      margin-top: 4rem;
    }
    
    .room-card {
      background: var(--warm-white);
      border-radius: 24px;
      box-shadow: var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--gray-200);
      position: relative;
    }
    
    .room-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--gradient-gold);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
      border-radius: 24px;
    }
    
    .room-card:hover::before {
      opacity: 0.03;
    }
    
    .room-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: var(--shadow-xl);
      border-color: var(--gold);
    }
    
    .room-img-container {
      position: relative;
      overflow: hidden;
      height: 220px;
    }
    
    .room-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .room-card:hover .room-img {
      transform: scale(1.1);
    }
    
    .room-badge {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--gradient-gold);
      color: var(--warm-white);
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      box-shadow: var(--shadow-md);
      z-index: 2;
    }
    
    .room-content {
      padding: 2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }
    
    .room-content h3 {
      font-size: 1.5rem;
      color: var(--teal);
      margin-bottom: 1rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
    }
    
    .room-content p {
      color: var(--gray-600);
      font-size: 1rem;
      margin-bottom: 1.5rem;
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
    }
    
    .room-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .feature-tag {
      background: var(--gray-100);
      color: var(--gray-600);
      padding: 0.4rem 0.8rem;
      border-radius: 12px;
      font-size: 0.85rem;
      font-weight: 500;
      font-family: 'Inter', sans-serif;
    }
    
    .room-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }
    
    .room-price {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--teal);
      font-family: 'Inter', sans-serif;
    }
    
    .room-price span {
      font-size: 0.9rem;
      font-weight: 400;
      color: var(--gray-600);
    }
    
    .room-details-link {
      background: var(--gradient-teal);
      color: var(--warm-white);
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-sm);
    }
    
    .room-details-link:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }
    
    /* Gallery Section - Explore Kashmir's Beauty */
    .gallery-section {
      background: var(--warm-white);
      padding: 8rem 2rem 6rem 2rem;
      margin-top: 4rem;
    }
    
    .gallery-container {
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .gallery-section h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      color: var(--teal);
      margin-bottom: 1.5rem;
      font-weight: 700;
      letter-spacing: -1px;
    }
    
    .gallery-carousel {
      margin-top: 4rem;
      position: relative;
    }
    
    .carousel-container {
      position: relative;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 24px;
      box-shadow: var(--shadow-xl);
    }
    
    .carousel-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      height: 600px;
    }
    
    .gallery-slide {
      min-width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .gallery-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    
    .gallery-slide:hover img {
      transform: scale(1.05);
    }
    
    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(15, 76, 58, 0.9) 0%, rgba(15, 76, 58, 0.4) 50%, transparent 100%);
      color: var(--warm-white);
      padding: 3rem 2rem 2rem;
      text-align: center;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }
    
    .gallery-slide:hover .slide-overlay {
      transform: translateY(0);
    }
    
    .slide-overlay h3 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      color: var(--warm-white);
    }
    
    .slide-overlay p {
      font-size: 1.1rem;
      margin: 0;
      opacity: 0.9;
      font-family: 'Inter', sans-serif;
    }
    
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      color: var(--teal);
      box-shadow: var(--shadow-md);
      transition: all 0.3s ease;
      z-index: 10;
      backdrop-filter: blur(10px);
    }
    
    .carousel-btn:hover {
      background: var(--warm-white);
      transform: translateY(-50%) scale(1.1);
      box-shadow: var(--shadow-lg);
    }
    
    .prev-btn {
      left: 2rem;
    }
    
    .next-btn {
      right: 2rem;
    }
    
    .carousel-indicators {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.8rem;
      z-index: 10;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: 2px solid var(--warm-white);
      background: transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      opacity: 0.7;
    }
    
    .indicator.active,
    .indicator:hover {
      background: var(--warm-white);
      opacity: 1;
      transform: scale(1.2);
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
      .gallery-section {
        padding: 6rem 1rem 4rem 1rem;
      }
      
      .carousel-container {
        border-radius: 16px;
      }
      
      .carousel-track {
        height: 400px;
      }
      
      .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
      }
      
      .prev-btn {
        left: 1rem;
      }
      
      .next-btn {
        right: 1rem;
      }
      
      .slide-overlay {
        padding: 2rem 1.5rem 1.5rem;
      }
      
      .slide-overlay h3 {
        font-size: 1.5rem;
      }
      
      .slide-overlay p {
        font-size: 1rem;
      }
      
      .carousel-indicators {
        bottom: 1rem;
        gap: 0.6rem;
      }
      
      .indicator {
        width: 10px;
        height: 10px;
      }
    }
    
    @media (max-width: 480px) {
      .carousel-track {
        height: 300px;
      }
      
      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
      }
      
      .slide-overlay h3 {
        font-size: 1.2rem;
      }
      
      .slide-overlay p {
        font-size: 0.9rem;
      }
    }
    
    /* Features Section */
    .features-section {
      background: var(--warm-white);
      padding: 0rem 2rem;
      margin-top: 4rem;
    }
    
    .features-container {
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 3rem;
      margin-top: 4rem;
    }
    
    .feature-card {
      text-align: center;
      padding: 2rem;
      border-radius: 20px;
      transition: all 0.3s ease;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      background: var(--gray-50);
    }
    
    .feature-icon {
      width: 80px;
      height: 80px;
      background: var(--gradient-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: var(--shadow-md);
    }
    
    .feature-icon i {
      font-size: 2rem;
      color: var(--warm-white);
    }
    
    .feature-card h3 {
      font-size: 1.3rem;
      color: var(--teal);
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }
    
    .feature-card p {
      color: var(--gray-600);
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
    }
    
    /* Footer */
    footer {
      background: var(--teal);
      color: var(--warm-white);
      padding: 4rem 0 2rem 0;
      font-family: 'Inter', sans-serif;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.5;
    }
    
    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 3rem;
      padding: 0 2rem;
      position: relative;
      z-index: 1;
    }
    
    .footer-col h4 {
      font-size: 1.2rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: black;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
    }
    
    .footer-logo {
      font-size: 2rem;
      font-family: 'Playfair Display', serif;
      font-weight: 900;
      color: black;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }
    
    .footer-mission {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    
    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1rem;
      transition: all 0.3s ease;
      padding: 0.5rem 0;
      border-bottom: 1px solid transparent;
    }
    
    .footer-links a:hover {
      color: var(--gold);
      border-bottom-color: var(--gold);
      transform: translateX(5px);
    }
    
    .footer-contact {
      display: flex;
      align-items: center;
      font-size: 1rem;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-contact i {
      margin-right: 1rem;
      color: var(--gold);
      width: 20px;
      text-align: center;
    }
    
    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    
    .footer-social a {
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    
    .footer-social a:hover {
      background: var(--gold);
      color: var(--teal);
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 3rem;
      padding-top: 2rem;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      position: relative;
      z-index: 1;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
      .rooms-section {
        padding: 4rem 1rem 3rem 1rem;
      }
      
      .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .features-section {
        padding: 4rem 1rem;
      }
      
      .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
      }
    }
    
    @media (max-width: 480px) {
      .room-card {
        border-radius: 16px;
      }
      
      .room-content {
        padding: 1.5rem;
      }
      
      .hero-overlay {
        padding: 1rem;
      }
    }
.about-section {
  background: var(--warm-white);
  padding: 0rem 2rem;
  margin-top: 4rem;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-section .section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.about-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--teal);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  font-family: 'Playfair Display', serif;
}

.aboutContent {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.aboutText {
  max-width: 800px;
}

.aboutIntro {
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-family: 'Inter', sans-serif;
  position: relative;
  padding-left: 1.5rem;
}

.aboutIntro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.aboutText p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  font-family: 'Inter', sans-serif;
  text-align: justify;
}

.aboutClosing {
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 500;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
}

.aboutClosing::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 3rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  opacity: 0.3;
}

/* Video Section */
.aboutVideo {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.video-container {
  background: var(--warm-white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: sticky;
  top: 120px;
}

.video-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.video-header h3 {
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.video-header p {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--gray-100);
    aspect-ratio: 9/16;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    max-width: 400px;
}

.about-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.play-button i {
  font-size: 1.8rem;
  color: var(--warm-white);
  margin-left: 2px;
}

.video-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
}

.mute-button {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  min-width: 44px;
  min-height: 44px;
}

.mute-button:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.mute-button i {
  font-size: 1rem;
  color: var(--warm-white);
}

.video-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.video-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--gray-50);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.3s ease;
}

.video-highlight:hover {
  background: var(--teal);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.video-highlight i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 16px;
  text-align: center;
}

.video-highlight:hover i {
  color: var(--warm-white);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--warm-white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.highlight-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .aboutContent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .video-container {
    position: static;
  }
  
  .video-wrapper {
    max-width: 350px;
  }
  
  .about-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .video-highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 4rem 1rem;
  }
  
  .aboutContent {
    gap: 2.5rem;
  }
  
  .aboutIntro {
    font-size: 1.2rem;
    padding-left: 1rem;
  }
  
  .aboutText p {
    font-size: 1rem;
    text-align: left;
  }
  
  .aboutClosing {
    font-size: 1.1rem;
    padding: 1.25rem;
  }
  
  .video-container {
    padding: 1.5rem;
  }
  
  .video-wrapper {
    max-height: 350px;
    max-width: 300px;
  }
  
  .video-header h3 {
    font-size: 1.3rem;
  }
  
  .video-header p {
    font-size: 0.9rem;
  }
  
  .video-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-highlights {
    padding: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 1.25rem;
  }
  
  .highlight-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0.75rem;
  }
  
  .aboutIntro {
    font-size: 1.1rem;
    padding-left: 0.75rem;
  }
  
  .aboutIntro::before {
    width: 3px;
  }
  
  .aboutText p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .aboutClosing {
    font-size: 1rem;
    padding: 1rem;
  }
  
  .video-container {
    padding: 1.25rem;
  }
  
  .video-wrapper {
    max-height: 280px;
    max-width: 250px;
    aspect-ratio: 9/16;
  }
  
  .video-header h3 {
    font-size: 1.2rem;
  }
  
  .video-header p {
    font-size: 0.85rem;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.4rem;
  }
  
  .mute-button {
    width: 35px;
    height: 35px;
  }
  
  .mute-button i {
    font-size: 0.9rem;
  }
  
  .video-highlights {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .video-highlight {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .about-highlights {
    padding: 1.25rem;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlight-item {
    padding: 1rem;
  }
  
  .highlight-number {
    font-size: 1.8rem;
  }
  
  .highlight-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 360px) {
  .about-section {
    padding: 2.5rem 0.5rem;
  }
  
  .aboutIntro {
    font-size: 1rem;
    padding-left: 0.5rem;
  }
  
  .aboutText p {
    font-size: 0.9rem;
  }
  
  .aboutClosing {
    font-size: 0.95rem;
    padding: 0.875rem;
  }
  
  .video-container {
    padding: 1rem;
  }
  
  .video-wrapper {
    max-height: 250px;
    max-width: 220px;
  }
  
  .video-header h3 {
    font-size: 1.1rem;
  }
  
  .video-header p {
    font-size: 0.8rem;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 1.2rem;
  }
  
  .about-highlights {
    padding: 1rem;
    gap: 0.75rem;
  }
  
  .highlight-item {
    padding: 0.875rem;
  }
  
  .highlight-number {
    font-size: 1.6rem;
  }
  
  .highlight-text {
    font-size: 0.8rem;
  }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .about-section {
    padding: 3rem 1rem;
  }
  
  .aboutContent {
    gap: 2rem;
  }
  
  .video-wrapper {
    max-height: 250px;
    max-width: 200px;
  }
  
  .about-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    padding: 1rem;
  }
  
  .highlight-item {
    padding: 0.75rem;
  }
  
  .highlight-number {
    font-size: 1.5rem;
  }
  
  .highlight-text {
    font-size: 0.75rem;
  }
}

/* Animation for About Section */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aboutText p {
  animation: fadeInUp 0.6s ease-out;
}

.aboutText p:nth-child(2) { animation-delay: 0.1s; }
.aboutText p:nth-child(3) { animation-delay: 0.2s; }
.aboutText p:nth-child(4) { animation-delay: 0.3s; }
.aboutText p:nth-child(5) { animation-delay: 0.4s; }

.highlight-item {
  animation: fadeInUp 0.6s ease-out;
}

.highlight-item:nth-child(1) { animation-delay: 0.2s; }
.highlight-item:nth-child(2) { animation-delay: 0.3s; }
.highlight-item:nth-child(3) { animation-delay: 0.4s; }
.highlight-item:nth-child(4) { animation-delay: 0.5s; }

.location-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

/* Attractions Section */
.attractions-section h3,
.map-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.attractions-section h3::after,
.map-section h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f1c40f);
  border-radius: 2px;
}

.attractions-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #d4af37;
}

.attraction-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left-color: #f1c40f;
}

.attraction-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #1A6B54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.attraction-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.attraction-info .distance {
  font-size: 0.9rem;
  color: #d4af37;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.attraction-info p:last-child {
  font-family: 'Inter', sans-serif;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Map Section */
.map-section {
  display: flex;
  flex-direction: column;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

.location-details {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-address {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.location-address i {
  color: #d4af37;
  font-size: 1.2rem;
  margin-top: 3px;
}

.location-address div {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #555;
}

.location-address strong {
  color: #2c3e50;
  font-weight: 600;
}

.location-actions {
  display: flex;
  gap: 15px;
}

.directions-btn,
.call-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.directions-btn {
  background: #918382;
  color: white;
}

.directions-btn:hover {
  background: #4b4443;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.call-btn {
  background: #1a755c;
  color: white;
}

.call-btn:hover {
  background: #145c49;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .attractions-section h3,
  .map-section h3 {
    font-size: 1.6rem;
  }
  
  .attraction-item {
    padding: 20px;
    gap: 15px;
  }
  
  .attraction-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .attraction-info h4 {
    font-size: 1.2rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .location-actions {
    flex-direction: column;
  }
  
  .directions-btn,
  .call-btn {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .location-container {
    padding: 0 15px;
  }
  
  .attraction-item {
    padding: 15px;
    gap: 12px;
  }
  
  .attraction-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .attraction-info h4 {
    font-size: 1.1rem;
  }
  
  .attraction-info p:last-child {
    font-size: 0.9rem;
  }
  
  .location-details {
    padding: 20px;
  }
  
  .directions-btn,
  .call-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* Animation for scroll reveal */
.attraction-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.attraction-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delay */
.attraction-item:nth-child(1) { transition-delay: 0.1s; }
.attraction-item:nth-child(2) { transition-delay: 0.2s; }
.attraction-item:nth-child(3) { transition-delay: 0.3s; }
.attraction-item:nth-child(4) { transition-delay: 0.4s; }