@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* Common variables */
  --max-width: 1200px;
  --primary-color: #d87126;
  --primary-color-dark: #a85518;
  
  /* Light theme (default) */
  --text-dark: #171717;
  --text-light: #737373;
  --light: #e5e5e5;
  --extra-light: #fdfaf6;
  --white: #ffffff;
  --background-color: #ffffff;
  --card-bg: #ffffff;
  --border-color: #e5e5e5;
  --header-image-bg: #2b2b2b;
  --header-top-bg: rgba(216, 113, 38, 0.1);
  --footer-border: rgba(216, 113, 38, 0.2);
  --customer-card-border: var(--light);
  --service-card-border: var(--extra-light);
  --customer-badge-bg: #ecfdf5;
  --customer-badge-color: #20604e;
  --boxshadow-color: rgba(0, 0, 0, 0.2);
  --boxshadow-light-color: rgba(0, 0, 0, 0.1);
  --boxshadow-lighter-color: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
  --text-dark: #ffffff;
  --text-light: #cccccc;
  --light: #333333;
  --extra-light: #1a1a1a;
  --white: #1e1e1e;
  --background-color: #121212;
  --card-bg: #1e1e1e;
  --border-color: #333333;
  --header-image-bg: #2a2a3a;
  --header-top-bg: rgba(216, 113, 38, 0.2);
  --footer-border: rgba(216, 113, 38, 0.3);
  --customer-card-border: #333333;
  --service-card-border: #1a1a1a;
  --customer-badge-bg: #193328;
  --customer-badge-color: #4eca9f;
  --boxshadow-color: rgba(0, 0, 0, 0.4);
  --boxshadow-light-color: rgba(0, 0, 0, 0.2);
  --boxshadow-lighter-color: rgba(0, 0, 0, 0.1);
}

/* Dark Body and Global Elements */
[data-theme="dark"] html,
[data-theme="dark"] body {
  background-color: var(--background-color) !important;
  color: var(--text-dark) !important;
}

/* Ensure html element has proper dark background */
[data-theme="dark"] html {
  background-color: var(--background-color) !important;
}

/* Dark Hero Section */
[data-theme="dark"] .hero-section {
  background-color: var(--background-color);
  color: var(--text-dark);
}

[data-theme="dark"] .hero-title {
  color: var(--text-dark);
}

[data-theme="dark"] .hero-content p {
  color: var(--text-light);
}

[data-theme="dark"] .hero-stats .stat-number {
  color: var(--text-dark);
}

[data-theme="dark"] .hero-stats .stat-label {
  color: var(--text-light);
}

/* Dark Hero Image Section */
[data-theme="dark"] .hero-slider {
  background: var(--card-bg);
  box-shadow: 0 20px 40px var(--boxshadow-color);
}

[data-theme="dark"] .hero-slide img {
  background: linear-gradient(135deg, var(--card-bg) 0%, var(--border-color) 100%);
}

[data-theme="dark"] .slider-btn {
  background: rgba(30, 30, 30, 0.9);
  color: var(--text-dark);
  box-shadow: 0 4px 15px var(--boxshadow-color);
}

[data-theme="dark"] .slider-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

[data-theme="dark"] .dot {
  background: var(--border-color);
}

[data-theme="dark"] .dot.active {
  background: var(--primary-color);
}

[data-theme="dark"] .floating-card {
  background: var(--card-bg);
  color: var(--text-dark);
  box-shadow: 0 10px 30px var(--boxshadow-color);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .floating-card i {
  color: var(--primary-color);
}

/* Dark Video Section */
[data-theme="dark"] .ratio2_1 {
  background-color: var(--background-color);
}

[data-theme="dark"] .video-section {
  background-color: var(--background-color);
}

/* Dark Services Section */
[data-theme="dark"] .service-section {
  background-color: var(--background-color);
}

[data-theme="dark"] .service-wrap {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px var(--boxshadow-light-color);
}

[data-theme="dark"] .service-wrap:hover {
  box-shadow: 0 15px 35px var(--boxshadow-color);
}

[data-theme="dark"] .service-icon i {
  color: var(--primary-color);
}

[data-theme="dark"] .service-content h3 {
  color: var(--text-dark);
}

[data-theme="dark"] .service-content .font-light {
  color: var(--text-light);
}

/* Dark Product Cards */
[data-theme="dark"] .category-style-3 {
  background-color: var(--background-color);
}

[data-theme="dark"] .title h2,
[data-theme="dark"] .title h5 {
  color: var(--text-dark);
}

[data-theme="dark"] .package-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .package-item h4 {
  color: var(--text-dark);
}

[data-theme="dark"] .package-item p {
  color: var(--text-light);
}

/* Dark Info Cards */
[data-theme="dark"] .service__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .service__card h4 {
  color: var(--text-dark);
}

[data-theme="dark"] .service__card p {
  color: var(--text-light);
}

[data-theme="dark"] .menu__card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .menu__card h4 {
  color: var(--text-dark);
}

[data-theme="dark"] .menu__card p {
  color: var(--text-light);
}

/* Logo visibility based on theme */
.logo-white {
  display: none;
}

.logo-dark {
  display: block;
}

[data-theme="dark"] .logo-white {
  display: block;
}

[data-theme="dark"] .logo-dark {
  display: none;
}

/* Theme toggle button */
.theme-toggle {
  position: relative;
  width: 50px;
  height: 25px;
  background-color: var(--light);
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 45px;
    height: 22px;
  }
}

.theme-toggle i {
  font-size: 16px;
  color: var(--text-dark);
  z-index: 1;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--white);
  left: 3px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

[data-theme="dark"] .theme-toggle::after {
  transform: translateX(25px);
}

[data-theme="dark"] .theme-toggle {
  background-color: var(--primary-color);
}

[data-theme="dark"] .theme-toggle i.ri-moon-line {
  color: var(--white);
}

[data-theme="dark"] .theme-toggle i.ri-sun-line {
  color: var(--text-dark);
}

/* PWA Install Bar Styles */

/* Floating Chat Window Styles */
.floating-chat-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  z-index: 1000;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 1001;
}

.chat-button:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.05);
}

.chat-button i {
  font-size: 24px;
  color: white;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-buttons.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.social-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-button:hover {
  transform: scale(1.1);
}

.social-button i {
  font-size: 22px;
  color: white;
}

.whatsapp {
  background-color: #25D366;
}

.messenger {
  background-color: #0084FF;
}

.telegram {
  background-color: #0088cc;
}

.email {
  background-color: #EA4335;
}

/* Media query for smaller screens */
/* ===== COMPREHENSIVE RESPONSIVE DESIGN ===== */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section__container {
    max-width: 1200px;
  }
  
  .nav__logo img {
    max-width: 120px;
  }
}

/* Large Devices (Desktops) */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .nav__links {
    gap: 1.5rem;
  }
  
  .nav__links a {
    font-size: 0.9rem;
  }
  
  .header__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .header__content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .menu__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .enhanced-banner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .enhanced-banner-card {
    height: 350px;
  }
}

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
  .container {
    max-width: 720px;
    padding: 0 20px;
  }
  
  .nav__bar {
    padding: 1rem 0;
  }
  
  .nav__menu__btn {
    display: block;
  }
  
  .nav__links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--card-bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  
  .nav__links.open {
    left: 0;
  }
  
  .nav__links a {
    font-size: 1.2rem;
    font-weight: 500;
  }
  
  .header__container {
    padding: 2rem 0;
  }
  
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .header__content p {
    font-size: 1rem;
    margin: 1rem 0 2rem;
  }
  
  .menu__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .service-section .row {
    gap: 1.5rem;
  }
  
  .service-wrap {
    padding: 1.5rem;
  }
  
  .customer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .customer__image {
    order: 2;
  }
  
  .customer__content {
    order: 1;
  }
}

/* Small Devices (Large Phones) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
    padding: 0 15px;
  }
  
  .nav__bar {
    padding: 0.8rem 0;
  }
  
  .nav__logo img {
    max-width: 100px;
  }
  
  .theme-toggle {
    width: 45px;
    height: 22px;
  }
  
  .header__container {
    padding: 1.5rem 0;
  }
  
  .header__content h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  
  .header__content p {
    font-size: 0.9rem;
    margin: 0.8rem 0 1.5rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section__container {
    padding: 3rem 0;
  }
  
  .section__header {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .menu__card {
    padding: 1rem;
  }
  
  .menu__card img {
    max-width: 80px;
  }
  
  .menu__card h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
  
  .menu__card p {
    font-size: 0.8rem;
  }
  
  .service-section {
    padding: 2rem 0;
  }
  
  .service-section .row {
    gap: 1rem;
  }
  
  .service-wrap {
    padding: 1rem;
    text-align: center;
  }
  
  .service-wrap i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .service-wrap h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .service-wrap p {
    font-size: 0.8rem;
  }
  
  .enhanced-banner-section {
    padding: 2rem 0;
  }
  
  .enhanced-banner-grid {
    gap: 1rem;
  }
  
  .enhanced-banner-card {
    height: 250px;
  }
  
  .banner-content {
    padding: 1rem;
  }
  
  .banner-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .banner-content p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }
  
  .customer__container {
    padding: 2rem 0;
  }
  
  .customer__content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .customer__content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .customer__card {
    padding: 1rem;
  }
  
  .footer-main {
    padding: 2rem 0 1rem;
  }
  
  .footer-col {
    margin-bottom: 1.5rem;
  }
  
  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  .footer-links li {
    margin-bottom: 0.3rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .floating-chat-container {
    bottom: 80px;
    right: 15px;
    z-index: 10001;
  }
  
  .chat-button {
    width: 50px;
    height: 50px;
  }
  
  .chat-button i {
    font-size: 20px;
  }
  
  .social-button {
    width: 40px;
    height: 40px;
  }
  
  .social-button i {
    font-size: 18px;
  }
  
  /* Adjust social buttons to appear upward on mobile to avoid bottom nav */
  .social-buttons {
    flex-direction: column-reverse;
    margin-bottom: 0;
    margin-top: 15px;
  }
}

.install-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  animation: slideDown 0.3s ease-out;
}

.install-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  gap: 15px;
}

.install-bar-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.install-bar-icon img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

.install-bar-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.install-bar-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.install-bar-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
}

.install-bar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.install-now-btn {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.install-now-btn:hover {
  background: var(--extra-light);
  transform: translateY(-1px);
}

.install-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  line-height: 1;
}

.install-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Adjust body padding when install bar is visible */
body.install-bar-visible {
  padding-top: 60px;
}

/* Mobile responsiveness for install bar */
@media (max-width: 768px) {
  .install-bar-content {
    padding: 10px 15px;
    gap: 10px;
  }
  
  .install-bar-text strong {
    font-size: 13px;
  }
  
  .install-bar-text span {
    font-size: 11px;
  }
  
  .install-now-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  body.install-bar-visible {
    padding-top: 55px;
  }
}

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

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.section__header span {
  position: relative;
  isolation: isolate;
}

.section__header span::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 100%;
  border-bottom: 4px solid var(--primary-color);
  border-radius: 100%;
  z-index: -1;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px 20px 5px 20px;
  border: 2px solid var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
  border-color: var(--primary-color-dark);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav {
  position: fixed;
  isolation: isolate;
  width: 100%;
  z-index: 9;
  top: 0;
}

.nav__header {
  padding: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
}

/* Default logo states (light theme) */
.nav__logo {
  width: auto;
  display: flex;
  align-items: center;
}

.nav__logo a {
  display: block;
}

.nav__logo img {
  transform: scale(1.5);
  transform-origin: left center;
}

.nav__logo .logo-dark {
  display: block;
  height: auto;
}

.nav__logo .logo-white {
  display: none;
  height: auto;
}

/* Dark theme logo states */
[data-theme="dark"] .nav__logo .logo-dark {
  display: none;
}

[data-theme="dark"] .nav__logo .logo-white {
  display: block;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  display: none;
  z-index: 1001;
}

[data-theme="dark"] .nav__menu__btn {
  color: var(--white);
}

/* Show hamburger menu on mobile */
@media (max-width: 991px) {
  .nav__menu__btn {
    display: block;
  }
}

/* Footer Logo Styles */
.footer__logo .logo-dark {
  display: block;
  max-width: 120px;
}

.footer__logo .logo-white {
  display: none;
  max-width: 120px;
}

/* Dark theme footer logo states */
[data-theme="dark"] .footer__logo .logo-dark {
  display: none;
}

[data-theme="dark"] .footer__logo .logo-white {
  display: block;
}

.nav__links {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--primary-color);
  transition: transform 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(100%);
  height: auto;
  padding-bottom: 1rem;
}

/* Desktop navigation */
@media (min-width: 992px) {
  .nav__links {
    position: static;
    width: auto;
    flex-direction: row;
    gap: 2rem;
    padding: 0;
    background: transparent;
    transform: none;
    z-index: auto;
  }
  
  .nav__links.open {
    transform: none;
  }
  
  .nav__header {
    justify-content: space-between;
    padding: 1rem 2rem;
  }
  
  .nav__btns .btn {
    display: inline-block;
  }
}

.nav__links a {
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.nav__btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  position: absolute;
  top: 1rem;
  right: 4.5rem;
  z-index: 10;
}

/* Show only theme toggle on mobile */
.nav__btns .btn {
  display: none;
}

.theme-toggle {
  display: flex;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

/* Mobile-only navbar adjustments - very targeted */
@media (max-width: 768px) {
  .nav__btns {
    right: 3rem; /* Reduce right spacing on mobile */
    gap: 0.3rem; /* Smaller gap between elements */
  }
  
  .nav__btns .store-name {
    display: none; /* Hide store name on mobile */
  }
  
  .nav__btns .login-btn {
    display: none; /* Hide login button on mobile */
  }
}

@media (max-width: 575px) {
  .nav__btns {
    right: 2.5rem; /* Even less spacing on small mobile */
  }
}

.header__container {
  display: grid;
  gap: 4rem 2rem;
}

.header__image .image {
  margin-bottom: 2rem;
  padding-bottom: 4rem;
  margin-inline: auto;
  max-width: 450px;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
}

.header__image .image::after,
.header__image .image::before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--header-image-bg);
  z-index: -1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.header__image .image::before {
  bottom: 0;
  border-radius: 2.5rem 0 2.5rem 2.5rem;
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.1);
}

.header__image .image::after {
  bottom: 50%;
  border-radius: 4rem 4rem 0 0;
  transform: translateY(50%);
  box-shadow: inset 0 -3px 10px rgba(0, 0, 0, 0.1);
}

.header__image__footer {
  margin-inline: auto;
  max-width: 450px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__image__footer img {
  max-width: 70px;
  border-radius: 100%;
  border: 8px solid var(--white);
  box-shadow: 0 0 20px var(--boxshadow-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.header__image__footer p {
  padding-left: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--text-light);
  border-left: 2px solid var(--primary-color);
  transition: color 0.3s ease;
}

.header__top {
  margin-bottom: 2rem;
  max-width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  background-color: var(--header-top-bg);
  border-radius: 2rem;
  box-shadow: 0 0 20px var(--boxshadow-light-color);
  overflow: hidden;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header__top span {
  display: inline-block;
  padding: 0 1.5rem;
  background-color: var(--primary-color);
}

.header__top img {
  max-width: 30px;
  transform: rotate(-90deg);
  transform-origin: center center;
}

.header__top h2 {
  padding-inline: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 7rem;
  text-align: center;
}

/* Responsive header content */
@media (max-width: 1199px) {
  .header__content h1 {
    font-size: 4rem;
    line-height: 5rem;
  }
}

@media (max-width: 991px) {
  .header__content h1 {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
  
  .header__container {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3.2rem;
    margin-bottom: 1.5rem;
  }
  
  .header__content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .header__btns {
    margin-bottom: 1.5rem;
    gap: 0.8rem;
  }
  
  .header__btns .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .header__top {
    margin-bottom: 1.5rem;
  }
  
  .header__top h2 {
    font-size: 0.9rem;
    padding-inline: 0.8rem 1.5rem;
  }
}

@media (max-width: 575px) {
  .header__content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  
  .header__content p {
    font-size: 0.9rem;
  }
  
  .header__btns {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .header__btns .btn {
    width: 100%;
    max-width: 250px;
  }
}

.header__content h1 span {
  color: var(--primary-color);
}

.header__content p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
  line-height: 1.75rem;
}

.header__btns {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header__btns .btn:nth-child(2) {
  color: var(--primary-color);
  background-color: transparent;
}

.header__btns .btn:nth-child(2):hover {
  color: var(--primary-color-dark);
}

.header__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.header__card {
  position: relative;
  isolation: isolate;
  padding: 1rem;
  flex: 1;
}

.header__card::before,
.header__card::after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 50%;
  border: 2px solid var(--border-color);
  z-index: -1;
  transition: 0.3s;
}

.header__card::before {
  bottom: 0;
  border-radius: 0 0 10px 10px;
  border-top: none;
}

.header__card::after {
  bottom: 50%;
  border-radius: 10px 10px 0 0;
  border-bottom: none;
  transform: translateY(50%) skewY(-10deg);
}

.header__card:hover::after,
.header__card:hover::before {
  border-color: var(--primary-color);
}

.header__card img {
  margin-inline: auto;
  margin-bottom: 1rem;
  max-width: 70px;
  border-radius: 100%;
}

.header__card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.menu__container .section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.menu__grid {
  margin-bottom: 4rem;
  display: grid;
  gap: 4rem 2rem;
}

.menu__card {
  padding: 2rem;
  padding-top: 0;
  text-align: center;
  background-color: var(--card-bg);
  border-radius: 10rem 8rem 2rem 2rem;
  transition: 0.3s;
  box-shadow: 0 0 50px var(--boxshadow-lighter-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.menu__card:hover {
  box-shadow: 0 0 50px var(--boxshadow-color);
}

.menu__card img {
  max-width: 180px;
  margin-inline: auto;
  border-radius: 100%;
  transform: translateY(-2rem);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.menu__card:hover img {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.menu__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.menu__card p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-light);
}

.menu__card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu__card__footer .btn {
  font-weight: 600;
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.menu__card__footer .btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.menu__btn {
  text-align: center;
}

.service {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--extra-light);
  transition: background-color 0.3s ease;
}

/* Dark mode services section */
[data-theme="dark"] .service {
  background-color: var(--background-color);
}

[data-theme="dark"] .service::before {
  background-color: var(--background-color);
}

.service::before {
  position: absolute;
  content: "";
  top: -4rem;
  left: 0;
  height: 8rem;
  width: 100%;
  background-color: var(--background-color);
  border-radius: 100%;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.service__container .section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.service__grid {
  display: grid;
  gap: 4rem 2rem;
}

.service__card {
  padding: 2rem;
  padding-top: 0;
  text-align: center;
  background-color: var(--card-bg);
  border-radius: 10rem 8rem 5rem 5rem;
  transition: 0.3s;
  box-shadow: 0 0 50px var(--boxshadow-lighter-color);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.service__card:hover {
  box-shadow: 0 0 50px var(--boxshadow-color);
}

.service__card div {
  max-width: 200px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  margin-inline: auto;
  background-color: var(--card-bg);
  border-radius: 100%;
  transform: translateY(-2rem);
  border: 1rem solid var(--service-card-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.service__card img {
  max-width: 100px;
}

.service__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.service__card p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.service__card a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
}

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

.banner {
  background-color: var(--extra-light);
  transition: background-color 0.3s ease;
}

.banner__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.banner__image img {
  max-width: 500px;
  margin-inline: auto;
  border-radius: 5rem 2rem 5rem 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.banner__content .section__header {
  margin-bottom: 2rem;
}

.banner__content p {
  margin-bottom: 2rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.75rem;
}

.customer__container {
  display: grid;
  gap: 2rem;
}

.customer__image {
  position: relative;
  isolation: isolate;
}

.customer__image::before {
  position: absolute;
  content: "";
  width: 75%;
  height: 75%;
  left: 0;
  bottom: 0;
  border-radius: 2rem;
  box-shadow: 0 0 20px var(--boxshadow-color);
  z-index: -1;
  transition: box-shadow 0.3s ease;
}

.customer__image img {
  max-width: 550px;
  margin-inline: auto;
}

.customer__content {
  overflow: hidden;
}

.swiper {
  padding-top: 4rem;
  width: 100%;
}

.customer__card {
  padding: 1rem;
  border: 2px solid var(--customer-card-border);
  border-radius: 1rem;
  transition: border-color 0.3s ease;
  background-color: var(--card-bg);
}

.customer__card__header {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customer__card__header div {
  padding: 2px 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--customer-badge-color);
  background-color: var(--customer-badge-bg);
  border-radius: 1rem;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.customer__card__header span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.customer__card p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  font-style: italic;
}

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

.customer__card__footer img {
  max-width: 70px;
  border-radius: 100%;
  border: 8px solid var(--card-bg);
  box-shadow: 0 0 20px var(--boxshadow-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.customer__card__footer > div {
  padding-left: 1rem;
  border-left: 2px solid var(--primary-color);
}

.customer__card__footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.customer__card__footer h5 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.customer__rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.customer__rating span {
  color: goldenrod;
}

.customer__swiper__controls {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.customer__swiper__controls .btn {
  padding: 5px 1.5rem;
  font-size: 1.5rem;
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.customer__swiper__controls .btn:hover {
  color: var(--white);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

footer {
  background-color: #fcfaf3;
  border-top: 1px solid #ece7dd;
  color: #232323;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

.footer-col {
  flex: 1 1 200px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand {
  max-width: 320px;
  gap: 1.2rem;
}
.footer-logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}
.footer-contact {
  font-size: 0.98rem;
  color: #232323;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-contact-label {
  font-weight: 600;
  color: #b96f1e;
  margin-right: 0.3em;
}
.footer-contact-item a {
  color: #b96f1e;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: #ff6b35;
}

.footer-links-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #b96f1e;
  margin-bottom: 0.7rem;
  margin-top: 0.7rem;
}
.footer-links-col ul {
  padding: 0;
  margin: 0 0 0.5rem 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-links-col ul li a {
  color: #232323;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-links-col ul li a:hover {
  color: #ff6b35;
}

.footer-support {
  max-width: 340px;
  background: #f7f3ea;
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 18px 0 rgba(200,150,80,0.04);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.footer-support-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b96f1e;
  margin-bottom: 0.2rem;
}
.footer-support-phone {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ff6b35;
}
.footer-support-icon {
  font-size: 1.3em;
  color: #b96f1e;
  background: #fff8f0;
  border-radius: 50%;
  padding: 0.3em;
  margin-right: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-support-number {
  font-family: 'Poppins', Arial, sans-serif;
}
.footer-support-text {
  font-size: 0.96rem;
  color: #555;
  line-height: 1.5;
  margin-top: 0.2em;
}

.footer__bar {
  padding: 1.3rem 1rem 1.1rem;
  color: #b96f1e;
  background: #fcfaf3;
  text-align: center;
  border-top: 1px solid #ece7dd;
  font-size: 1rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2.5rem 1.2rem 1.2rem;
  }
  .footer-col {
    min-width: 180px;
  }
  .footer-support {
    max-width: 100%;
    padding: 1rem 1.1rem;
  }
}
@media (max-width: 767px) {
  .footer-main {
    flex-direction: column;
    gap: 2.2rem;
    padding: 2rem 0.7rem 1rem;
  }
  .footer-col {
    min-width: 0;
    width: 100%;
    gap: 0.7rem;
  }
  .footer-support {
    width: 100%;
    margin-top: 1.2rem;
    border-radius: 12px;
    padding: 0.9rem 0.7rem;
  }
}

/* Dark mode styles */
[data-theme="dark"] footer {
  background: #181511;
  color: #f6ecd7;
  border-top: 1px solid #2a2115;
}
[data-theme="dark"] .footer-main {
  background: #181511;
}
[data-theme="dark"] .footer-col {
  color: #f6ecd7;
}
[data-theme="dark"] .footer-brand .footer-contact-label,
[data-theme="dark"] .footer-links-col h4,
[data-theme="dark"] .footer-support-title {
  color: #ffb46a;
}
[data-theme="dark"] .footer-contact-item,
[data-theme="dark"] .footer-contact-item a,
[data-theme="dark"] .footer-links-col ul li a,
[data-theme="dark"] .footer-support-number {
  color: #ffb46a;
}
[data-theme="dark"] .footer-links-col ul li a:hover {
  color: #ff6b35;
}
[data-theme="dark"] .footer-support {
  background: #23201c;
  box-shadow: 0 2px 18px 0 rgba(120,80,30,0.08);
}
[data-theme="dark"] .footer-support-text {
  color: #e0d3c2;
}
[data-theme="dark"] .footer__bar {
  background: #181511;
  color: #ffb46a;
  border-top: 1px solid #2a2115;
}


.footer__container {
  display: grid;
  gap: 2rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1rem 2rem;
}

.footer__logo img {
  margin-bottom: 1rem;
  max-width: 50px;
}

.footer__col p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75rem;
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__links {
  display: grid;
  gap: 1rem;
}

.footer__links a {
  font-weight: 500;
  color: var(--text-light);
}

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

.footer__bar {
  padding: 2rem 1rem;
  color: var(--text-light);
  text-align: center;
  border-top: 2px solid var(--footer-border);
  transition: color 0.3s ease, border-color 0.3s ease;
  background-color: var(--extra-light);
}

@media (width > 540px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 1rem 2rem;
  }
}

@media (max-width: 767px) {
  .nav__btns .store-name {
    display: none !important;
  }
}

@media (width > 320px) and (max-width: 575px) {
  body {
    overflow-x: hidden;
  }
  
  .header__container {
    margin-top: 80px;
  }

  .mobile-store-name {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--white) !important;
    background-color: rgba(216, 113, 38, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .mobile-store-name .store-icon {
    font-size: 1.2rem;
    margin-top: 4px;
    color: var(--primary-color);
  }

  .mobile-store-name:hover {
    background-color: rgba(216, 113, 38, 0.3);
  }

  .section__container {
    padding: 3rem 1rem;
  }
  
  .section__header {
    font-size: 1.8rem;
  }
  
  .header__content h1 {
    font-size: 2.5rem;
    line-height: 3rem;
    margin-top: 1rem;
  }
  
  .header__btns {
    flex-direction: column;
    width: 100%;
  }
  
  .header__btns .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .header__flex {
    flex-direction: column;
  }

  .header__card {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .menu__card {
    padding: 1.5rem;
    border-radius: 5rem 4rem 1.5rem 1.5rem;
  }

  .menu__card img {
    max-width: 150px;
  }

  .service__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .service__card {
    padding: 1.5rem;
    border-radius: 5rem 4rem 2.5rem 2.5rem;
  }

  .banner__image img {
    max-width: 100%;
    border-radius: 3rem 1.5rem 3rem 1.5rem;
  }

  .customer__image img {
    max-width: 100%;
  }

  .customer__card {
    padding: 1rem 0.75rem;
  }

  .customer__card p {
    font-size: 1rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (width >= 576px) {
  .header__container {
    margin-top: 0;
  }
  
  .header__content h1 {
    font-size: 3rem;
    line-height: 4rem;
  }
  
  .section__header {
    font-size: 2.2rem;
  }
  
  .header__btns {
    flex-direction: row;
  }
  
  .header__btns .btn {
    width: auto;
  }
  
  .header__flex {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .customer__card {
    padding: 1.25rem;
  }
  
  .customer__card p {
    font-size: 1.1rem;
  }
  
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (width >= 768px) {
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding: 5rem 2rem 3rem;
    max-width: var(--max-width);
  }

  nav {
    position: static;
    padding: 2rem 1rem;
    max-width: var(--max-width);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav__header {
    flex: 1;
    padding: 0;
    background-color: transparent;
  }

  .nav__logo .logo-white {
    display: none;
  }

  .nav__logo .logo-dark {
    display: flex;
    max-width: 120px;
  }
  
  .footer__logo .logo-white {
    display: none;
  }
  
  .footer__logo .logo-dark {
    display: flex;
    max-width: 120px;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    width: fit-content;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none !important;
  }

  .nav__links a {
    color: var(--text-dark);
  }

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

  .mobile-login-btn {
    display: block !important;
    margin-top: 1rem;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color) !important;
  }

  .mobile-login-btn:hover {
    background-color: var(--primary-color-dark) !important;
    color: var(--white) !important;
    border-color: var(--primary-color-dark) !important;
  }

  .nav__btns {
    position: static;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
  }

  .nav__btns .btn {
    display: block;
    padding: 4px 10px;
    font-size: 1.5rem;
    color: var(--text-dark);
    background-color: transparent;
    border-radius: 100%;
    border: none;
  }

  .nav__btns .btn:hover {
    box-shadow: 0 0 20px rgba(216, 113, 38, 0.3);
  }

  .nav__btns .login-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 500;
    color: var(--white) !important;
    background-color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 5px 20px 5px 20px !important;
    transition: 0.3s;
  }

  .nav__btns .login-btn:hover {
    background-color: var(--primary-color-dark) !important;
    color: var(--white) !important;
    border-color: var(--primary-color-dark) !important;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1) !important;
  }

  .mobile-login-btn,
  .mobile-store-name {
    display: none !important;
  }
  
  .nav__btns .store-name {
    display: flex !important;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
  }

  .nav__btns .store-name span {
    margin-bottom: 2px;
  }

  .nav__btns .store-name .store-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
  }

  .nav__btns .store-name:hover {
    color: var(--primary-color);
    background-color: rgba(216, 113, 38, 0.1);
    transform: translateY(-1px);
  }
  
  .section__header {
    font-size: 2.5rem;
  }
  
  .header__content h1 {
    font-size: 4.5rem;
    line-height: 5.5rem;
  }


  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .header__content {
    grid-area: 1/1/2/2;
  }

  .header__top {
    margin-inline-start: unset;
  }

  .header__container :is(h1, p) {
    text-align: left;
  }

  .header__btns,
  .header__flex {
    justify-content: flex-start;
  }

  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__content {
    grid-area: 1/1/2/2;
  }

  .customer__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .customer__card {
    padding: 1.5rem;
  }

  .footer__container {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer__col:nth-child(4) {
    grid-column: 1 / -1;
  }
}



/* Large devices (desktops, laptops) */
@media (width > 1024px) {
  .customer__card {
    padding: 2rem;
  }
  
  .section__container {
    padding: 5rem 1rem;
  }
  
  .header__content h1 {
    font-size: 5.5rem;
    line-height: 7rem;
  }
  
  .section__header {
    font-size: 2.5rem;
  }
  
  /* Enhance hover states for desktop users */
  .menu__card:hover,
  .service__card:hover,
  .customer__card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
}

/* Extra large devices */
@media (width > 1400px) {
  .section__container {
    padding: 6rem 1rem;
  }
  
  .header__container {
    padding: 8rem 1rem 6rem;
  }
  
  .max-width {
    max-width: 1400px;
  }
}

/* PWA Install Button Styles */
.install-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d87126, #a85518);
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 113, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.install-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 113, 38, 0.4);
  background: linear-gradient(135deg, #a85518, #d87126);
}

.install-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(216, 113, 38, 0.3);
}

.install-btn i {
  font-size: 1rem;
}

.install-btn span {
  font-weight: 600;
}

/* Footer responsive layout */
.footer-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
  padding: 2rem 1rem;
}

@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-section {
    flex: 1;
    min-width: 0;
  }
}

/* Mobile install button styling */
.mobile-install-btn {
  width: 100%;
  justify-content: center;
  margin: 0.5rem 0;
  background: linear-gradient(135deg, #d87126, #a85518);
  border-radius: 8px;
}

.mobile-install-btn:hover {
  background: linear-gradient(135deg, #a85518, #d87126);
}

/* Dark theme adjustments for install button */
[data-theme="dark"] .install-btn {
  box-shadow: 0 4px 15px rgba(216, 113, 38, 0.4);
}

[data-theme="dark"] .install-btn:hover {
  box-shadow: 0 6px 20px rgba(216, 113, 38, 0.5);
}

/* Responsive adjustments */
@media (width < 768px) {
  .install-btn {
    display: none !important;
  }
  
  .mobile-install-btn {
    display: block;
  }
}

@media (width >= 768px) {
  .mobile-install-btn {
    display: none !important;
  }
}

/* Enhanced Banner Section Styles */
.enhanced-banner-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--extra-light) 0%, var(--white) 100%);
}

[data-theme="dark"] .enhanced-banner-section {
  background: linear-gradient(135deg, var(--extra-light) 0%, var(--white) 100%);
}

.enhanced-banner-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.enhanced-banner-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  box-shadow: 0 15px 35px var(--boxshadow-lighter-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card-bg);
}

.enhanced-banner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px var(--boxshadow-light-color);
}

.banner-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.enhanced-banner-card:hover .banner-image {
  transform: scale(1.05);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.promo-overlay {
  background: linear-gradient(135deg, rgba(216, 113, 38, 0.8) 0%, rgba(168, 85, 24, 0.9) 100%);
}

/* Product Banner Styles */
.product-banner .banner-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.wishlist-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.new-product-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.banner-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.product-banner .banner-content {
  padding: 30px 25px;
  text-align: center;
  color: white;
}

.product-code {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.product-description {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.4;
}

.shop-now-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 113, 38, 0.4);
}

/* Promo Banner Styles */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
}

.promo-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.promo-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.promo-description {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 25px;
  line-height: 1.5;
}

.learn-more-btn {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .enhanced-banner-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
  }
  
  .enhanced-banner-card {
    height: 400px;
  }
}

@media (max-width: 992px) {
  .enhanced-banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .enhanced-banner-card {
    height: 350px;
  }
  
  .promo-title {
    font-size: 1.6rem;
  }
}

/* Brand/Partners Section Styles */
.section-b-space {
  padding: 80px 0;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
  overflow: hidden;
}

.brand-slider {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: brandScrolling 25s linear infinite;
  width: calc(200% + 6rem); /* Double width plus gaps */
  cursor: grab;
  user-select: none;
}

.brand-slider:active {
  cursor: grabbing;
}

.brand-slider.dragging {
  animation-play-state: paused;
}

.brand-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--boxshadow-lighter-color) 0px 6px 20px;
  transition: all 0.4s ease;
  min-width: 180px;
  min-height: 120px;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.brand-image:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--boxshadow-light-color) 0px 12px 32px;
  animation-play-state: paused; /* Pause scrolling on hover */
}

.brand-image img {
  max-width: 140px;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(50%) opacity(0.8);
  transition: all 0.4s ease;
}

.brand-image:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* Seamless infinite scrolling animation */
@keyframes brandScrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move exactly half the width for seamless loop */
  }
}

/* Responsive adjustments for brand section */
@media (max-width: 1200px) {
  .brand-slider {
    gap: 2.5rem;
  }
  
  .brand-image {
    min-width: 160px;
    min-height: 110px;
    padding: 1.8rem;
  }
  
  .brand-image img {
    max-width: 120px;
    max-height: 80px;
  }
}

@media (max-width: 992px) {
  .section-b-space {
    padding: 70px 0;
  }
  
  .brand-slider {
    gap: 2rem;
  }
  
  .brand-image {
    min-width: 140px;
    min-height: 100px;
    padding: 1.5rem;
  }
  
  .brand-image img {
    max-width: 100px;
    max-height: 70px;
  }
}

@media (max-width: 768px) {
  .section-b-space {
    padding: 60px 0;
  }
  
  .brand-slider {
    gap: 1.5rem;
  }
  
  .brand-image {
    min-width: 120px;
    min-height: 85px;
    padding: 1.2rem;
  }
  
  .brand-image img {
    max-width: 85px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .section-b-space {
    padding: 50px 0;
  }
  
  .brand-slider {
    gap: 1rem;
  }
  
  .brand-image {
    min-width: 100px;
    min-height: 75px;
    padding: 1rem;
  }
  
  .brand-image img {
    max-width: 70px;
    max-height: 50px;
  }
}

/* Dark theme adjustments for brand section */
[data-theme="dark"] .brand-image {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .brand-image img {
  filter: grayscale(100%) opacity(0.6) brightness(1.2);
}

[data-theme="dark"] .brand-image:hover img {
  filter: grayscale(0%) opacity(1) brightness(1);
}

/* Facebook-Style Testimonials Section */
.facebook-testimonials-section {
  padding: 80px 0;
  background-color: var(--background-color);
  transition: background-color 0.3s ease;
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.facebook-comments-container {
  max-width: 100%;
}

.facebook-comment {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}

.facebook-comment:nth-child(2) {
  animation-delay: 0.2s;
}

.facebook-comment:nth-child(3) {
  animation-delay: 0.4s;
}

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

.comment-avatar {
  position: relative;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  transition: border-color 0.3s ease;
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background-color: #42b883;
  border: 2px solid var(--card-bg);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 184, 131, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(66, 184, 131, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(66, 184, 131, 0);
  }
}

.comment-content {
  flex: 1;
  min-width: 0;
}

.comment-bubble {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: var(--boxshadow-lighter-color) 0px 2px 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.comment-bubble:hover {
  box-shadow: var(--boxshadow-light-color) 0px 4px 16px;
  transform: translateY(-1px);
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.commenter-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.comment-time {
  font-size: 0.75rem;
  color: var(--text-light);
  opacity: 0.8;
}

.comment-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0 0 12px 0;
  word-wrap: break-word;
}

.comment-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.action-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: var(--extra-light);
  color: var(--text-dark);
}

.action-btn i {
  font-size: 0.9rem;
}

.like-btn.active {
  color: #1877f2;
}

.like-btn.active:hover {
  background: rgba(24, 119, 242, 0.1);
}

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

.share-btn:hover {
  color: #42b883;
}

.load-more-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.load-more-btn {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}

.load-more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--boxshadow-light-color) 0px 6px 20px;
}

.comments-count {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

/* Dark theme adjustments for Facebook testimonials */
[data-theme="dark"] .facebook-testimonials-section {
  background-color: var(--background-color);
}

[data-theme="dark"] .comment-bubble {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-theme="dark"] .action-btn:hover {
  background: var(--extra-light);
}

[data-theme="dark"] .load-more-btn {
  background: var(--card-bg);
  border-color: var(--border-color);
  color: var(--text-dark);
}

[data-theme="dark"] .load-more-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

/* Responsive adjustments for Facebook testimonials */
@media (max-width: 768px) {
  .facebook-testimonials-section {
    padding: 60px 0;
  }
  
  .facebook-comment {
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .comment-avatar img {
    width: 36px;
    height: 36px;
  }
  
  .online-indicator {
    width: 10px;
    height: 10px;
    bottom: 1px;
    right: 1px;
  }
  
  .comment-bubble {
    padding: 10px 14px;
  }
  
  .commenter-name {
    font-size: 0.85rem;
  }
  
  .comment-text {
    font-size: 0.9rem;
  }
  
  .comment-actions {
    gap: 12px;
  }
  
  .action-btn {
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .facebook-testimonials-section {
    padding: 50px 0;
  }
  
  .testimonials-header {
    margin-bottom: 2rem;
  }
  
  .facebook-comment {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .comment-avatar img {
    width: 32px;
    height: 32px;
  }
  
  .comment-bubble {
    padding: 8px 12px;
    border-radius: 16px;
  }
  
  .comment-text {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .load-more-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile-only poster section adjustments - very targeted */
@media (max-width: 768px) {
  /* Add top margin to poster section to account for fixed nav */
  .poster-section-6 {
    margin-top: 70px;
  }
  
  /* Make left side content more readable on mobile */
  .left-side-contain {
    left: 2%;
    max-width: 90%;
  }
  
  .banner-left {
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
  }
  
  .banner-left h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    color: white;
  }
  
  .banner-left h4 {
    font-size: 1rem;
    color: white;
  }
  
  .banner-left h2 {
    font-size: 1.4rem;
    color: white;
  }
  
  .banner-left p {
    color: white;
    font-size: 0.9rem;
  }
  
  /* Hide right side social links on mobile to reduce clutter */
  .right-side-contain {
    display: none;
  }
  
  /* Make slider nav smaller and more mobile-friendly */
  .slider-nav {
    bottom: 2%;
  }
  
  .slider-nav .poster-img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .poster-section-6 {
    margin-top: 60px;
  }
  
  .banner-left h1 {
    font-size: 1.5rem;
  }
  
  .banner-left h4 {
    font-size: 0.9rem;
  }
  
  .banner-left h2 {
    font-size: 1.2rem;
  }
  
  .slider-nav .poster-img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 768px) {
  .enhanced-banner-section {
    padding: 60px 0;
  }
  
  .enhanced-banner-card {
    height: 300px;
  }
  
  .product-code {
    font-size: 1.6rem;
  }
  
  .promo-title {
    font-size: 1.4rem;
  }
  
  .banner-badges {
    top: 15px;
    right: 15px;
  }
  
  .wishlist-btn {
    width: 40px;
    height: 40px;
  }
}

/* Enhanced Video Section Styles */
.enhanced-video {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px var(--boxshadow-lighter-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.enhanced-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
  z-index: 1;
}

.enhanced-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 80px var(--boxshadow-light-color);
}

.enhanced-video .video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--boxshadow-lighter-color);
  background: #000;
}

.enhanced-video .video-wrapper iframe {
  border-radius: 16px;
  transition: all 0.3s ease;
}

.enhanced-video .video-info {
  padding: 1.5rem 0;
}

.enhanced-video .video-title {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.enhanced-video .video-meta {
  margin-bottom: 2rem;
}

.enhanced-video .meta-item {
  background: var(--extra-light);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.enhanced-video .meta-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.enhanced-video .meta-item i {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.enhanced-video .meta-item:hover i {
  color: white;
}

.enhanced-video .btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border: none;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(216, 113, 38, 0.3);
}

.enhanced-video .btn-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(216, 113, 38, 0.4);
  background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color));
}

/* Video Section Title Enhancement */
.video-section .title h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.video-section .title h5 {
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.video-section .title p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Adjustments for Enhanced Video */
@media (max-width: 768px) {
  .enhanced-video {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .enhanced-video .video-wrapper {
    border-radius: 12px;
  }
  
  .enhanced-video .video-wrapper iframe {
    height: 350px !important;
    border-radius: 12px;
  }
  
  .enhanced-video .video-title {
    font-size: 1.5rem;
  }
  
  .enhanced-video .video-meta {
    flex-direction: column;
    gap: 0.8rem !important;
    align-items: center !important;
  }
  
  .enhanced-video .meta-item {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
  
  .enhanced-video .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .video-section .title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .enhanced-video .video-wrapper iframe {
    height: 280px !important;
  }
  
  .enhanced-video .video-title {
    font-size: 1.3rem;
  }
  
  .video-section .title h2 {
    font-size: 1.8rem;
  }
}

