/* ===== Hotel Krishna Valley - Global Styles ===== */
:root {
    --white: #ffffff;
    --cream: #faf6ec;
    --gold: #c9a44c;
    --gold-light: #e6cf8b;
    --green: #14432f;
    --green-mid: #1f5e42;
    --gray: #6b7280;
    --soft-gray: #f2f3f5;
    --shadow: 0 10px 30px rgba(20, 67, 47, 0.12);
    --radius: 18px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--green);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; line-height: 1.25; }
  
  img { max-width: 100%; display: block; }
  
  a { text-decoration: none; color: inherit; }
  
  .container { width: min(1200px, 92%); margin-inline: auto; }
  
  section { padding: 80px 0; }
  
  /* ===== Sticky Header ===== */
  .header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 164, 76, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 0;
  }
  
  .brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
  .brand .logo {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--green));
    display: grid; place-items: center; color: var(--white);
    font-family: Georgia, serif; font-size: 1.2rem;
  }
  .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-text strong { font-size: 1.15rem; color: var(--green); font-family: Georgia, serif; }
  .brand-text span { font-size: 0.72rem; color: var(--gold); letter-spacing: 2px; }
  
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a {
    font-weight: 600; font-size: 0.98rem; position: relative; padding: 4px 0;
    transition: color var(--transition);
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px;
    width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
  }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  
  /* ===== Buttons ===== */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 26px; border-radius: 50px; font-weight: 700; font-size: 0.95rem;
    cursor: pointer; border: none; transition: transform var(--transition), box-shadow var(--transition);
    position: relative; overflow: hidden;
  }
  .btn::after {
    content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.25);
    transform: scale(0); border-radius: 50%; transition: transform 0.5s ease;
  }
  .btn:hover::after { transform: scale(2.5); }
  .btn:hover { transform: translateY(-3px); }
  
  .btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--green); box-shadow: 0 8px 20px rgba(201,164,76,0.4); }
  .btn-green { background: linear-gradient(135deg, var(--green), var(--green-mid)); color: var(--white); box-shadow: 0 8px 20px rgba(20,67,47,0.3); }
  .btn-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: var(--white); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
  .btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--green); }
  .btn-lg { padding: 20px 44px; font-size: 1.15rem; }
  
  .btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
  
  /* ===== Hero ===== */
  .hero { position: relative; padding: 0; }
  .hero-inner {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
    padding: 80px 0;
  }
  .hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 18px; }
  .hero-content .tagline { color: var(--gold); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; letter-spacing: 1px; }
  .hero-content p { font-size: 1.1rem; color: var(--gray); margin-bottom: 28px; max-width: 540px; }
  .hero-media { position: relative; }
  .hero-media img {
    border-radius: 24px; box-shadow: var(--shadow);
    animation: floatUp 1s ease both;
  }
  .hero-badge {
    position: absolute; bottom: 20px; left: -20px;
    background: rgba(255,255,255,0.8); backdrop-filter: blur(12px);
    padding: 16px 22px; border-radius: 16px; box-shadow: var(--shadow);
    border: 1px solid rgba(201,164,76,0.3);
  }
  .hero-badge strong { color: var(--gold); font-size: 1.6rem; }
  
  .page-hero {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    color: var(--white); text-align: center; padding: 100px 0 80px;
  }
  .page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
  .page-hero p { color: var(--gold-light); font-size: 1.15rem; }
  .breadcrumb { margin-top: 16px; font-size: 0.9rem; color: rgba(255,255,255,0.7); }
  .breadcrumb a { color: var(--gold-light); }
  
  /* ===== Section headings ===== */
  .section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
  .section-head .eyebrow { color: var(--gold); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; font-size: 0.8rem; }
  .section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 10px 0; }
  .section-head p { color: var(--gray); }
  
  /* ===== About ===== */
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
  .about-grid img { border-radius: 20px; box-shadow: var(--shadow); }
  .about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
  .about-text p { color: var(--gray); margin-bottom: 16px; }
  
  /* ===== Amenities ===== */
  .amenities { background: var(--soft-gray); }
  .grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
  .amenity-card {
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(201,164,76,0.2);
    padding: 32px 24px; border-radius: var(--radius); text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
  }
  .amenity-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
  .amenity-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
  .amenity-card h3 { font-size: 1.1rem; }
  
  /* ===== Room Cards ===== */
  .rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
  .room-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
  }
  .room-card:hover { transform: translateY(-10px); box-shadow: 0 20px 45px rgba(20,67,47,0.2); }
  .room-img { position: relative; overflow: hidden; height: 240px; }
  .room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
  .room-card:hover .room-img img { transform: scale(1.1); }
  .room-price {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green); padding: 8px 16px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }
  .room-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
  .room-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
  .room-body p { color: var(--gray); margin-bottom: 16px; flex: 1; }
  .room-facilities { list-style: none; margin-bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
  .room-facilities li { background: var(--cream); color: var(--green); font-size: 0.8rem; padding: 5px 12px; border-radius: 50px; }
  .room-actions { display: flex; flex-wrap: wrap; gap: 10px; }
  .room-actions .btn { flex: 1; padding: 11px 14px; font-size: 0.85rem; }
  
  /* ===== Gallery ===== */
  .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .gallery-grid img { border-radius: 14px; height: 220px; width: 100%; object-fit: cover; transition: transform var(--transition), filter var(--transition); box-shadow: var(--shadow); }
  .gallery-grid img:hover { transform: scale(1.04); filter: brightness(1.05); }
  
  /* ===== Why Choose / Experience ===== */
  .why { background: linear-gradient(135deg, var(--green), var(--green-mid)); color: var(--white); }
  .why .section-head h2, .why .section-head p { color: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; }
  .why-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15); padding: 30px; border-radius: var(--radius);
    transition: transform var(--transition), background var(--transition);
  }
  .why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.14); }
  .why-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
  .why-card h3 { color: var(--gold-light); margin-bottom: 8px; }
  
  /* ===== Testimonials ===== */
  .testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
  .testi-card {
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(201,164,76,0.2);
    padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow);
  }
  .testi-card .stars { color: var(--gold); margin-bottom: 12px; }
  .testi-card p { font-style: italic; color: var(--gray); margin-bottom: 18px; }
  .testi-author { display: flex; align-items: center; gap: 12px; font-weight: 700; }
  .testi-author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--green)); color: #fff; display: grid; place-items: center; }
  
  /* ===== CTA ===== */
  .cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    text-align: center; color: var(--green);
  }
  .cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 14px; }
  .cta p { font-size: 1.2rem; margin-bottom: 30px; }
  .cta .btn-group { justify-content: center; }
  
  .mega-cta {
    background: linear-gradient(135deg, var(--green), var(--green-mid));
    color: var(--white); text-align: center; padding: 120px 0;
  }
  .mega-cta h2 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 18px; }
  .mega-cta p { font-size: 1.3rem; color: var(--gold-light); margin-bottom: 40px; }
  .mega-cta .btn-group { justify-content: center; gap: 20px; }
  
  /* ===== Map ===== */
  .map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
  .map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }
  
  /* ===== Contact ===== */
  .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
  .contact-card {
    background: rgba(255,255,255,0.75); backdrop-filter: blur(10px);
    border: 1px solid rgba(201,164,76,0.2);
    padding: 30px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow);
    transition: transform var(--transition);
  }
  .contact-card:hover { transform: translateY(-6px); }
  .contact-card .icon { font-size: 2.2rem; margin-bottom: 12px; }
  .contact-card a { color: var(--gold); font-weight: 600; word-break: break-word; }
  
  /* ===== FAQ ===== */
  .faq-grid { max-width: 820px; margin-inline: auto; display: grid; gap: 16px; }
  .faq-item {
    background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
    border: 1px solid rgba(201,164,76,0.2); border-radius: var(--radius); padding: 24px 28px;
  }
  .faq-item h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--green); }
  .faq-item p { color: var(--gray); }
  
  /* ===== Footer ===== */
  .footer { background: var(--green); color: rgba(255,255,255,0.85); padding: 60px 0 24px; }
  .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
  .footer h4 { color: var(--gold-light); margin-bottom: 16px; font-size: 1.1rem; }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 10px; }
  .footer ul li a:hover { color: var(--gold); }
  .footer .socials { display: flex; gap: 12px; margin-top: 14px; }
  .footer .socials a {
    width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
    background: rgba(255,255,255,0.1); transition: background var(--transition), transform var(--transition);
  }
  .footer .socials a:hover { background: var(--gold); transform: translateY(-3px); }
  .footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 0.9rem; }
  
  /* ===== Floating Buttons ===== */
  .floating { position: fixed; right: 20px; bottom: 20px; z-index: 1500; display: flex; flex-direction: column; gap: 14px; }
  .floating a {
    width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
    font-size: 1.6rem; color: #fff; box-shadow: 0 8px 22px rgba(0,0,0,0.25);
    transition: transform var(--transition);
  }
  .floating a:hover { transform: scale(1.12); }
  .float-wa { background: linear-gradient(135deg, #25d366, #128c7e); animation: pulse 2s infinite; }
  .float-call { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
  
  /* ===== Animations ===== */
  @keyframes floatUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%,100% { box-shadow: 0 8px 22px rgba(37,211,102,0.5); } 50% { box-shadow: 0 8px 30px rgba(37,211,102,0.9); } }
  
  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .hero-inner, .about-grid { grid-template-columns: 1fr; }
    .hero-media { order: -1; }
    .nav-links { gap: 16px; font-size: 0.85rem; }
    .nav-links .nav-cta { display: none; }
    section { padding: 60px 0; }
  }
  @media (max-width: 560px) {
    .nav-links { gap: 12px; }
    .brand-text span { display: none; }
    .btn-lg { padding: 16px 30px; font-size: 1rem; }
    .floating a { width: 52px; height: 52px; font-size: 1.4rem; }
  }