/* ==========================================================================
   MYANMAR SME RESPONSIVE WEBSITE TEMPLATE - CUSTOM STYLE SHEET (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (EASY RE-THEMING CENTRAL HUB)
   Change the variables here to instantly re-theme the entire website!
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,400&family=Noto+Sans+Myanmar:wght@300;400;500;700&display=swap');

:root {
  /* Font Stacks */
  --font-primary: 'Inter', 'Noto Sans Myanmar', sans-serif;
  --font-display: 'Playfair Display', 'Noto Sans Myanmar', serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Color Palette - Default Blue Teal (Modern Professional / Premium Service) */
  --primary: #0f766e;        /* Deep Teal */
  --primary-hover: #0d5e58;  /* Darker Teal */
  --primary-light: #f0fdfa;  /* Very Light Teal */
  --secondary: #0369a1;      /* Ocean Blue */
  --secondary-hover: #025a8b;
  --accent: #f59e0b;         /* Amber Accent */
  
  /* Neutral Palette - Light Mode */
  --bg-body: #f8fafc;        /* Cool off-white */
  --bg-card: #ffffff;        /* Pure white */
  --text-main: #1e293b;      /* Charcoal slate */
  --text-muted: #64748b;     /* Slate gray */
  --border-color: #e2e8f0;   /* Light gray border */
  
  /* Status Colors */
  --success: #10b981;        /* Green */
  --error: #ef4444;          /* Red */

  /* Social Channels Branding (Official Colors) */
  --messenger-color: #0084ff;
  --viber-color: #7360f2;
  --whatsapp-color: #25d366;

  /* Layout Constants */
  --header-height: 80px;
  --header-scroll-height: 65px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --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);
}

/* --------------------------------------------------------------------------
   DARK MODE OVERRIDES
   Automatically applied when the <html> or <body> element has class 'dark'
   -------------------------------------------------------------------------- */
body.dark {
  --bg-body: #0f172a;        /* Deep slate dark blue */
  --bg-card: #1e293b;        /* Lighter slate card */
  --text-main: #f1f5f9;      /* Off-white text */
  --text-muted: #94a3b8;     /* Pale slate gray */
  --border-color: #334155;   /* Darker borders */
  --primary-light: #132524;  /* Dark tinted teal */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.3), 0 2px 4px -1px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -2px rgba(0,0,0,0.3);
}

/* --------------------------------------------------------------------------
   2. GLOBAL STYLE RESET & DEFAULTS
   -------------------------------------------------------------------------- */
*, *::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-body);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Screen reader only utility class (for accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section-padding {
  padding: 80px 0;
}

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

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.section-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & UI ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  text-align: center;
  font-size: 0.95rem;
  gap: 8px;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

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

body.dark .btn-secondary:hover {
  background-color: rgba(15, 118, 110, 0.15);
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

body.dark .badge {
  background-color: rgba(15, 118, 110, 0.2);
}

/* --------------------------------------------------------------------------
   5. TOP BAR & STICKY NAVBAR
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 8px 0;
  transition: background-color var(--transition-normal);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-info, .top-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-social-link:hover {
  color: #ffffff;
}

@media (max-width: 576px) {
  .top-bar {
    display: none; /* Hide on small mobile to save space */
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: height var(--transition-normal), background-color var(--transition-normal), border-color var(--transition-normal);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
  transition: height var(--transition-normal);
}

/* Change padding on scroll */
header.scrolled .nav-wrapper {
  height: var(--header-scroll-height);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.logo-placeholder {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 8px 4px;
  position: relative;
}

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

/* Underline effect for active link */
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: width var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Control Buttons */
.theme-toggle, .lang-toggle {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.theme-toggle:hover, .lang-toggle:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.lang-toggle {
  border-radius: 18px;
  width: auto;
  padding: 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Hamburger icon */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  z-index: 1010;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* Mobile Menu Responsiveness */
@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-card);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
    z-index: 1005;
    gap: 20px;
    border-left: 1px solid var(--border-color);
  }

  body.dark .nav-menu {
    box-shadow: -10px 0 30px rgba(0,0,0,0.4);
  }

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

  /* Hamburger transformation into 'X' */
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--primary-light);
  overflow: hidden;
  padding: 100px 0 120px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 0 80px 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 992px) {
  .hero-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }
}

/* Hero abstract visual container */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
}

.hero-blob {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: morphingBlob 12s ease-in-out infinite alternate;
}

.hero-image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-card);
  background-color: var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  transition: border-color var(--transition-normal);
}

.hero-image-placeholder svg {
  color: var(--primary);
  margin-bottom: 12px;
}

@keyframes morphingBlob {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  100% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
}

/* --------------------------------------------------------------------------
   7. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-wrapper {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background-color: var(--primary-light);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  padding: 20px;
  text-align: center;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-badge-number {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 576px) {
  .about-badge-card {
    display: none;
  }
}

.about-highlights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 480px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-icon {
  color: var(--primary);
  flex-shrink: 0;
  background-color: var(--primary-light);
  padding: 6px;
  border-radius: 6px;
  display: flex;
}

body.dark .highlight-icon {
  background-color: rgba(15, 118, 110, 0.2);
}

.highlight-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

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

/* --------------------------------------------------------------------------
   8. SERVICES / PRODUCTS GRID
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

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

.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

body.dark .service-icon {
  background-color: rgba(15, 118, 110, 0.2);
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

.service-card-link:hover {
  color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   9. INTERACTIVE GALLERY / PORTFOLIO
   -------------------------------------------------------------------------- */
.gallery-section {
  background-color: var(--primary-light);
  transition: background-color var(--transition-normal);
}

body.dark .gallery-section {
  background-color: rgba(15, 118, 110, 0.05);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-card);
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: transform var(--transition-slow) ease, opacity var(--transition-normal), border-color var(--transition-normal);
}

/* Hide animation classes for filtering */
.gallery-item.hidden {
  display: none;
  opacity: 0;
  transform: scale(0.8);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: var(--text-muted);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 118, 110, 0.9) 0%, rgba(3, 105, 161, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.gallery-item-cat {
  font-size: 0.8rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.carousel-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow) cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: background-color var(--transition-normal), border-color var(--transition-normal);
}

@media (max-width: 576px) {
  .testimonial-card {
    padding: 24px;
  }
}

.testimonial-rating {
  color: var(--accent);
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
}

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

.testimonial-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

body.dark .testimonial-avatar-placeholder {
  background-color: rgba(15, 118, 110, 0.2);
}

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
}

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

/* Slider Pagination Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: all var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* --------------------------------------------------------------------------
   11. CONTACT & BUSINESS HOURS SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

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

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrapper {
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 10px;
  border-radius: 8px;
  display: flex;
  flex-shrink: 0;
}

body.dark .contact-icon-wrapper {
  background-color: rgba(15, 118, 110, 0.2);
}

.contact-detail-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-detail-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-detail-text a:hover {
  color: var(--primary);
}

/* Business Hours List */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--border-color);
}

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

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

.hours-time {
  color: var(--text-muted);
}

.hours-row.closed .hours-time {
  color: var(--error);
  font-weight: 600;
}

/* Form Container */
.contact-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 20px;
  }
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Form Spam Protection Rules */
.honeypot-field {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.captcha-question {
  font-family: var(--font-mono);
  font-weight: 700;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  user-select: none;
}

/* Form feedback overlays */
.form-feedback {
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}

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

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

/* Google Map Container */
.map-container {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-top: 30px;
}

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

/* --------------------------------------------------------------------------
   12. FOOTER SECTION
   -------------------------------------------------------------------------- */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
  padding: 70px 0 30px 0;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  display: inline-block;
}

.footer-desc {
  margin-bottom: 24px;
}

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

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

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

.footer-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-item a:hover {
  color: #ffffff;
}

/* Newsletter Input Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-input {
  width: 100%;
  padding: 10px 14px;
  background-color: #1e293b;
  border: 1px solid #334155;
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  background-color: var(--primary);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: background-color var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--primary-hover);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

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

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

/* --------------------------------------------------------------------------
   13. FLOATING ACTION SOCIALS (Myanmar SME Essentials)
   -------------------------------------------------------------------------- */
.social-float-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Align right on desktop, shift for mobile */
@media (max-width: 768px) {
  .social-float-container {
    bottom: 20px;
    left: 20px;
  }
}

.social-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.social-float-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.social-float-btn.messenger { background-color: var(--messenger-color); }
.social-float-btn.viber { background-color: var(--viber-color); }
.social-float-btn.whatsapp { background-color: var(--whatsapp-color); }

/* Float Tooltip Labels */
.social-float-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 62px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background-color: #1f2937;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.social-float-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Scroll To Top Button (Right Aligned) */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  z-index: 999;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* --------------------------------------------------------------------------
   14. SYSTEM DIALOGS (Cookie Banner & Notices)
   -------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: -150px; /* Hidden initially */
  left: 0;
  width: 100%;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -10px 25px rgba(0,0,0,0.08);
  padding: 20px 0;
  z-index: 1050;
  transition: bottom var(--transition-slow) cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark .cookie-banner {
  box-shadow: 0 -10px 25px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 800px;
}

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

.cookie-btn-dismiss {
  background-color: var(--primary);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background-color var(--transition-fast);
}

.cookie-btn-dismiss:hover {
  background-color: var(--primary-hover);
}

/* --------------------------------------------------------------------------
   15. LIGHTWEIGHT ANIMATION FRAMEWORK
   Smooth trigger elements as users scroll (Activated via Intersection Observer)
   -------------------------------------------------------------------------- */
.fade-up-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1), 
              transform var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Stagger animation helpers for list children */
.stagger-container > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1), 
              transform var(--transition-slow) cubic-bezier(0.25, 1, 0.5, 1);
}

.stagger-container.animated > * {
  opacity: 1;
  transform: translateY(0);
}

/* Add subtle delays to grid item transitions */
.stagger-container.animated > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-container.animated > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-container.animated > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-container.animated > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-container.animated > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-container.animated > *:nth-child(6) { transition-delay: 0.55s; }

/* --------------------------------------------------------------------------
   16. BILINGUAL MULTI-LANGUAGE DECORATORS
   Utility triggers to hide or reveal based on active language (e.g. data-lang="en")
   -------------------------------------------------------------------------- */
[data-my] {
  display: none; /* Myanmar content hidden by default */
}

html[lang="my"] [data-en] {
  display: none !important;
}

html[lang="my"] [data-my] {
  display: block !important;
}

/* Inline display helpers */
html[lang="my"] span[data-my], html[lang="my"] strong[data-my], html[lang="my"] a[data-my] {
  display: inline !important;
}

html[lang="my"] .gallery-item-title[data-my], html[lang="my"] .service-card-title[data-my] {
  display: block !important;
}
