@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #DC8015; /* Premium Teal */
  --primary-dark: #DC8015;
  --secondary: #d97706; /* Rich Amber */
  --accent: #f43f5e; /* Rose / Coral */
  --bg-color: #f0fdfa; /* Very light teal background */
  --bg-dark: #042f2e; /* Very dark teal */
  --text-main: #111827;
  --text-muted: #4b5563;
  --card-bg: rgba(255, 255, 255, 0.85); /* Glass base */
  --border-color: rgba(13, 148, 136, 0.15);
  
  --shadow-sm: 0 2px 4px rgba(13, 148, 136, 0.05);
  --shadow-md: 0 8px 16px rgba(13, 148, 136, 0.1);
  --shadow-lg: 0 15px 30px rgba(13, 148, 136, 0.15);
  --shadow-float: 0 25px 50px rgba(13, 148, 136, 0.2);
  
  --radius: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-color);
  background-image: radial-gradient(at 0% 0%, hsla(173,100%,94%,1) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, hsla(43,100%,94%,1) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, hsla(339,100%,94%,1) 0px, transparent 50%);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: 50px; font-weight: 700; font-size: 1.05rem;
  transition: var(--transition); cursor: pointer; border: none; letter-spacing: 0.5px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white; box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(13, 148, 136, 0.4);
}
.btn-outline {
  background: rgba(255,255,255,0.9); border: 2px solid var(--primary); color: var(--primary);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: var(--primary); color: white; border-color: transparent;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e11d48);
  color: white; box-shadow: 0 8px 20px rgba(244, 63, 94, 0.3);
}
.btn-accent:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 30px rgba(244, 63, 94, 0.4); }
.btn-block { width: 100%; }

/* Navbar */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255, 255, 255, 0.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.nav-logo { font-size: 1.8rem; font-weight: 900; color: var(--primary-dark); display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.nav-logo i { background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--text-main); font-size: 1.05rem; transition: var(--transition); position: relative; padding: 5px 0; }
.nav-links a:hover { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.mobile-toggle { display: none; font-size: 1.75rem; color: var(--text-main); cursor: pointer; padding: 10px; }

/* Hero Section */
.hero {
  padding: 220px 0 160px;
  background: 
    linear-gradient(135deg, rgba(4, 47, 46, 0.8), rgba(4, 47, 46, 0.4)),
    url('../images/dolphin.jpg') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center; color: white; position: relative;
  border-bottom-left-radius: 60px; border-bottom-right-radius: 60px;
  margin-bottom: 40px;
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100px;
    background: linear-gradient(to top, var(--bg-color), transparent); border-bottom-left-radius: 60px; border-bottom-right-radius: 60px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-block; padding: 10px 24px; background: rgba(255,255,255,0.2);
  backdrop-filter: blur(12px); border-radius: 40px; font-weight: 700; font-size: 1rem;
  margin-bottom: 30px; border: 1px solid rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px;
}
.hero h1 { font-size: 4.8rem; font-weight: 900; line-height: 1.05; margin-bottom: 30px; letter-spacing: -2px; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.hero h1 span { background: linear-gradient(135deg, #fde047, var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 1.35rem; font-weight: 400; opacity: 0.95; margin-bottom: 45px; max-width: 700px; margin-left: auto; margin-right: auto; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.hero-actions { display: flex; gap: 20px; justify-content: center; }

/* Trust Bar */
.trust-bar {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); padding: 30px 40px; border: 1px solid rgba(255,255,255,1); position: relative; z-index: 10;
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.08); margin-top: -80px; border-radius: 24px; width: 85%; margin-left: auto; margin-right: auto;
}
.trust-container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 16px; font-weight: 700; color: var(--text-main); font-size: 1.2rem; }
.trust-item i { font-size: 2rem; color: var(--primary); background: rgba(13, 148, 136, 0.1); padding: 16px; border-radius: 16px; transition: var(--transition);}
.trust-item:hover i { background: var(--primary); color: white; transform: rotate(10deg); }

/* Section Basics */
.section { padding: 120px 0; }
.pt-0 { padding-top: 0; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-subtitle { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; margin-bottom: 16px; display: block; }
.section-title { font-size: 3.25rem; font-weight: 900; color: var(--text-main); letter-spacing: -1px; line-height: 1.1; }

/* Grid & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 40px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(500px, 1fr)); gap: 40px; }

.card {
  background: var(--card-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255, 255, 255, 1);
  transition: var(--transition); display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-12px); box-shadow: var(--shadow-float); border-color: rgba(13, 148, 136, 0.3); }
.card-img-wrapper { position: relative; height: 260px; overflow: hidden; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.card:hover .card-img { transform: scale(1.1); }
.card-badge { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); padding: 8px 18px; border-radius: 30px; font-weight: 800; color: var(--accent); font-size: 0.9rem; box-shadow: var(--shadow-md); z-index: 2; letter-spacing: 1px; text-transform: uppercase; }
.card-body { padding: 36px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; color: var(--text-main); letter-spacing: -0.5px;}
.card-rating { display: flex; align-items: center; gap: 5px; color: var(--secondary); font-size: 1.05rem; margin-bottom: 20px; font-weight: 600; }
.card-rating span { color: var(--text-muted); margin-left: 8px; font-weight: 500;}
.card-features { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; }
.feature { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-muted); font-weight: 600; background: rgba(13, 148, 136, 0.05); padding: 6px 14px; border-radius: 8px;}
.feature i { color: var(--primary); font-size: 1.1rem; }
.card-footer { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.price-wrap .price { font-size: 2rem; font-weight: 900; color: var(--primary-dark); line-height: 1; display: block; margin-bottom: 4px; }
.price-wrap .period { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px;}

/* Detail Page Specific */
.hotel-detail-hero {
  height: 60vh; min-height: 500px;
  background-size: cover; background-position: center;
  position: relative; display: flex; align-items: flex-end; padding-bottom: 60px;
  border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; margin-bottom: 60px;
}
.hotel-detail-hero::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4, 47, 46, 0.9) 0%, rgba(4, 47, 46, 0.2) 60%, transparent 100%);
  border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;
}
.hotel-detail-content { position: relative; z-index: 2; color: white; }
.hotel-detail-content h1 { font-size: 4rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px;}
.hotel-detail-meta { display: flex; gap: 24px; font-size: 1.2rem; font-weight: 500; opacity: 0.9;}
.hotel-detail-meta i { color: var(--secondary); }
.hotel-info-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.hotel-main-info { background: white; padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.hotel-main-info h2 { font-size: 2.2rem; font-weight: 800; margin: 40px 0 20px; color: var(--primary-dark); }
.hotel-main-info p { font-size: 1.15rem; color: #4b5563; margin-bottom: 24px; line-height: 1.8; }
.amenities-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.amenities-list li { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 600; color: var(--text-main); }
.amenities-list i { color: var(--accent); font-size: 1.4rem; width: 30px; text-align: center; }
.booking-widget { background: linear-gradient(135deg, var(--bg-dark), var(--primary-dark)); color: white; padding: 40px; border-radius: var(--radius); position: sticky; top: 120px; box-shadow: var(--shadow-lg); }
.booking-widget .price { font-size: 3rem; font-weight: 900; margin-bottom: 10px; color: #fde047; }
.booking-widget .period { opacity: 0.8; font-size: 1.1rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; display: block; }
.map-container { border-radius: var(--radius); overflow: hidden; height: 350px; margin-top: 40px; box-shadow: var(--shadow-sm); border: 4px solid white; }

/* Forms */
.form-card { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid white; }
.form-group { margin-bottom: 30px; }
.form-label { display: block; font-weight: 700; margin-bottom: 10px; color: var(--text-main); font-size: 1.05rem; }
.form-control { width: 100%; padding: 16px 20px; border: 2px solid var(--border-color); border-radius: 12px; font-family: inherit; font-size: 1.05rem; transition: var(--transition); background: rgba(255,255,255,0.5); }
.form-control:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15); }

/* Contact */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info { background: linear-gradient(135deg, var(--bg-dark), #064e3b); color: white; padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; overflow: hidden;}
.contact-info::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; opacity: 0.5; }
.contact-item { display: flex; gap: 24px; margin-bottom: 40px; position: relative; z-index: 2; }
.contact-icon { width: 64px; height: 64px; border-radius: 20px; background: rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; font-size: 1.75rem; color: #fde047; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.contact-text h4 { font-size: 1.3rem; margin-bottom: 6px; font-weight: 800; }
.contact-text p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* Global Utilities */
.whatsapp-float {
  position: fixed; bottom: 40px; right: 40px; width: 70px; height: 70px; background: linear-gradient(135deg, #25D366, #128C7E); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 36px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); z-index: 9999; transition: var(--transition); border: 2px solid white;
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-10deg); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5); }
.whatsapp-float::before {
  content: "Book Puri Stay Now!"; position: absolute; right: 90px; background: white; color: var(--text-main); padding: 12px 24px; border-radius: 30px; font-size: 1rem; font-weight: 800; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: var(--transition); white-space: nowrap; transform: translateX(20px); border: 1px solid var(--border-color);
}
.whatsapp-float:hover::before { opacity: 1; transform: translateX(0); }

/* Footer */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 100px 0 40px; margin-top: 120px; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary)); }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 80px; }
.footer-about h3 { color: white; font-size: 1.8rem; margin-bottom: 24px; font-weight: 900; letter-spacing: -0.5px; }
.footer-about p { margin-bottom: 30px; font-size: 1.05rem; line-height: 1.8; max-width: 400px; }
.footer-title { color: white; font-size: 1.3rem; font-weight: 800; margin-bottom: 30px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 20px; }
.footer-links a { transition: var(--transition); display: inline-block; font-weight: 500; font-size: 1.05rem;}
.footer-links a:hover { color: var(--accent); transform: translateX(8px); }
.footer-bottom { text-align: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 1rem; font-weight: 500; }

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .hotel-info-grid { grid-template-columns: 1fr; }
  .booking-widget { position: static; margin-top: 40px; }
}
@media (max-width: 992px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px;}
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex !important; flex-direction: column; position: absolute; top: 90px; left: 0; 
    width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 30px 0; box-shadow: var(--shadow-lg); 
    border-bottom: 4px solid var(--primary); z-index: 1000;
  }
  .nav-links a::after { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 160px 0 100px; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; }
  .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
  .trust-bar { width: 92%; padding: 24px; margin-top: -60px; }
  .trust-item { font-size: 1rem; }
  .trust-item i { font-size: 1.5rem; padding: 12px; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .d-none-mobile { display: none !important; }
  .hotel-detail-hero h1 { font-size: 2.5rem; }
  .hotel-main-info { padding: 30px; }
}

.logo{
  max-width: 84px;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}