/* -------------------------------------------------------------
   HAINAM & HACHI - STYLE SHEET
   Premium, Minimalist, Elegant and International Photography
------------------------------------------------------------- */

/* 1. Imports & Core Setup */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playball&display=swap');

:root {
  /* Color System */
  --brand-green: #2F5A50;
  --brand-green-dark: #1F3E37;
  --brand-green-light: #44776C;
  --brand-green-rgba: rgba(47, 90, 80, 0.1);
  --accent-gold: #C5A880;
  --accent-gold-dark: #AA8B62;
  --accent-gold-light: #E7DCCF;
  --charcoal: #121212;
  --charcoal-light: #1A1A1A;
  --charcoal-lighter: #282828;
  --off-white: #FAF9F6;
  --white: #FFFFFF;
  --gray-light: #EEEEEE;
  --gray-medium: #888888;
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Playball', cursive;

  /* Transitions */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Container Width */
  --max-width: 1200px;
  --header-height: 80px;
}

/* 2. Global Resets & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hide unselected language translation blocks */
html[lang="vi"] [lang="en"] {
  display: none !important;
}
html[lang="en"] [lang="vi"] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
}

p {
  font-weight: 300;
  color: #4a4a4a;
}

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

ul {
  list-style: none;
}

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

/* 3. Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--accent-gold-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-green-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--accent-gold);
}

.bg-light {
  background-color: var(--off-white);
}

.bg-dark {
  background-color: var(--charcoal);
  color: var(--white);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--white);
}
.bg-dark p {
  color: #cccccc;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--brand-green);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--brand-green-dark);
  border-color: var(--accent-gold);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--accent-gold-dark);
  border: 1px solid var(--accent-gold);
}
.btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: var(--white);
}

.btn-white {
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--white);
}
.btn-white:hover {
  background-color: transparent;
  color: var(--white);
}

/* 4. Top Info Bar & Main Header */
.top-bar {
  background-color: var(--charcoal);
  color: #dddddd;
  font-size: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-info {
  display: flex;
  gap: 1.5rem;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info span svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold);
}

.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-selector {
  display: flex;
  gap: 0.5rem;
  font-weight: 600;
}

.lang-btn {
  background: none;
  border: none;
  color: #888888;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition-fast);
  padding: 0 2px;
}

.lang-btn.active, .lang-btn:hover {
  color: var(--accent-gold-light);
}

.main-header {
  background-color: var(--white);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease, backdrop-filter 0.3s ease;
}

.main-header.scrolled {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Brand Logo (Custom SVG mockup matching user's image) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--brand-green-light);
  box-shadow: 0 4px 10px rgba(47, 90, 80, 0.2);
}

.logo-circle-ring {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.logo-svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  letter-spacing: 1px;
}

.brand-tagline {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold-dark);
  font-weight: 600;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--brand-green);
}

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

.nav-link.active {
  color: var(--brand-green-dark);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--charcoal);
}

/* 5. Hero Slider Section */
.hero-slider {
  position: relative;
  height: calc(100vh - var(--header-height) - 33px);
  min-height: 550px;
  overflow: hidden;
  background-color: #f2efe9;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center top;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f2efe9 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 55%;
  padding-right: 2rem;
}

.hero-tag {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--brand-green-dark);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  color: #555;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition-fast);
}

.hero-control:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.hero-control:hover svg {
  fill: var(--white);
}

.hero-control svg {
  width: 20px;
  height: 20px;
  fill: var(--charcoal);
  transition: var(--transition-fast);
}

.hero-prev {
  left: 2rem;
}

.hero-next {
  right: 2rem;
}

/* 6. Welcome Section (Overlapping Elements) */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-images {
  position: relative;
  padding-bottom: 4rem;
}

.welcome-img-primary {
  width: 85%;
  border: 10px solid var(--white);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.welcome-img-secondary {
  position: absolute;
  width: 50%;
  bottom: 0;
  right: 0;
  border: 8px solid var(--white);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  z-index: 3;
}

.welcome-decorator {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 80%;
  border: 2px solid var(--accent-gold-light);
  z-index: 1;
}

.welcome-text-content {
  padding-left: 1rem;
}

.welcome-text-content .section-subtitle {
  text-align: left;
}

.welcome-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brand-green-dark);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.welcome-desc {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #555555;
  text-align: justify;
}

.welcome-hotline-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-light);
}

.hotline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--brand-green-rgba);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--brand-green);
}

.hotline-text span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--gray-medium);
  letter-spacing: 1px;
}

.hotline-text h4 {
  font-size: 1.5rem;
  color: var(--brand-green-dark);
  font-weight: 700;
}

/* 7. Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--accent-gold-light);
}

.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--brand-green-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card-title svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold-dark);
}

.service-card-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gray-light);
  padding-top: 1rem;
}

.service-card-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--accent-gold-dark);
  font-size: 1.1rem;
}

.service-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.service-card-link:hover {
  color: var(--accent-gold-dark);
}

.service-card-link svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.2s;
}

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

/* 8. Promotional Parallax Banner */
.promo-banner {
  background-image: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('images/studio_interior.png');
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
  padding: 8rem 0;
  text-align: center;
}

.promo-tag {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.promo-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.promo-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: #dddddd;
  font-weight: 300;
}

/* 9. Pricing Section (Tabbed layout) */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.pricing-tab-btn {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 1rem 2rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--charcoal);
}

.pricing-tab-btn.active, .pricing-tab-btn:hover {
  background-color: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
}

.pricing-content-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.pricing-content-panel.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

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

.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  padding: 3rem 2.5rem;
  position: relative;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card.featured {
  border: 2px solid var(--brand-green);
  box-shadow: 0 15px 30px rgba(47, 90, 80, 0.08);
}

.pricing-card.featured::before {
  content: 'POPULAR';
  position: absolute;
  top: 0;
  right: 2.5rem;
  transform: translateY(-50%);
  background-color: var(--accent-gold-dark);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 0.4rem 1rem;
}

.pricing-card-header {
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card-title {
  font-size: 1.4rem;
  color: var(--brand-green-dark);
  margin-bottom: 0.5rem;
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  color: var(--accent-gold-dark);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.pricing-currency {
  font-size: 1rem;
  margin-left: 0.2rem;
  font-weight: 500;
}

.pricing-card-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-card-features li {
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #555;
}

.pricing-card-features li svg {
  width: 14px;
  height: 14px;
  fill: var(--brand-green);
  flex-shrink: 0;
}

/* 10. Testimonials Section */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  text-align: center;
  padding: 0 4rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--brand-green-dark);
  margin-bottom: 2rem;
}

.testimonial-quote::before, .testimonial-quote::after {
  content: '"';
  font-size: 2rem;
  color: var(--accent-gold);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.testimonial-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gray-medium);
  letter-spacing: 1px;
}

.testimonial-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-control-btn {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
}

.testimonial-control-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-gold-dark);
  transition: var(--transition-fast);
}

.testimonial-control-btn:hover svg {
  fill: var(--brand-green);
}

/* 11. Blog & Diary Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  transition: var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: var(--accent-gold-light);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.8rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gray-medium);
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  display: block;
}

.blog-card-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--brand-green-dark);
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.blog-card-link svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}

/* 12. Contact Form & Google Maps */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.contact-form-wrapper {
  background-color: var(--off-white);
  padding: 3.5rem;
  border: 1px solid var(--gray-light);
  border-top: 4px solid var(--brand-green);
}

.contact-form-title {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--brand-green-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--gray-light);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(47, 90, 80, 0.05);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Branch & Maps Tab styling */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.branch-selector {
  display: flex;
  gap: 1px;
  background-color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.branch-tab-btn {
  flex: 1;
  background: #f9f9f9;
  border: none;
  padding: 1rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--charcoal);
  text-align: center;
}

.branch-tab-btn.active, .branch-tab-btn:hover {
  background-color: var(--brand-green);
  color: var(--white);
}

.branch-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.branch-panel.active {
  display: block;
}

.branch-details {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-left: 3px solid var(--accent-gold);
  background-color: #fcfbfa;
}

.branch-details h3 {
  font-size: 1.25rem;
  color: var(--brand-green-dark);
  margin-bottom: 0.5rem;
}

.branch-details p {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.branch-details p svg {
  width: 14px;
  height: 14px;
  fill: var(--accent-gold-dark);
  flex-shrink: 0;
}

.map-container {
  height: 300px;
  border: 1px solid var(--gray-light);
  background-color: #eee;
  overflow: hidden;
}

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

/* 13. Footer & Newsletter */
.footer-newsletter {
  background-color: var(--brand-green-dark);
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.newsletter-text h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  padding: 1rem 1.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.newsletter-input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background-color: var(--accent-gold);
  color: var(--charcoal);
  border: none;
  padding: 0 2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--accent-gold-light);
}

.main-footer {
  background-color: var(--charcoal);
  color: #aaaaaa;
  padding: 5rem 0 2rem;
}

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

.footer-col-about {
  padding-right: 2rem;
}

.footer-col-about .brand-title {
  color: var(--white);
}

.footer-about-text {
  font-size: 0.85rem;
  margin-top: 1.2rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--accent-gold);
}

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

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

.footer-links a {
  font-size: 0.85rem;
  color: #aaaaaa;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(3px);
}

.footer-contact-item {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.8rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background-color: var(--brand-green);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

/* 14. About Us Page Custom Styles */
.about-banner {
  background-color: var(--off-white);
  padding: 5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--gray-light);
}

.about-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-green-dark);
  margin-bottom: 0.5rem;
}

.about-breadcrumbs {
  font-size: 0.85rem;
  color: var(--gray-medium);
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
}

.about-breadcrumbs a:hover {
  color: var(--brand-green);
}

.why-us-container {
  margin-top: 2rem;
}

.why-us-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 8px solid var(--white);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.why-us-tabs {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 1rem;
}

.why-tab-btn {
  background: none;
  border: none;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--gray-medium);
  position: relative;
}

.why-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1.05rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-green);
  transition: var(--transition-fast);
}

.why-tab-btn.active, .why-tab-btn:hover {
  color: var(--brand-green-dark);
}

.why-tab-btn.active::after {
  width: 100%;
}

.why-us-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why-us-intro-col h3 {
  font-size: 1.6rem;
  color: var(--brand-green-dark);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.why-us-intro-col p {
  font-size: 0.95rem;
  color: #555;
}

.why-us-tab-content-col {
  background-color: var(--off-white);
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
  min-height: 220px;
}

.why-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.why-panel.active {
  display: block;
}

.why-panel h4 {
  font-size: 1.3rem;
  color: var(--accent-gold-dark);
  margin-bottom: 1rem;
}

.why-panel p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #444;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-card {
  background-color: var(--white);
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--gray-light);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold-light);
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-gold-dark);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--charcoal-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.team-card {
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  border-color: var(--accent-gold-light);
}

.team-card-img {
  height: 320px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 2rem;
}

.team-card-info h3 {
  font-size: 1.4rem;
  color: var(--brand-green-dark);
  margin-bottom: 0.4rem;
}

.team-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 1rem;
}

.team-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* 16. Services Page Custom Styles */
.offer-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.offer-video-wrapper {
  position: relative;
}

.offer-video-mock {
  position: relative;
  border: 8px solid var(--white);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.offer-video-mock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(47, 90, 80, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.offer-video-mock:hover .video-overlay {
  background-color: rgba(47, 90, 80, 0.4);
}

.video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: var(--transition-normal);
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--brand-green);
  margin-left: 4px;
  transition: var(--transition-normal);
}

.offer-video-mock:hover .video-play-btn {
  transform: scale(1.1);
  background-color: var(--brand-green);
}

.offer-video-mock:hover .video-play-btn svg {
  fill: var(--white);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgba(18, 18, 18, 0.7);
  color: var(--white);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.offer-bullets-wrapper h3 {
  font-size: 1.6rem;
  color: var(--brand-green-dark);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.offer-checklist {
  list-style: none;
}

.offer-checklist li {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.offer-checklist li svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-gold-dark);
  background-color: var(--brand-green-rgba);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  margin-top: 3px;
}

.offer-checklist li strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brand-green-dark);
  display: block;
  margin-bottom: 0.3rem;
}

.offer-checklist li p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.checker-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.checker-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: var(--transition-normal);
}

.checker-item:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.04);
  border-color: var(--accent-gold-light);
}

.checker-img {
  height: 420px;
  overflow: hidden;
}

.checker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-slow);
}

.checker-item:hover .checker-img img {
  transform: scale(1.03);
}

.checker-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fdfcfb;
}

.checker-tag {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--accent-gold-dark);
  margin-bottom: 0.5rem;
}

.checker-text h3 {
  font-size: 1.8rem;
  color: var(--brand-green-dark);
  margin-bottom: 1.2rem;
}

.checker-text p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: justify;
}

.checker-reverse .checker-img {
  grid-column: 2;
}

.checker-reverse .checker-text {
  grid-column: 1;
  grid-row: 1;
}

/* 18. Contact Page Special Layouts */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.contact-info-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold-light);
  box-shadow: 0 12px 25px rgba(0,0,0,0.03);
}

.contact-info-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  color: var(--brand-green-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-card p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.contact-center-form-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.contact-page-form {
  margin-top: 2rem;
}

.contact-page-form .form-control {
  background-color: var(--white);
  border-color: var(--gray-light);
}

/* 19. Responsive Layouts */
@media (max-width: 1024px) {
  .hero-slider {
    height: 550px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .welcome-grid {
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .why-us-details {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-us-img {
    height: 380px;
  }
  .offer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .checker-item {
    grid-template-columns: 1fr;
  }
  .checker-reverse .checker-img {
    grid-column: auto;
  }
  .checker-reverse .checker-text {
    grid-column: auto;
    grid-row: auto;
  }
  .checker-img {
    height: 320px;
  }
  .checker-text {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .main-header {
    height: 70px;
  }
  
  /* Mobile Navigation Menu */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.8rem;
    align-items: flex-start;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 0.8rem;
  }
  
  /* Hero Slider Mobile */
  .hero-slider {
    height: 500px;
  }
  .hero-slide {
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
  }
  .hero-slide-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.15;
  }
  .hero-slide-bg::after {
    background: none;
  }
  .hero-content {
    width: 100%;
    padding: 0 1.5rem;
    text-align: center;
  }
  .hero-desc {
    margin: 0 auto 2rem;
  }
  .hero-control {
    width: 40px;
    height: 40px;
  }
  .hero-prev {
    left: 0.5rem;
  }
  .hero-next {
    right: 0.5rem;
  }
  
  /* Welcome Grid Mobile */
  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .welcome-images {
    padding-bottom: 2rem;
  }
  
  /* Newsletter Mobile */
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .why-tab-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
  .checker-text {
    padding: 2rem;
  }
  .checker-text h3 {
    font-size: 1.5rem;
  }
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-large-map-wrapper .map-container {
    height: 350px !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form-wrapper {
    padding: 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-slide {
    padding: 0 1rem;
  }
  .pricing-tab-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .why-us-tab-content-col {
    padding: 1.5rem;
  }
}
