/* ===================================
   KAVUMA JOHNMARY — Global Styles
   =================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0E092B;
  color: #F0F2F5;
  line-height: 1.6;
}

/* Custom color variables */
:root {
  --bg-dark: #0E092B;
  --bg-section: #120D30;
  --accent-lime: #D6FF00;
  --accent-lime-dark: #b8db00;
  --accent-blue: #166AEA;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
  --text-light: #F0F2F5;
  --text-muted: #B0B5C9;
  --white: #ffffff;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70px;
  height: 3px;
  background: var(--accent-lime);
  border-radius: 4px;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 700px;
  line-height: 1.7;
}

/* ===== Layout ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-lime);
  color: #0E092B;
  box-shadow: 0 8px 20px rgba(214, 255, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-lime-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(214, 255, 0, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-lime);
  color: var(--accent-lime);
}

.btn-outline:hover {
  background: var(--accent-lime);
  color: #0E092B;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: #0E092B;
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.15);
}

/* ===== Header / Nav ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.4s, padding 0.3s, backdrop-filter 0.4s;
}

header.scrolled {
  background: rgba(14, 9, 43, 0.95);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-decoration: none;
}

.logo svg {
  width: 100%;
  height: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-lime);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-actions .login-btn {
  background: var(--accent-lime);
  color: #0E092B !important;
  padding: 10px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(214, 255, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-actions .login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 255, 0, 0.4);
  background: white;
  color: #0E092B !important;
}

.nav-actions .login-btn i {
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg iframe,
.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 9, 43, 0.88);
  z-index: 2;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
  gap: 2rem;
  width: 100%;
  padding-top: 80px;
}

.hero-content {
  max-width: 750px;
  width: 100%;
}

.hero-content .pre-heading {
  text-transform: uppercase;
  letter-spacing: 0.6em;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-content h1 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
  font-size: clamp(3.5rem, 9vw, 7rem);
  margin-bottom: 1.5rem;
}

.hero-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.hero-socials a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.hero-socials a:hover {
  color: #0E092B;
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  transform: translateY(-3px);
}

.hero .btn-primary {
  border-radius: 4px;
  font-size: 0.9rem;
  padding: 14px 32px;
  background: var(--accent-lime);
  color: black;
  font-weight: 700;
  box-shadow: none;
  letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
  box-shadow: 0 8px 20px rgba(214, 255, 0, 0.4);
  transform: translateY(-2px);
}

/* ===== Page Hero (for inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: #0E092B;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214,255,0,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

.page-hero .section-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .breadcrumb {
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent-lime);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ===== About Card (overlap on home) ===== */
.about-overlap {
  position: relative;
  z-index: 10;
  margin-top: -120px;
  padding-top: 0;
  border: none;
}

.about-card {
  background: white;
  color: #0E092B;
  padding: 4rem;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.about-card h2 {
  font-family: 'Playfair Display', serif;
  color: #0E092B;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.about-card h2::after {
  display: none;
}

.about-card .section-subtitle {
  color: #666;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* ===== Cards (blog, testimonials, services) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* ===== Impact Stats ===== */
.impact-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.impact-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.impact-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(214, 255, 0, 0.2);
}

.impact-stat i {
  font-size: 1.8rem;
  color: var(--accent-lime);
  margin-bottom: 1.5rem;
  opacity: 0.8;
  display: block;
}

.impact-stat .number {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  font-family: 'Inter', sans-serif;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.impact-stat .label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* Responsive stats */
@media (max-width: 992px) {
  .impact-bar { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
  .impact-bar { grid-template-columns: 1fr; }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s, border-color 0.3s;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
  border-color: var(--accent-lime);
}

.card.card-light {
  background: white;
  border: 1px solid rgba(14, 9, 43, 0.16);
  color: #0E092B;
}

.card.card-light .card-title {
  color: #0E092B;
}

.card.card-light .card-text {
  color: #555;
}

.card.card-light:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 30px 60px -12px rgba(14, 9, 43, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}


.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(214,255,0,0.1);
  color: var(--accent-lime);
}

.card-light .card-icon {
  background: rgba(14,9,43,0.06);
  color: #0E092B;
}

.card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-lime);
  margin-bottom: 1rem;
}

.card-light .card-tag {
  color: var(--accent-blue);
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-light .card-text {
  color: #555;
}

.read-more {
  color: var(--accent-lime);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

.card-light .read-more {
  color: var(--accent-blue);
}

/* ===== Service / Booking ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.service-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-lime);
  margin: 1rem 0;
  font-family: 'Inter', sans-serif;
}

/* Calendar widget */
.calendar-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.calendar-header button {
  background: none;
  border: none;
  color: var(--accent-lime);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.calendar-days .day-header {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 0;
  letter-spacing: 1px;
}

.calendar-days .day {
  padding: 10px 0;
  border-radius: 10px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-light);
}

.calendar-days .day:hover {
  background: rgba(214,255,0,0.15);
  color: var(--accent-lime);
}

.calendar-days .day.today {
  background: var(--accent-lime);
  color: #0E092B;
  font-weight: 700;
}

.calendar-days .day.available {
  background: rgba(214,255,0,0.08);
  border: 1px solid rgba(214,255,0,0.2);
}

.calendar-days .day.empty {
  visibility: hidden;
}

.calendar-days .day.past {
  color: rgba(255,255,255,0.2);
  cursor: default;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.5rem;
}

.testimonial-card i.fa-quote-left {
  font-size: 2rem;
  color: var(--accent-lime);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin: 1rem 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.testimonial-name {
  font-weight: 700;
  margin-top: 1.5rem;
  color: var(--text-light);
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Featured Logos ===== */
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  align-items: center;
  opacity: 0.6;
}

.featured-logos span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Subscribe ===== */
.subscribe-area {
  background: #120D30;
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  border: 1px solid var(--card-border);
}

.subscribe-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.subscribe-form input {
  padding: 16px 24px;
  border-radius: 60px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.05);
  color: white;
  width: 320px;
  font-size: 1rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.subscribe-form input:focus {
  border-color: var(--accent-lime);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
}

.contact-info-item .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(214,255,0,0.1);
  color: var(--accent-lime);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-lime);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* ===== Social Icons ===== */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  color: white;
  background: rgba(255,255,255,0.08);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-lime);
  color: #0E092B;
  transform: translateY(-2px);
}

/* ===== Footer ===== */
footer {
  background: #080520;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
  color: var(--accent-lime);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent-lime);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Chat Widget ===== */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--accent-lime);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(214,255,0,0.25);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s;
  text-decoration: none;
}

.chat-widget:hover {
  transform: scale(1.08);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1), transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== eBook ribbon ===== */
.ebook-ribbon {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--accent-lime);
  color: #000;
  padding: 6px 40px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== Light Section ===== */
.section-light {
  background: #f7f9fc;
  color: #0E092B;
}

.section-light h2 {
  color: #0E092B;
}

.section-light h2::after {
  background: var(--accent-blue);
}

.section-light .section-subtitle {
  color: #666;
}

/* ===== Split Layout ===== */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: none !important;
}

/* ===== Booking Modal Lightbox ===== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: #0E092B;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.booking-modal-close:hover {
  color: white;
  background: rgba(255,255,255,0.1);
}

.booking-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.booking-modal-left {
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.booking-modal-right {
  padding: 2.5rem;
}

.booking-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.booking-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Modal Calendar */
.modal-calendar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.modal-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-calendar-header h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.modal-calendar-header button {
  background: none;
  border: none;
  color: var(--accent-lime);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}

.modal-calendar-header button:hover {
  background: rgba(214,255,0,0.1);
}

.modal-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}

.mcal-header {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  letter-spacing: 1px;
}

.mcal-day {
  padding: 8px 0;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: default;
  transition: all 0.2s;
  color: rgba(255,255,255,0.4);
}

.mcal-empty {
  visibility: hidden;
}

.mcal-today {
  background: var(--accent-lime) !important;
  color: #0E092B !important;
  font-weight: 700;
}

.mcal-available {
  background: rgba(214,255,0,0.06);
  border: 1px solid rgba(214,255,0,0.15);
  color: var(--text-light) !important;
  cursor: pointer;
}

.mcal-available:hover {
  background: rgba(214,255,0,0.15);
  border-color: var(--accent-lime);
}

.mcal-selected {
  background: var(--accent-lime) !important;
  color: #0E092B !important;
  font-weight: 700 !important;
  border-color: var(--accent-lime) !important;
}

.mcal-past {
  color: rgba(255,255,255,0.15) !important;
}

.modal-calendar-legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  justify-content: center;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}

.legend-today { background: var(--accent-lime); }
.legend-available { background: rgba(214,255,0,0.1); border: 1px solid rgba(214,255,0,0.3); }
.legend-selected { background: var(--accent-lime); }

.selected-date-display {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  padding: 12px 16px;
  background: rgba(214,255,0,0.08);
  border: 1px solid rgba(214,255,0,0.2);
  border-radius: 12px;
  color: var(--accent-lime);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Modal Form */
.modal-booking-form input,
.modal-booking-form select,
.modal-booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.modal-booking-form input:focus,
.modal-booking-form select:focus,
.modal-booking-form textarea:focus {
  border-color: var(--accent-lime);
}

.modal-booking-form select option {
  background: #0E092B;
}

.modal-booking-form textarea {
  min-height: 80px;
  resize: vertical;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
}

.modal-booking-msg {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 768px) {
  .booking-modal-grid {
    grid-template-columns: 1fr;
  }

  .booking-modal-left {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
  }

  .booking-modal-right {
    padding: 2rem 1.5rem;
  }

  .booking-modal {
    max-height: 95vh;
    border-radius: 16px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(14, 9, 43, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--card-border);
    transform: none; /* remove centering transform on mobile */
  }

  .main-nav.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.2rem;
  }

  .menu-toggle {
    display: block;
  }

  .about-card {
    padding: 2rem;
  }

  .about-card .about-inner {
    grid-template-columns: 1fr !important;
  }

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

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

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .subscribe-form input {
    width: 100%;
  }

  .subscribe-area {
    padding: 2rem;
    border-radius: 16px;
  }

  .calendar-widget {
    padding: 1.5rem;
  }
}
/* ===== PROFESSIONAL ANIMATIONS ===== */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Staggered delay for card grids */
.card-grid > * {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Fade-in for hero on load */
.hero-content {
  animation: heroFadeIn 1s ease-out;
}

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

/* Enhanced Button Transitions */
.btn {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* ===== BLOG CARDS ===== */
.blog-article {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), 
              box-shadow 0.35s ease, 
              border-color 0.35s ease;
  cursor: pointer;
}

.blog-article:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.5);
  border-color: rgba(214,255,0,0.3);
}

.blog-article-image {
  height: 200px;
  background: #1a1145;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(214,255,0,0.15);
  transition: color 0.3s ease;
}

.blog-article:hover .blog-article-image {
  color: rgba(214,255,0,0.3);
}

.blog-article-content {
  padding: 2.2rem;
}

.blog-article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: var(--accent-lime);
}

.blog-article-meta .date {
  color: var(--text-muted);
}

.read-more {
  color: var(--accent-lime);
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  transition: gap 0.3s ease;
}

.blog-article:hover .read-more {
  gap: 12px;
}
