/* ========================================
   HARISH BAZAR – Homepage Styles
   Mobile-First Responsive Design
   ======================================== */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #FF7A00;
  --orange-dark: #E06800;
  --orange-light: #FFF3E6;
  --orange-glow: rgba(255, 122, 0, 0.15);
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --black: #0A0A0A;
  --green-whatsapp: #25D366;
  --red-youtube: #FF0000;
  --pink-instagram: #E1306C;
  --blue-call: #0070F3;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Utility ---------- */
.section {
  padding: 60px 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  text-align: center;
  max-width: 550px;
  margin: 0 auto 40px;
}

.accent {
  color: var(--orange);
}

/* ---------- Header / Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gray-900);
}

.nav__logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.nav__links {
  display: none;
  gap: 28px;
}

.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__links a:hover {
  color: var(--orange);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav__cta {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
}

.nav__hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-800);
  border-radius: 4px;
  transition: var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--orange);
}

.mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.82rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.45);
}

.btn--whatsapp {
  background: var(--green-whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn--call {
  background: var(--blue-call);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 112, 243, 0.3);
}

.btn--call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 112, 243, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.btn--outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--instagram {
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.btn--instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.45);
}

.btn--instagram svg {
  flex-shrink: 0;
}

.btn--youtube {
  background: var(--red-youtube);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.btn--youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.4);
}

.btn--youtube svg {
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: linear-gradient(160deg, var(--white) 0%, var(--orange-light) 50%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 122, 0, 0.15);
}

.hero__badge span {
  font-size: 0.75rem;
}

.hero__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 12px;
}

.hero__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.hero__image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  object-fit: cover;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---------- About ---------- */
.about {
  background: var(--white);
}

.about__grid {
  display: grid;
  gap: 40px;
}

.about__text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.about__highlight:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.about__highlight-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ---------- Why Choose ---------- */
.why-choose {
  background: var(--gray-50);
}

.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-choose__card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-choose__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}

.why-choose__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.why-choose__card:hover::before {
  transform: scaleY(1);
}

.why-choose__icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.why-choose__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.why-choose__card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---------- Categories ---------- */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--orange-light), rgba(255, 122, 0, 0.08));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition);
}

.category-card:hover .category-card__icon {
  transform: scale(1.1);
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
}

.category-card p {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Full width last card if odd */
.categories__grid .category-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* ---------- Special Offer ---------- */
.offer {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.offer::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.offer__content {
  position: relative;
  z-index: 2;
}

.offer__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--white);
}

.offer p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.offer__disclaimer {
  font-size: 0.72rem;
  opacity: 0.65;
  margin-top: 16px;
}

/* ---------- Map ---------- */
.map {
  background: var(--gray-50);
}

.map__wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.map__wrapper iframe {
  width: 100%;
  height: 320px;
  border: none;
}

/* ---------- Instagram Section ---------- */
.instagram-section {
  background: var(--white);
}

.instagram__embed {
  max-width: 700px;
  margin: 0 auto;
}

.instagram__profile-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.instagram__profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.instagram__avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instagram__avatar span {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gray-900);
}

.instagram__profile-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}

.instagram__profile-info p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.instagram__bio {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}

.instagram__stats-row {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.instagram__stat-item {
  text-align: center;
}

.instagram__stat-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.instagram__item {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
  display: block;
}

.instagram__item:hover {
  transform: scale(1.03);
}

.instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.instagram__item:hover .instagram__overlay {
  opacity: 1;
}

.instagram__overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.instagram__item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--orange-light), rgba(255, 122, 0, 0.05));
}

.instagram__cta {
  text-align: center;
  margin-top: 28px;
}

/* ---------- YouTube ---------- */
.youtube {
  background: var(--gray-50);
}

.youtube__grid {
  display: grid;
  gap: 20px;
}

.youtube__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.youtube__item iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

.youtube__cta {
  text-align: center;
  margin-top: 28px;
}

/* ---------- Branches ---------- */
.branches__grid {
  display: grid;
  gap: 20px;
}

.branch-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.branch-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}

.branch-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.branch-card__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.branch-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.branch-card__badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-left: 8px;
}

.branch-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 12px;
}

.branch-card__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.branch-card__info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.branch-card__info-item a {
  color: var(--orange);
  font-weight: 500;
  transition: color var(--transition);
}

.branch-card__info-item a:hover {
  color: var(--orange-dark);
}

.branch-card__info-item span:first-child {
  flex-shrink: 0;
}

.branch-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--gray-50);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq__item:hover {
  border-color: var(--orange);
}

.faq__item.active {
  border-color: var(--orange);
  box-shadow: 0 2px 12px rgba(255, 122, 0, 0.1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: left;
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--orange);
}

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  padding: 0 20px;
}

.faq__item.active .faq__answer {
  max-height: 400px;
  padding: 0 20px 20px;
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq__answer ul {
  margin-top: 12px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__answer ul li {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.faq__answer ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.faq__answer a {
  color: var(--orange);
  font-weight: 500;
  transition: color var(--transition);
}

.faq__answer a:hover {
  color: var(--orange-dark);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer__col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer__col ul li {
  margin-bottom: 10px;
}

.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__col ul li a:hover {
  color: var(--orange);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--gray-400);
}

.footer__contact-item span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__contact-item a:hover {
  color: var(--orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-400);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__social:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- WhatsApp Float (Bottom Right) ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--green-whatsapp);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 900;
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float svg {
  fill: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.12);
  }
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .hero__title {
    font-size: 2.8rem;
  }

  .hero__buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 2rem;
  }

  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .youtube__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .branches__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer h2 {
    font-size: 2.2rem;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }

  .nav__actions {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero__content {
    text-align: left;
    padding: 0;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__desc {
    margin: 0 0 32px;
  }

  .hero__buttons {
    justify-content: flex-start;
  }

  .hero__stats {
    justify-content: flex-start;
  }

  .hero__image-wrapper {
    margin-top: 0;
  }

  .container {
    padding: 0 40px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories__grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .instagram__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .branches__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .map__wrapper iframe {
    height: 400px;
  }

  .offer h2 {
    font-size: 2.5rem;
  }

  .faq__question {
    font-size: 1.02rem;
    padding: 20px 24px;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 3.6rem;
  }

  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}