:root {
      --primary: #0b3157;
      --secondary: #f4a321;
      --dark: #101820;
      --light: #ffffff;
      --gray: #f5f7fa;
      --text: #444;
      --shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      --radius: 18px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Open Sans", sans-serif;
      color: var(--text);
      background: var(--light);
      line-height: 1.7;
      overflow-x: hidden;
    }

    h1, h2, h3{
      font-family: "Montserrat", sans-serif;
      color: var(--dark);
      line-height: 1.3;
    }
	h4{ color:#fff;}

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
    }

    .section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 45px;
    }

    .section-title span {
      color: var(--secondary);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 14px;
    }

    .section-title h2 {
      font-size: 38px;
      margin-top: 8px;
    }

    .section-title p {
      max-width: 700px;
      margin: 15px auto 0;
      font-size: 16px;
    }

    .btn {
      display: inline-block;
      padding: 13px 28px;
      background: var(--secondary);
      color: var(--dark);
      border-radius: 50px;
      font-weight: 700;
      transition: 0.3s ease;
      box-shadow: 0 8px 25px rgba(244, 163, 33, 0.35);
    }

    .btn:hover {
      transform: translateY(-3px);
      background: #ffb742;
    }

    .btn-outline {
      background: transparent;
      color: var(--light);
      border: 2px solid var(--light);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: var(--light);
      color: var(--primary);
    }

    /* Top Bar */
    .topbar {
      background: var(--primary);
      color: var(--light);
      padding: 10px 0;
      font-size: 14px;
    }

    .topbar-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
    }

    .topbar i {
      color: var(--secondary);
      margin-right: 7px;
    }

    /* Navbar */
    .navbar {
      width: 100%;
      background: var(--light);
      box-shadow: 0 4px 25px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .nav-content {
      height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      flex-direction: column;
    }

    .logo strong {
      font-family: "Montserrat", sans-serif;
      font-size: 27px;
      color: var(--primary);
      letter-spacing: 0.5px;
    }

    .logo small {
      color: var(--secondary);
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-size: 12px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu a {
      color: var(--dark);
      font-weight: 700;
      font-size: 17px;
      position: relative;
      transition: 0.3s ease;
    }

    .nav-menu a::after {
      content: "";
      width: 0;
      height: 2px;
      background: var(--secondary);
      position: absolute;
      left: 0;
      bottom: -6px;
      transition: 0.3s ease;
    }

    .nav-menu a:hover {
      color: var(--primary);
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-call {
      background: var(--primary);
      color: var(--light) !important;
      padding: 11px 20px;
      border-radius: 50px;
    }

    .nav-call::after {
      display: none;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      color: var(--primary);
      cursor: pointer;
    }

    /* Hero Slideshow */
    .hero {
      position: relative;
      height: 86vh;
      min-height: 560px;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 1s ease, transform 5s ease;
      background-size: cover;
      background-position: center;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(4, 26, 49, 0.90), rgba(4, 26, 49, 0.55), rgba(4, 26, 49, 0.15));
    }

    .slide-1 {
      background-image: linear-gradient(90deg, rgba(4, 26, 49, 0.90), rgba(4, 26, 49, 0.55)), url(../images/exterior.jpg); 
    }

    .slide-2 {
      background-image: linear-gradient(90deg, rgba(4, 26, 49, 0.90), rgba(4, 26, 49, 0.55)), url("../images/guest-room.jpg");
    }

    .slide-3 {
      background-image: linear-gradient(90deg, rgba(4, 26, 49, 0.90), rgba(4, 26, 49, 0.55)), url("../images/guest-room1.jpg");
    }

    .hero-content {
      position: relative;
      z-index: 5;
      height: 100%;
      display: flex;
      align-items: center;
      color: var(--light);
    }

    .hero-text {
      max-width: 720px;
      animation: fadeUp 1s ease both;
    }

    .hero-text span {
      color: var(--secondary);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .hero-text h1 {
      color: var(--light);
      font-size: clamp(38px, 6vw, 70px);
      margin: 16px 0;
      font-weight: 800;
    }

    .hero-text p {
      font-size: 18px;
      max-width: 640px;
      margin-bottom: 28px;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .slide-controls {
      position: absolute;
      bottom: 35px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 12px;
    }

    .dot {
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: rgba(255,255,255,0.55);
      cursor: pointer;
      transition: 0.3s ease;
    }

    .dot.active {
      width: 35px;
      border-radius: 20px;
      background: var(--secondary);
    }

    /* Welcome */
    .welcome-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 45px;
      align-items: center;
    }

    .welcome-img {
      position: relative;
    }

    .image-card {
      height: 440px;
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(11,49,87,0.25), rgba(244,163,33,0.18)), url(../images/exterior.jpg);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .floating-box {
      position: absolute;
      bottom: -25px;
      right: -20px;
      background: var(--light);
      padding: 25px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      max-width: 260px;
      animation: float 3s ease-in-out infinite;
    }

    .floating-box i {
      font-size: 36px;
      color: var(--secondary);
      margin-bottom: 10px;
    }

    .welcome-content h2 {
      font-size: 38px;
      margin-bottom: 18px;
    }

    .welcome-content p {
      margin-bottom: 18px;
    }

    .check-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 13px;
      margin: 25px 0;
    }

    .check-list li {
      font-weight: 600;
    }

    .check-list i {
      color: var(--secondary);
      margin-right: 8px;
    }

    /* Amenities */
    .amenities {
      background: var(--gray);
    }

    .amenity-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .amenity-card {
      background: var(--light);
      padding: 32px 24px;
      border-radius: var(--radius);
      box-shadow: 0 8px 28px rgba(0,0,0,0.07);
      text-align: center;
      transition: 0.35s ease;
      position: relative;
      overflow: hidden;
    }

    .amenity-card::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      background: var(--secondary);
      left: 0;
      top: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: 0.35s ease;
    }

    .amenity-card:hover {
      transform: translateY(-10px);
    }

    .amenity-card:hover::before {
      transform: scaleX(1);
    }

    .amenity-card i {
      width: 70px;
      height: 70px;
      background: rgba(244,163,33,0.15);
      color: var(--secondary);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin-bottom: 20px;
    }

    .amenity-card h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    /* Rooms */
    .room-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .room-card {
      background: var(--light);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: 0.35s ease;
    }

    .room-card:hover {
      transform: translateY(-10px);
    }

    .room-img {
      height: 240px;
      background-size: cover;
      background-position: center;
    }

    .room-1 {
      background-image: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)), url("../images/guest-room1.jpg");
    }

    .room-2 {
      background-image: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)), url("../images/guest-room.jpg");
    }

    .room-3 {
      background-image: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.10)), url("../images/guest-room2.jpg");
    }

    .room-content {
      padding: 26px;
    }

    .room-content h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .room-content ul {
      margin: 18px 0;
    }

    .room-content li {
      margin-bottom: 8px;
      font-weight: 600;
    }

    .room-content i {
      color: var(--secondary);
      margin-right: 8px;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, rgba(11,49,87,0.95), rgba(7,32,58,0.95)), url("../images/cta-bg.jpg");
      background-size: cover;
      background-position: center;
      color: var(--light);
      text-align: center;
      padding: 85px 20px;
    }

    .cta h2 {
      color: var(--light);
      font-size: 42px;
      margin-bottom: 16px;
    }

    .cta p {
      max-width: 720px;
      margin: 0 auto 30px;
      font-size: 18px;
    }

    /* Attractions */
    .attraction-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .attraction-card {
      min-height: 230px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: flex-end;
      box-shadow: var(--shadow);
      background-size: cover;
      background-position: center;
      transition: 0.35s ease;
    }

    .attraction-card:hover {
      transform: translateY(-8px);
    }

    .attraction-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.80), rgba(0,0,0,0.10));
    }

    .attraction-content {
      position: relative;
      z-index: 2;
      color: var(--light);
      padding: 20px;
    }

    .attraction-content h3 {
      color: var(--light);
      font-size: 18px;
      margin-bottom: 5px;
    }

    .attraction-content p {
      font-size: 14px;
    }

    .att-1 { background-image: url("../images/hotel.jpg"); }
    .att-2 { background-image: url("../images/usc.jpg"); }
    .att-3 { background-image: url("../images/event.jpg"); }
    .att-4 { background-image: url("../images/sport.jpg"); }
    .att-5 { background-image: url("../images/shopping.jpg"); }

    /* Contact */
    .contact {
      background: var(--gray);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px;
      align-items: stretch;
    }

    .contact-card {
      background: var(--light);
      padding: 38px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .contact-card h2 {
      font-size: 34px;
      margin-bottom: 18px;
    }

    .contact-item {
      display: flex;
      gap: 15px;
      margin: 22px 0;
      align-items: flex-start;
    }

    .contact-item i {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(244,163,33,0.15);
      color: var(--secondary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
    }

    .map-box {
      border-radius: var(--radius);
      overflow: hidden;
      min-height: 420px;
      box-shadow: var(--shadow);
    }

    .map-box iframe {
      width: 100%;
      height: 100%;
      border: 0;
      min-height: 420px;
    }

    /* Footer */
    .footer {
      background: #071b31;
      color: rgba(255,255,255,0.82);
      padding-top: 70px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 35px;
    }

    .footer h3 {
      color: var(--light);
      margin-bottom: 20px;
      font-size: 22px;
    }

    .footer p,
    .footer li {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .footer a:hover {
      color: var(--secondary);
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .social-icons a {
      width: 42px;
      height: 42px;
      background: rgba(255,255,255,0.10);
      color: var(--light);
      border-radius: 50%;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      transition: 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--secondary);
      color: var(--dark);
      transform: translateY(-4px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      margin-top: 45px;
      padding: 20px 0;
      text-align: center;
      font-size: 14px;
    }

    /* Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(45px);
      transition: 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(35px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-12px);
      }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .room-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .attraction-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 850px) {
      .hamburger {
        display: block;
      }

      .nav-menu {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: var(--light);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0 28px;
        max-height: 0;
        overflow: hidden;
        transition: 0.35s ease;
        box-shadow: 0 12px 25px rgba(0,0,0,0.12);
      }

      .nav-menu.active {
        max-height: 420px;
        padding: 18px 28px;
      }

      .nav-menu li {
        width: 100%;
        padding: 12px 0;
      }

      .nav-call {
        display: inline-block;
      }

      .hero {
        height: 78vh;
        min-height: 520px;
      }

      .welcome-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .floating-box {
        right: 20px;
      }

      .section-title h2,
      .welcome-content h2,
      .cta h2 {
        font-size: 31px;
      }
    }

    @media (max-width: 600px) {
      .topbar-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .logo strong {
        font-size: 23px;
      }

      .hero-text p {
        font-size: 16px;
      }

      .amenity-grid,
      .room-grid,
      .attraction-grid,
      .footer-grid,
      .check-list {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 60px 0;
      }

      .contact-card {
        padding: 28px;
      }

      .image-card {
        height: 330px;
      }

      .floating-box {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -40px auto 0;
      }
    }
/* Driving Directions Section */
.driving-directions {
    background: #d9d9d9;
    padding:10px 20px 30px 20px;
    font-family: Arial, sans-serif;
}


.driving-directions h2 {
    font-size:30px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 500;
}

.direction-form {
    display: flex;
    gap: 25px;
    align-items: center;
}

.direction-form input {
    flex: 1;
    height: 62px;
    border: 2px solid #7c7c7c;
    border-radius: 18px;
    padding: 0 20px;
    font-size: 20px;
    outline: none;
    background: #fff;
    color: #222;
}

.direction-form input::placeholder {
    color: #555;
}

.direction-form button {
    min-width: 320px;
    height: 62px;
    border: none;
    border-radius: 6px;
    background: #6b7280;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.direction-form button:hover {
    background: #4b5563;
}

/* Responsive */
@media (max-width: 991px) {

    .direction-form {
        flex-direction: column;
    }

    .direction-form button,
    .direction-form input {
        width: 100%;
    }

    .driving-directions h2 {
        font-size: 36px;
    }
}

@media (max-width: 576px) {

    .driving-directions {
        padding: 40px 15px;
    }

    .driving-directions h2 {
        font-size: 30px;
    }

    .direction-form input,
    .direction-form button {
        height: 55px;
        font-size: 16px;
    }
}
<!-- CSS -->
#more {display: none;}
    .section-about { 
        max-width:1366px; 
        margin: 20px auto; 
        padding: 0 15px;
        font-family: "Open Sans", sans-serif;
    }
    h2 { 
        color: #333; 
        margin: 30px 0 15px; 
        border-bottom: 2px solid #eee; 
        padding-bottom: 8px; 
    }
    .content-section {
        padding: 15px 20px;
     
        border-radius: 8px;
        line-height: 1.6;
        font-size: 15.2px;
    }
    .content-section p {
        margin-bottom: 14px;
    }
.amenity { margin:0px 0; } 
    
    h2 { 
        color: #333; 
        margin: 30px 0 15px; 
        border-bottom: 2px solid #eee; 
        padding-bottom: 8px; 
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .amenity { 
        padding: 10px 12px; 
        display: flex; 
        align-items: center; 
        font-size: 15px; 
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        animation: fadeInUp 0.5s forwards;
    }
    .amenity:nth-child(1) { animation-delay: 0.1s; }
    .amenity:nth-child(2) { animation-delay: 0.2s; }
    .amenity:nth-child(3) { animation-delay: 0.3s; }
    .amenity:nth-child(4) { animation-delay: 0.4s; }
    .amenity:nth-child(5) { animation-delay: 0.5s; }
    .amenity:nth-child(6) { animation-delay: 0.6s; }
    .amenity:nth-child(7) { animation-delay: 0.7s; }
    .amenity:nth-child(8) { animation-delay: 0.8s; }

    .amenity:hover { 
        transform: translateX(10px) scale(1.03);
        background: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0,123,255,0.1);
    }
    .amenity i { 
        width: 26px; 
        color: #007bff; 
        margin-right: 12px; 
        font-size: 18px;
        transition: transform 0.3s ease;
    }
    .amenity:hover i {
        transform: scale(1.2);
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
        .amenities-grid { grid-template-columns: 1fr; }
    }
   
    h2 { 
        color: #333; 
        margin: 30px 0 15px; 
        border-bottom: 2px solid #eee; 
        padding-bottom: 8px; 
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .amenity { 
        padding: 10px 12px; 
        display: flex; 
        align-items: center; 
        font-size: 15px; 
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        animation: fadeInUp 0.5s forwards;
    }
    .amenity:nth-child(1) { animation-delay: 0.1s; }
    .amenity:nth-child(2) { animation-delay: 0.2s; }
    .amenity:nth-child(3) { animation-delay: 0.3s; }
    .amenity:nth-child(4) { animation-delay: 0.4s; }
    .amenity:nth-child(5) { animation-delay: 0.5s; }
    .amenity:nth-child(6) { animation-delay: 0.6s; }
    .amenity:nth-child(7) { animation-delay: 0.7s; }
    .amenity:nth-child(8) { animation-delay: 0.8s; }

    .amenity:hover { 
        transform: translateX(10px);
        background: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0,123,255,0.1);
    }
    .amenity i { 
        width: 26px; 
        color: #007bff; 
        margin-right: 12px; 
        font-size: 18px;
        transition: transform 0.3s ease;
    }
    .amenity:hover i { transform: scale(1.2); }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
        .amenities-grid { grid-template-columns: 1fr; }
    }
    .box-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 20px;
    }
    .box {
        background: linear-gradient(145deg, #ffffff, #f8f9ff);
        padding: 28px 20px;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        text-align: center;
        transition: all 0.4s ease;
        border: 1px solid #f0f0f0;
    }
    .box:hover {
        transform: translateY(-12px) scale(1.04);
        box-shadow: 0 15px 35px rgba(0,123,255,0.15);
        border-color: #007bff;
    }
    .box i {
        font-size: 38px;
        color: #007bff;
        margin-bottom: 16px;
        transition: all 0.4s ease;
    }
    .box:hover i {
        transform: scale(1.2) rotate(8deg);
        color: #0056b3;
    }
    .box h3 {
        margin: 10px 0;
        color: #222;
        font-size: 18px;
    }
    .box p {
        color: #666;
        font-size: 14.5px;
    }
	
    
    h2 { 
        color: #333; 
        margin: 30px 0 15px; 
        border-bottom: 2px solid #eee; 
        padding-bottom: 8px; 
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .amenity { 
        padding: 10px 12px; 
        display: flex; 
        align-items: center; 
        font-size: 15px; 
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        animation: fadeInUp 0.5s forwards;
    }
    .amenity:hover { 
        background: #f8f9fa;
    }
    
    /* Hover only on phone number */
    .amenity.phone {
        cursor: pointer;
    }
    .amenity.phone:hover { 
        transform: translateX(10px);
        background: #f0f7ff;
        box-shadow: 0 4px 12px rgba(0,123,255,0.15);
    }

    .amenity i { 
        width: 26px; 
        color: #007bff; 
        margin-right: 12px; 
        font-size: 18px;
        transition: transform 0.3s ease;
    }
    .amenity.phone:hover i { 
        transform: scale(1.2); 
    }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    h2 { 
        color: #333; 
        margin: 30px 0 15px; 
        border-bottom: 2px solid #eee; 
        padding-bottom: 8px; 
    }
    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .amenity { 
        padding: 10px 12px; 
        display: flex; 
        align-items: center; 
        font-size: 15px; 
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0;
        animation: fadeInUp 0.5s forwards;
    }
    .amenity:hover { 
        transform: translateX(10px);
        background: #f8f9fa;
    }
    .amenity i { 
        width: 26px; 
        color: #007bff; 
        margin-right: 12px; 
        font-size: 18px;
        transition: transform 0.3s ease;
    }
    .amenity:hover i { transform: scale(1.2); }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
        .amenities-grid { grid-template-columns: 1fr; }
    }
    /* FAQ Section */
.faq-section {
   padding:80px 20px 60px 20px;
    background: #f8f9fa;
    font-family: "Open Sans", sans-serif; 
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 42px;
    color: #222;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 22px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: left;
}

.faq-question:hover {
    background: #f1f5ff;
}

.faq-question i {
    color: #0d6efd;
    margin-right: 10px;
}

.faq-icon {
    margin-left: auto;
}

.faq-answer {
    display: none;
    padding: 0 25px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Active FAQ */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {

    .section-title h2 {
        font-size: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }
}
<!-- CSS -->