/* 
================================================================================
  MYANMAR SME WEBSITE TEMPLATE - CUSTOMIZABLE STYLESHEET
  Designed as a reusable, responsive base for small and medium businesses.
  
  HOW TO RE-THEME FOR A NEW CLIENT:
  Simply update the CSS Custom Properties (:root) below. No other code changes 
  are required to change the look, feel, color palette, or typography!
================================================================================
*/

/* --- THEME CUSTOM PROPERTIES (Edit these to re-theme) --- */
:root {
  /* Font Families */
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Noto Sans Myanmar", "Myanmar3", "Pyidaungsu";
  --font-heading: 'Outfit', 'Space Grotesk', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Noto Sans Myanmar", "Myanmar3";
  --font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, monospace;

  /* Color Palette - Light Mode Default (Elegant Amber/Charcoal Slate) */
  --primary-color: #d4a373;       /* Premium Warm Gold/Amber (Myanmar Teak vibe) */
  --primary-hover: #c69363;       /* Slightly darker tone for hover states */
  --primary-rgb: 212, 163, 115;   /* RGB version for translucent overlays */
  
  --secondary-color: #1f2937;     /* Deep Slate/Charcoal for high contrast */
  --secondary-hover: #111827;     
  --secondary-rgb: 31, 41, 55;

  --accent-color: #3b82f6;        /* UI accents like input focus, links */
  --success-color: #10b981;       /* Validation success state */
  --error-color: #ef4444;         /* Validation error state */

  /* Neutral Backgrounds & Surfaces */
  --bg-primary: #ffffff;          /* Main background */
  --bg-secondary: #f9fafb;        /* Off-white background for section shading */
  --bg-surface: #ffffff;          /* Card, nav, and modal backgrounds */
  --bg-surface-border: #e5e7eb;   /* Light gray borders */

  /* Text Colors */
  --text-primary: #111827;        /* Main dark text */
  --text-secondary: #4b5563;      /* Muted secondary body text */
  --text-muted: #9ca3af;          /* Disabled/placeholder text */
  --text-light: #ffffff;          /* Text on dark backgrounds */

  /* Shadows, Corners, & Spacings */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 20px rgba(212, 163, 115, 0.2);

  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s ease;

  --section-padding: 80px 24px;
}

/* --- DARK MODE OVERRIDES (Triggered via class="dark" on body) --- */
body.dark {
  --bg-primary: #0f172a;          /* Deep Slate Dark */
  --bg-secondary: #0b0f19;        /* Slightly darker slate */
  --bg-surface: #1e293b;          /* Darker surface for cards */
  --bg-surface-border: #334155;   /* Dark border color */

  --text-primary: #f8fafc;        /* White text for main body */
  --text-secondary: #cbd5e1;      /* Light gray for secondary text */
  --text-muted: #64748b;          /* Darker gray for placeholders */
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
}

/* ================================================================================
  1. CSS RESET & GLOBAL BASICS
================================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul, ol {
  list-style: none;
}

/* Accessibility Focus Indicator */
:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ================================================================================
  2. TYPOGRAPHY
================================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); /* Responsive fluid typography */
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

/* Simple under-line divider effect on section titles */
.section-title-wrapper {
  margin-bottom: 48px;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 12px auto 0 auto;
  border-radius: var(--border-radius-full);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 12px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
}

.mono {
  font-family: var(--font-mono);
}

/* ================================================================================
  3. BUTTONS & INTERACTIVE ELEMENTS
================================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  gap: 8px;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--bg-surface-border);
}

body.dark .btn-secondary {
  border-color: var(--bg-surface-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background-color: var(--bg-secondary);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.btn-dark:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--border-radius-sm);
}

/* ================================================================================
  4. HEADER & STICKY NAVIGATION BAR
================================================================================ */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(var(--bg-primary), 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-surface-border);
  transition: background-color var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.header-scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--bg-surface);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Branding Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 900;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  font-size: 0.95rem;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

/* Active Nav Indicator underline */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Controls (Dark Mode Toggle & Lang) */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme toggle Button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--bg-surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--bg-surface);
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background-color: var(--bg-secondary);
  border-color: var(--primary-color);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--text-secondary);
}

.sun-icon { display: none; }
body.dark .sun-icon { display: block; }
body.dark .moon-icon { display: none; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--bg-surface-border);
  border-radius: var(--border-radius-md);
  padding: 4px;
  background-color: var(--bg-surface);
}

.lang-btn {
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.lang-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Hamburger Hamburger menu button (Mobile Only) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 10px;
  transition: all var(--transition-fast);
}

/* Hamburger active transformation */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Mobile Nav Overlay */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-surface);
    border-left: 1px solid var(--bg-surface-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    z-index: 1050;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-controls {
    margin-top: auto;
    width: 100%;
    justify-content: space-between;
  }
}

/* ================================================================================
  5. HERO / BANNER SECTION
================================================================================ */
.hero-section {
  position: relative;
  padding: 160px 0 100px 0;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Subtle graphic ambient shapes in Hero for texture */
.hero-ambient-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--primary-rgb), 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background-color: rgba(var(--primary-rgb), 0.12);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Interactive Hero Visual Container (Placeholder image block) */
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-placeholder {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 3;
  background-color: rgba(var(--primary-rgb), 0.05);
  border: 2px dashed rgba(var(--primary-rgb), 0.3);
  border-radius: var(--border-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  text-align: center;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}

.hero-img-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--secondary-rgb), 0.05));
  z-index: -1;
}

.hero-img-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-img-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 80px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-img-placeholder {
    aspect-ratio: 16 / 9;
  }
}

/* ================================================================================
  6. ABOUT / INTRO SECTION
================================================================================ */
.about-section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--border-radius-lg);
  background-color: var(--bg-secondary);
  border: 1px solid var(--bg-surface-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
}

.about-img-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* Key stats inside about section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-card {
  text-align: center;
  padding: 16px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================================================
  7. SERVICES / PRODUCTS GRID SECTION
================================================================================ */
.services-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bg-surface-border);
  padding-top: 16px;
}

.service-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(3px);
}

/* ================================================================================
  8. GALLERY / PORTFOLIO SECTION
================================================================================ */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

/* Interactive Gallery Filter Buttons */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background-color: var(--bg-surface);
  border-color: var(--primary-color);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-secondary);
  border: 1px solid var(--bg-surface-border);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.gallery-item svg {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
  margin-bottom: 8px;
  opacity: 0.7;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.gallery-caption {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  padding: 0 16px;
  font-weight: 500;
}

/* ================================================================================
  9. TESTIMONIALS SECTION
================================================================================ */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
}

.testimonials-carousel {
  position: relative;
  min-height: 240px;
}

.testimonial-slide {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: none; /* Controlled by JS active class */
  text-align: center;
  animation: slideIn var(--transition-slow);
}

.testimonial-slide.active {
  display: block;
}

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

.testimonial-stars {
  color: #fbbf24; /* Star gold color */
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Carousel Nav Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  border: 1px solid var(--bg-surface-border);
  background-color: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

/* ================================================================================
  10. CONTACT, BUSINESS HOURS & FORM SECTION
================================================================================ */
.contact-section {
  padding: var(--section-padding);
  background-color: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

/* Contact Info Side */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-details h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.contact-details p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Business Hours Box */
.hours-box {
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  padding: 24px;
}

.hours-box h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.hours-box h3 svg {
  width: 18px;
  height: 18px;
  color: var(--primary-color);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-surface-border);
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-weight: 600;
}

.hours-time {
  color: var(--primary-color);
  font-weight: 500;
}

/* Google Map Embed Placeholder */
.map-placeholder {
  width: 100%;
  height: 180px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Form Side */
.contact-form-container {
  background-color: var(--bg-surface);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--bg-surface-border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--bg-surface-border);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

/* Input validation styling rules */
.form-control.is-invalid {
  border-color: var(--error-color);
}

.invalid-feedback {
  color: var(--error-color);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 6px;
  display: none;
}

.form-control.is-invalid + .invalid-feedback {
  display: block;
}

/* Spam Protection Honeypot - MUST be invisible to humans */
.sp-hp-wrapper {
  display: none !important;
  visibility: hidden !important;
}

/* Simple Logic Captcha Wrapper styling */
.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.captcha-question {
  padding: 8px 12px;
  background-color: var(--bg-secondary);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--bg-surface-border);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Form Submit Feedback UI */
.form-feedback {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  display: none; /* Controlled by JS submit handler */
}

.form-feedback.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-feedback.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error-color);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

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

/* ================================================================================
  11. FOOTER SECTION
================================================================================ */
.footer-wrapper {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-brand .logo-icon {
  width: 24px;
  height: 24px;
  font-size: 0.9rem;
}

.footer-column h5 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

/* Footer bottom bar details */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================================================================
  12. MYANMAR CHAT WIDGETS (Floating action buttons)
================================================================================ */
.myanmar-chat-widgets {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.chat-bubble svg {
  width: 24px;
  height: 24px;
}

/* Floating animation bounce loop for the primary widget */
.chat-messenger {
  background-color: #0084ff; /* FB Messenger Blue */
}
.chat-messenger:hover {
  background-color: #006bce;
  transform: scale(1.1) translateY(-3px);
}

.chat-viber {
  background-color: #7360f2; /* Viber Purple */
}
.chat-viber:hover {
  background-color: #5c4ac7;
  transform: scale(1.1) translateY(-3px);
}

.chat-whatsapp {
  background-color: #25d366; /* WhatsApp Green */
}
.chat-whatsapp:hover {
  background-color: #1ebd5a;
  transform: scale(1.1) translateY(-3px);
}

/* Hover Tooltip display */
.chat-bubble::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.chat-bubble:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

@media (max-width: 576px) {
  .myanmar-chat-widgets {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }
  .chat-bubble {
    width: 44px;
    height: 44px;
  }
  .chat-bubble svg {
    width: 20px;
    height: 20px;
  }
}

/* ================================================================================
  13. COOKIE CONSENT BANNER
================================================================================ */
.cookie-banner-wrapper {
  position: fixed;
  bottom: -150px; /* Initially hidden */
  left: 0;
  width: 100%;
  z-index: 2000;
  padding: 16px 24px;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--bg-surface-border);
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: bottom var(--transition-slow);
}

.cookie-banner-wrapper.show {
  bottom: 0;
}

.cookie-content {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/* ================================================================================
  14. SCROLL ANIMATION SUPPORT (CSS-only subtle triggers)
================================================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow) var(--transition-normal), 
              transform var(--transition-slow) var(--transition-normal);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
