/* === CORE RESET & TYPOGRAPHY === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1a3a5f;
  --accent: #d32f2f;
  --secondary: #1976d2;
  --light: #f9fbfd;
  --dark: #212529;
  --border: #e0e6ed;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
}
body {
  font-family: 'Open Sans', 'Segoe UI', sans-serif;
  line-height: 1.7;
  background-color: var(--light);
  color: var(--dark);
  position: relative;
  padding-top: 120px;
}
a {
  text-decoration: none;
  color: inherit;
}

/* === FLOATING BANNER === */
.floating-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.floating-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 100px;
  object-fit: cover;
}

/* === NAVBAR WITH LOGO === */
.main-nav {
  position: fixed;
  top: 100px;
  width: 100%;
  background: white;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 999;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  height: 40px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
}

/* === MAIN HEADER === */
.main-header {
  text-align: center;
  padding: 40px 20px 30px;
  background: white;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.main-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.main-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* === CONTAINER === */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* === SERVICES SECTION === */
.services-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 35px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(26, 58, 95, 0.15);
}
.service-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.service-content {
  padding: 20px;
  text-align: center;
}
.service-content h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.book-now-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}
.book-now-btn:hover {
  background: #b71c1c;
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(211, 47, 47, 0.4);
}

/* === VIEW STORE SECTION === */
.view-store-section {
  text-align: center;
  margin: 50px 0;
}
.view-store-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
}
.store-preview {
  display: inline-block;
  position: relative;
}
.store-preview img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.view-store-btn {
  display: block;
  width: 220px;
  margin: 20px auto 0;
  padding: 14px;
  background: var(--secondary);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background 0.3s;
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}
.view-store-btn:hover {
  background: #1565c0;
  transform: scale(1.03);
}

/* === CONTACT SECTION === */
.contact-section {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.contact-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 15px;
}
.contact-section p {
  text-align: center;
  margin-bottom: 25px;
  color: #555;
}
.contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0f7ff;
  padding: 12px 20px;
  border-radius: 8px;
  min-width: 220px;
  text-align: left;
}
.contact-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.contact-item a {
  color: #25D366;
  font-weight: 600;
}

/* === CATEGORY PAGES === */
.page-header {
  text-align: center;
  margin: 40px 0 30px;
}
.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.subtitle {
  color: #555;
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto;
}
.content-section {
  background: white;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 35px;
  line-height: 1.7;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.gallery-title {
  text-align: center;
  margin: 30px 0 20px;
}
.gallery-title h2 {
  color: var(--primary);
  font-size: 1.7rem;
}
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.image-gallery img:hover {
  transform: scale(1.04);
}
.final-cta {
  text-align: center;
  margin: 30px 0;
}
.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* === FLOATING BUTTONS === */
.whatsapp-float,
.facebook-float {
  position: fixed;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 1001;
  transition: transform 0.3s;
}
.whatsapp-float {
  bottom: 110px;
  right: 25px;
  background: #25D366;
  color: white;
}
.facebook-float {
  bottom: 30px;
  right: 25px;
  background: #1877F2;
  color: white;
}
.whatsapp-float:hover,
.facebook-float:hover {
  transform: scale(1.15);
}

/* Floating Book Now (category pages) */
.book-float {
  position: fixed;
  bottom: 190px;
  right: 25px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(211, 47, 47, 0.4);
  z-index: 1001;
  transition: transform 0.3s;
}
.book-float:hover {
  transform: scale(1.08);
}

/* === FOOTER === */
footer {
  background: var(--dark);
  color: white;
  padding: 25px;
  margin-top: 50px;
}
.footer-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.footer-content p {
  margin: 6px 0;
  font-size: 0.95rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }
  .contact-item {
    min-width: 100%;
    justify-content: center;
    text-align: center;
  }
  .main-header h1 {
    font-size: 1.8rem;
  }
  .floating-banner img {
    max-height: 80px;
  }
  .main-nav {
    top: 80px;
  }
}
/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* NAVBAR: FIXED AT TOP */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0D2A1F; /* Dark green */
  z-index: 1000;
  padding: 12px 0;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.nav-logo {
  height: 40px;
  border-radius: 4px;
}
.nav-logo-text {
  color: white;
  font-size: 1.3rem;
  margin-left: 12px;
  font-weight: 700;
}

/* HERO BANNER (below navbar) */
.hero-banner {
  margin-top: 70px; /* height of navbar + padding */
  width: 100%;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* BODY PADDING TO AVOID CONTENT UNDER NAVBAR */
body {
  padding-top: 0; /* not needed since banner is below nav */
  font-family: 'Open Sans', sans-serif;
  background: #f9f9f9;
}

/* SERVICES */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}
.services-section {
  margin-bottom: 50px;
}
.services-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #0D2A1F;
}
.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card h3 {
  padding: 16px;
  color: #0D2A1F;
}
.service-card p {
  padding: 0 16px 16px;
  color: #555;
}
.service-buttons {
  padding: 0 16px 20px;
  display: flex;
  gap: 12px;
}
.preview-btn,
.book-now-btn,
.view-store-btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.preview-btn {
  background: #0D2A1F;
  color: white;
}
.book-now-btn,
.view-store-btn {
  background: #d32f2f;
  color: white;
}

/* Floating Buttons */
.whatsapp-float {
  position: fixed;
  bottom: 110px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
}
.facebook-float {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #1877F2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 25px;
  background: #222;
  color: white;
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-buttons { flex-direction: column; }
}
/* === CONTACT & BOOKING SECTION === */
.contact-booking-section {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  margin: 40px 0;
}
.contact-booking-section h2 {
  color: #0D2A1F;
  text-align: center;
  margin-bottom: 12px;
}
.contact-booking-section p {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0f9f4;
  padding: 18px;
  border-radius: 10px;
  min-width: 240px;
}
.contact-icon {
  background: #0D2A1F;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.contact-info h3 {
  color: #0D2A1F;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.contact-info p {
  margin: 4px 0;
  color: #333;
}
.contact-info a {
  color: #25D366;
  font-weight: 600;
  text-decoration: underline;
}
.whatsapp-note {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
}

.booking-cta {
  text-align: center;
  margin-top: 15px;
}

/* === BACK TO HOME BUTTON === */
.back-home-section {
  text-align: center;
  margin: 40px 0 20px;
}
.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0D2A1F;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(13, 42, 31, 0.3);
}
.back-home-btn:hover {
  background: #0a2017;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 42, 31, 0.4);
}

/* Ensure main-nav is fixed at top */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0D2A1F;
  z-index: 1000;
}
.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 60px;
}
.nav-logo {
  height: 40px;
  border-radius: 4px;
}
.nav-logo-text {
  color: white;
  font-size: 1.3rem;
  margin-left: 12px;
  font-weight: 700;
}
body {
  padding-top: 60px;
}
/* === CONTACT SECTION STYLING === */
.contact-section {
  background: white;
  padding: 30px;
  border-radius: 14px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 6px 15px rgba(0,0,0,0.06);
  margin: 50px 0;
}
.contact-section h2 {
  text-align: center;
  color: #0D2A1F;
  margin-bottom: 12px;
}
.contact-intro {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 240px;
}
.contact-icon {
  background: #0D2A1F;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}
.contact-details h3 {
  color: #0D2A1F;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.contact-details p {
  margin: 4px 0;
  color: #333;
}
.contact-details a {
  color: #25D366;
  font-weight: 600;
  text-decoration: underline;
}
.contact-note {
  font-size: 0.85rem;
  color: #555;
  font-style: italic;
}

.contact-cta {
  text-align: center;
}
/* === ANIMATED BANNER (ADD ONLY THIS) === */
.hero-banner {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}
.hero-banner h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  animation: fadeInDown 0.8s ease-out;
}
.hero-banner p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  animation: fadeInUp 1s ease-out;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .hero-banner { height: 50vh; min-height: 400px; }
  .hero-banner h1 { font-size: 2.2rem; }
  .hero-banner p { font-size: 1.1rem; }
}
/* === VIEW STORE SECTION === */
.view-store-section {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.catalog-item {
  text-align: center;
  max-width: 300px;
}
.catalog-item img {
  width: 100%;
  max-width: 280px; /* Medium size */
  height: auto;
  border-radius: 10px;
  border: 2px solid #e0e6ed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
  margin: 0 auto 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.catalog-item img:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.view-store-btn {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  padding: 14px;
  background: #d32f2f;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}
.view-store-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(211, 47, 47, 0.4);
}
.view-store-section {
  text-align: center;
  margin: 60px 0;
}

.catalog-wrapper {
  display: inline-block;
  text-align: center;
}

.catalog-image {
  width: 100%;
  max-width: 320px;   /* medium size */
  height: auto;
  border-radius: 10px;
  border: 2px solid #e0e6ed;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.catalog-button {
  display: inline-block;
  padding: 12px 30px;
  background: #d32f2f;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.catalog-button:hover {
  background: #b71c1c;
  transform: translateY(-3px);
}
