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

/* Style.css */



:root {
  --primary: #0a2540; /* Deep Ocean Blue */
  --accent: #d4af37; /* Gold Accent */
  --bg-light: #f8f9fa;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --white: #ffffff;
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  --radius: 12px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.section-padding { padding: 5rem 0; }
.text-center { text-align: center; }
.section-title { 
  font-size: 2.5rem; 
  margin-bottom: 2rem; 
  color: var(--primary);
}

.section-title.white {
  color: var(--white);
}


/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background-color: #051626;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}
.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Language Switcher - Modern Select */
.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 15px;
  position: relative;
}
.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 32px 7px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 140px;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}
.lang-select:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.lang-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.25);
}
.lang-select option {
  background: var(--primary);
  color: var(--white);
  padding: 8px;
}
.language-switcher::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  font-size: 0.75rem;
}

.btn-accent:hover {
  background-color: #b5952f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.hero-content {
  width: 95%;
  max-width: 1200px;
  z-index: 2;
}
.hero-content h1 {
  font-size: 5rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
  animation: fadeInDown 1s ease;
  line-height: 1.1;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.btn-hero {
  padding: 16px 48px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section Header (Navbar placeholder) */
.draft-header {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 82px;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent !important;
  box-shadow: none;
}
.draft-header.scrolled,
.draft-header.header-solid {
  background-color: var(--primary) !important;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
}
.draft-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  min-width: 0;
}

.draft-logo img {
  height: 50px !important;
  max-height: 50px !important;
  max-width: 90px !important;
  object-fit: contain;
  width: auto !important;
}

#main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: var(--transition);
}

#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0;
  transition: var(--transition);
  white-space: nowrap;
}

#main-nav a i {
  display: none !important;
}

#main-nav a:hover {
  color: var(--accent);
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.burger-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Destinations */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}
.dest-card:hover img {
  transform: scale(1.1);
}
.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  z-index: 2;
  color: var(--white);
}
.dest-info h3 { 
  font-size: 1.85rem; 
  margin-bottom: 0.6rem; 
  color: var(--white);
  line-height: 1.2;
}
.dest-info p {
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* Swiper Custom Styles */
.custom-nav {
    color: var(--accent) !important;
    background: rgba(10, 37, 64, 0.5);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.custom-nav:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}
.custom-nav:hover {
    background: var(--accent);
    color: var(--primary) !important;
}
.custom-dots .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}
.custom-dots .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Detail Button Overlay */
.btn-detail-overlay {
    margin-top: 1rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}
.dest-card:hover .btn-detail-overlay {
    transform: scale(1.05);
}
.btn-sm {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

/* About */
.about-section {
  background-color: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  display: block;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pkg-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.pkg-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.05);
}
.pkg-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.pkg-content {
  padding: 2rem;
}
.pkg-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pkg-price {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.pkg-meta {
  display: flex;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}

/* Features */
.features-section {
  background-color: var(--white);
  border-top: 1px solid #eee;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}
.feature-item {
  padding: 2rem;
}
.feat-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}
.feat-icon svg { width: 40px; height: 40px; }
.feature-item h3 { margin-bottom: 1rem; font-size: 1.2rem; }
.feature-item p { color: var(--text-muted); font-size: 0.95rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.testi-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 { color: var(--primary); margin: 0; font-size: 1.1rem; }
.author-info span { color: var(--text-muted); font-size: 0.85rem; }

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.7));
  z-index: 1;
}

.parallax-bg .container {
  position: relative;
  z-index: 2;
}

.testi-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.testi-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testi-glass .testi-text {
  color: rgba(255, 255, 255, 0.9) !important;
}

.testi-glass .author-info h4 {
  color: var(--white) !important;
}

.testi-glass .author-info span {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Blog */
.blog-section {
  background-color: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blog-content {
  padding: 1.5rem;
  border: 1px solid #eee;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.blog-date { color: var(--accent); font-size: 0.85rem; margin-bottom: 0.5rem; display: block; }
.blog-content h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.blog-readmore { color: var(--primary); text-decoration: none; font-weight: 500; font-size: 0.9rem;}
.blog-readmore:hover { color: var(--accent); }

.blog-single {
  background: var(--white);
  padding: 2rem 0 5rem;
}

.blog-single-hero {
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  height: 460px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.blog-single-hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.blog-single-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.blog-single-main h1 {
  color: var(--primary);
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.blog-single-meta {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.blog-single-excerpt {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.blog-article-section {
  margin-bottom: 2.5rem;
}

.blog-article-section h2 {
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.blog-article-section p {
  color: var(--text-dark);
  font-size: 1.05rem;
  line-height: 1.9;
}

.blog-single-sidebar {
  display: grid;
  gap: 1.5rem;
  position: sticky;
  top: 110px;
}

.blog-sidebar-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}

.blog-sidebar-box h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.blog-sidebar-box p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.blog-keywords span {
  background: rgba(212, 175, 55, 0.13);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
}

.blog-recommendations {
  border-top: 1px solid #eee;
  margin-top: 4rem;
  padding-top: 4rem;
  text-align: center;
}

/* Skeleton Loading */
.skeleton-page {
  background: var(--bg-light);
  min-height: 70vh;
  padding: 120px 0 5rem;
}

.skeleton-home {
  padding-top: 0;
}

.skeleton-hero {
  height: 520px;
  margin-bottom: 4rem;
  width: 100%;
}

.skeleton-detail-hero {
  border-radius: 20px;
  height: 360px;
  margin-bottom: 3rem;
  width: 100%;
}

.skeleton-layout {
  display: grid;
  gap: 4rem;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin-bottom: 4rem;
}

.skeleton-line,
.skeleton-block,
.skeleton-card,
.skeleton-sidebar,
.skeleton-hero,
.skeleton-detail-hero {
  background: #edf1f5;
  overflow: hidden;
  position: relative;
}

.skeleton-line {
  border-radius: 999px;
  height: 18px;
  margin-bottom: 1rem;
}

.skeleton-title {
  height: 42px;
  max-width: 560px;
}

.skeleton-wide {
  max-width: 100%;
}

.skeleton-mid {
  max-width: 62%;
}

.skeleton-block {
  border-radius: var(--radius);
  height: 180px;
  margin-top: 2rem;
}

.skeleton-sidebar {
  border-radius: var(--radius);
  height: 260px;
}

.skeleton-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.skeleton-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.skeleton-card {
  border-radius: var(--radius);
  height: 280px;
}

.skeleton-shimmer::after {
  animation: skeleton-shimmer 1.25s infinite;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.75), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

@keyframes skeleton-shimmer {
  100% { transform: translateX(100%); }
}

/* Footer */
footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-about h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.footer-links h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { color: inherit; text-decoration: none; transition: var(--transition);}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Jetski Section */
.jetski-item:hover {
    background: var(--white) !important;
    border-color: var(--accent) !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.btn-outline-pkg {
    border: 1px solid var(--primary);
    color: var(--primary);
    display: block;
    text-align: center;
    margin-top: 1rem;
}

.btn-outline-pkg:hover {
    background: var(--primary);
    color: var(--white);
}

.pkg-features {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.pkg-features li {
    margin-bottom: 0.5rem;
}

/* WhatsApp Widget Styles */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.wa-pulse-btn {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.wa-pulse-btn:hover {
    transform: scale(1.1);
}

.wa-pulse-btn .pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.wa-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    transform-origin: bottom right;
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.5) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.wa-chat-box.active {
    display: flex;
}

.wa-chat-header {
    background-color: #075e54;
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.wa-chat-avatar {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    padding: 4px;
}

.wa-chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wa-chat-info {
    display: flex;
    flex-direction: column;
}

.wa-chat-name {
    font-weight: 600;
    font-family: var(--font-heading);
}

.wa-chat-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.wa-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
}

.wa-close-btn:hover { opacity: 1; }

.wa-chat-body {
    padding: 1.5rem;
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    min-height: 100px;
}

.wa-chat-body p {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 0.9rem;
    max-width: 85%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.wa-chat-footer {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    align-items: end;
    background: #f0f0f0;
}

.wa-chat-footer textarea {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 10px 15px;
    resize: none;
    height: 45px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}

.wa-send-btn {
    background-color: #25d366;
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.wa-send-btn:hover { background-color: #128c7e; transform: scale(1.05); }

/* Responsive Adjustments */
@media (max-width: 480px) {
    .wa-chat-box {
        width: calc(100vw - 60px);
        right: -10px;
    }
}
/* Main Responsive */
@media (max-width: 900px) {
  .about-grid, .features-grid, .testimonials-grid, .blog-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-single-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .blog-single-sidebar {
    position: static;
  }

  .blog-single-main h1 {
    font-size: 2rem;
  }

  .blog-single-hero {
    height: 320px;
  }

  .skeleton-layout,
  .skeleton-grid-3 {
    grid-template-columns: 1fr;
  }

  .skeleton-detail-hero {
    height: 260px;
  }

  .skeleton-hero {
    height: 420px;
  }

  .about-text {
    text-align: center;
  }

  .draft-header {
    min-height: 74px;
    padding: 1.25rem 1.5rem;
    background-color: var(--primary) !important;
  }

  .draft-header.scrolled,
  .draft-header.header-solid {
    padding: 0.8rem 1.5rem;
  }

  .hero-content h1 { font-size: 3rem; }

  /* Mobile Nav */
  .burger-menu { display: flex; }

  .about-image { display: none; }

  #main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 6rem 2rem 3rem;
    z-index: 999;
    overflow-y: auto;
    text-align: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  #main-nav.active {
    right: 0;
  }

  #main-nav a {
    font-size: 1.25rem !important;
    margin-bottom: 1.5rem;
    width: auto;
    display: inline-flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(20px);
  }

  #main-nav.active a {
    animation: slideInMenu 0.5s forwards;
  }

  /* Staggered animation */
  #main-nav.active a:nth-child(1) { animation-delay: 0.1s; }
  #main-nav.active a:nth-child(2) { animation-delay: 0.15s; }
  #main-nav.active a:nth-child(3) { animation-delay: 0.2s; }
  #main-nav.active a:nth-child(4) { animation-delay: 0.25s; }
  #main-nav.active a:nth-child(5) { animation-delay: 0.3s; }
  #main-nav.active a:nth-child(6) { animation-delay: 0.35s; }
  #main-nav.active a:nth-child(7) { animation-delay: 0.4s; }

  #main-nav a i {
    display: none !important;
  }

  @keyframes slideInMenu {
    to { opacity: 1; transform: translateY(0); }
  }

  /* Hero adjustments for performance */
  .hero {
    background-attachment: scroll; /* Disable fixed background on mobile for better performance */
  }

  .hero-content h1 { 
    font-size: 2.5rem; 
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .section-padding { padding: 2.5rem 0; }
  .section-title { margin-bottom: 1.5rem; }

  .about-text h2 {
    font-size: 1.8rem;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }

  /* Package Detail Specific */
  .package-header h1 {
    font-size: 1.5rem !important;
  }
  .package-header h2 {
    font-size: 1.2rem !important;
  }
  .package-program h3, 
  .package-pricing h3, 
  .suggested-items h3 {
    font-size: 1.3rem !important;
  }
}

/* Specific adjustments for very small screens */
@media (max-width: 400px) {
    .container { padding: 0 1.25rem; }

    #main-nav {
        padding: 5rem 1.5rem 2rem;
    }
    
    #main-nav a {
        font-size: 1.1rem !important;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Hide Utility */
.wa-widget-container.hide-on-menu {
    display: none !important;
}
/* Package Detail Page Styles */
.price-tab:hover {
    background: #f8f9fa !important;
}

.price-tab.active {
    color: #4A69BD !important;
}

@media (max-width: 768px) {
    .package-features {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .program-gallery img {
        width: 48% !important;
        margin-bottom: 2%;
    }
    
    .price-tabs {
        flex-direction: column;
    }
    
    .price-tab {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }
    
    .price-tab.active {
        border-top: none !important;
        border-left: 3px solid #4A69BD;
    }
}
