* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
    overflow-x: hidden;
  }

  .animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .bubble {
    position: absolute;
    bottom: -150px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    animation: rise 20s infinite ease-in;
    opacity: 0.1;
  }

  .bubble:nth-child(1) { width: 100px; height: 100px; left: 10%; animation-delay: 0s; }
  .bubble:nth-child(2) { width: 80px; height: 80px; left: 25%; animation-delay: 2s; }
  .bubble:nth-child(3) { width: 120px; height: 120px; left: 40%; animation-delay: 4s; }
  .bubble:nth-child(4) { width: 90px; height: 90px; left: 55%; animation-delay: 1s; }
  .bubble:nth-child(5) { width: 110px; height: 110px; left: 70%; animation-delay: 3s; }

  @keyframes rise {
    0% { bottom: -150px; opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { bottom: 110%; opacity: 0; }
  }

  /* Header */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }

  .header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 10;
  }

  .logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
  }

  .nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    font-size: 0.95rem;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    transition: width 0.3s ease;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .rating {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: white;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
  }

  /* Offer Banner */
  .offer-banner {
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a6f 25%, #ff6b6b 50%, #ee5a6f 75%, #ff6b6b 100%);
    background-size: 200% 100%;
    animation: gradientShift 5s linear infinite;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5);
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
  }

  .offer-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  /* Container */
  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
  }

  /* Page Sections */
  .page-section {
    min-height: 100vh;
  }

  .page-section.hidden {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #f093fb 50%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem) !important;
  }

  /* PG Selector Cards */
  .pg-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
  }

  .pg-select-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .pg-select-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #4ecdc4;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
  }

  .pg-select-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
  }

  .pg-select-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #4ecdc4;
  }

  .price-range {
    color: #ffd700;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 1rem 0;
  }

  .btn-select {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #4ecdc4, #43e97b);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-select:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
  }

  /* Highlights */
  .highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .highlight-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
  }

  .highlight-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  /* Hero Mini */
  .hero-mini {
    padding: 2rem 0;
    text-align: center;
  }

  .hero-mini h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    color: #4ecdc4;
  }

  .btn-back {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
  }

  .btn-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
  }

  /* PG Detail Card */
  .pg-detail-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
  }

  .pg-detail-header {
    padding: 3rem 2rem;
    text-align: center;
  }

  .colive-gradient {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  }

  .gents-gradient {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  }

  .pg-detail-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .pg-detail-body {
    padding: 2.5rem;
  }

  /* Location Card */
  .location-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid #4ecdc4;
  }

  .location-icon-big {
    font-size: 3rem;
    flex-shrink: 0;
  }

  .location-card h3 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
  }

  .location-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.3rem 0;
  }

  .btn-map {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  }

  /* Referral Banner */
  .referral-banner {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
  }

  .referral-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  /* Pricing Showcase */
  .pricing-showcase {
    margin: 2rem 0;
  }

  .pricing-showcase h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .price-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
  }

  .price-card-new.popular {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  }

  .popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
  }

  .price-card-new:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: #4ecdc4;
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
  }

  .room-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .price-card-new h4 {
    color: #4ecdc4;
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .price-big {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    color: #ffd700;
    margin: 1rem 0;
  }

  .price-big span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .price-features {
    list-style: none;
    margin: 1.5rem 0;
  }

  .price-features li {
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-view-room {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
  }

  .btn-view-room:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  }

  /* Food Menu */
  .food-menu {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
  }

  .food-menu h3 {
    color: #ffd700;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .food-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .food-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
  }

  .food-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
  }

  /* Amenities Section */
  .amenities-section {
    margin: 2rem 0;
  }

  .amenities-section h3 {
    color: #4ecdc4;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .amenities-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .amenity-card {
    background: rgba(78, 205, 196, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    color: #4ecdc4;
    font-weight: 600;
    border: 2px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    text-align: center;
  }

  .amenity-card:hover {
    transform: translateX(5px);
    background: rgba(78, 205, 196, 0.2);
    border-color: #4ecdc4;
  }

  /* CTA Buttons */
  .cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .btn-cta {
    flex: 1;
    min-width: 200px;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn-cta.primary {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
  }

  .btn-cta.secondary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
  }

  .btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }

  /* Room Modal */
  .room-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
  }

  .room-modal.active {
    display: flex;
  }

  .room-modal-content {
    background: rgba(15, 12, 41, 0.98);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: modalSlideUp 0.4s ease;
    position: relative;
  }

  @keyframes modalSlideUp {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
  }

  .room-modal-body {
    margin-top: 2rem;
  }

  .room-gallery {
    margin-bottom: 2rem;
  }

  .main-room-image img {
    transition: opacity 0.3s ease;
  }

  .gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
  }

  /* Contact Section */
  .contact-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
    backdrop-filter: blur(20px);
    padding: 4rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 3rem;
    color: white;
  }

  .contact-cards-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .contact-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
  }

  .contact-card-new:hover {
    transform: translateY(-10px);
    border-color: #4ecdc4;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
  }

  .contact-card-new h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
    text-align: center;
  }

  .contact-details {
    margin-bottom: 1.5rem;
  }

  .contact-details p {
    margin: 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #4ecdc4;
  }

  .contact-details a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
  }

  .contact-details a:hover {
    text-decoration: underline;
  }

  .contact-btns {
    display: flex;
    gap: 1rem;
  }

  .contact-btns button {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .contact-btns button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 233, 123, 0.4);
  }

  /* Feedback Section */
  .feedback-section {
    background: linear-gradient(135deg, rgba(67, 233, 123, 0.1), rgba(56, 249, 215, 0.1));
    padding: 4rem 0;
    border-top: 2px solid rgba(67, 233, 123, 0.3);
  }

  .feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .feedback-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
  }

  .feedback-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #4ecdc4;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
    background: rgba(78, 205, 196, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-group select option {
    background: #1a1a1a;
    color: white;
  }

  .btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
  }

  .feedback-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feedback-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #4ecdc4;
    transition: all 0.3s ease;
  }

  .feedback-card:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
  }

  .feedback-card h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .feedback-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
  }

  /* Footer */
  footer {
    background: rgba(0, 0, 0, 0.9);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
  }

  footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }

  /* Utility Classes */
  .hidden {
    display: none !important;
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .container {
      padding: 0 1.5rem;
    }
  }

  @media (max-width: 992px) {
    .nav-links {
      gap: 1rem;
    }

    .pg-selector {
      grid-template-columns: 1fr;
      max-width: 500px;
    }

    .feedback-container {
      grid-template-columns: 1fr;
    }

    .price-cards {
      grid-template-columns: 1fr;
    }

    .amenities-grid-new {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      gap: 1rem;
    }

    .logo {
      font-size: 1.8rem;
    }

    .nav-links {
      width: 100%;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .nav-links a {
      font-size: 0.85rem;
    }

    .rating {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
    }

    .offer-text {
      font-size: 0.9rem;
      letter-spacing: 0.5px;
    }

    .highlights {
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .location-card {
      flex-direction: column;
    }

    .food-grid {
      grid-template-columns: 1fr 1fr;
    }

    .cta-buttons {
      flex-direction: column;
    }

    .btn-cta {
      min-width: 100%;
    }

    .contact-cards-new {
      grid-template-columns: 1fr;
    }

    .pg-detail-body {
      padding: 1.5rem;
    }

    .room-modal-content {
      padding: 1.5rem;
      margin: 1rem;
    }
  }

  @media (max-width: 576px) {
    .logo {
      font-size: 1.5rem;
    }

    .hero-content h1 {
      font-size: 2rem;
    }

    .hero-content p {
      font-size: 1rem;
    }

    .pg-select-icon {
      font-size: 3rem;
    }

    .pg-select-card h3 {
      font-size: 1.4rem;
    }

    .price-range {
      font-size: 1rem;
    }

    .highlights {
      grid-template-columns: 1fr;
    }

    .pg-detail-header {
      padding: 2rem 1rem;
    }

    .pg-detail-header h2 {
      font-size: 1.8rem;
    }

    .referral-banner h3 {
      font-size: 1.3rem;
    }

    .price-big {
      font-size: 2rem;
    }

    .food-grid {
      grid-template-columns: 1fr;
    }

    .amenities-grid-new {
      grid-template-columns: 1fr;
    }

    .feedback-form,
    .contact-card-new {
      padding: 1.5rem;
    }

    .section-title {
      font-size: 1.8rem;
    }

    .gallery-thumbs img {
      width: 70px !important;
      height: 60px !important;
    }
  }

  @media (max-width: 400px) {
    .container {
      padding: 0 1rem;
    }

    .btn-cta,
    .btn-submit {
      padding: 1rem;
      font-size: 0.95rem;
    }

    .price-card-new {
      padding: 1.5rem;
    }
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 10px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 10px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #764ba2, #667eea);
  }
