/* ==========================================================================
   Motor Speed Service Centre (M Speed) - Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --primary-dark: #111827;     /* Dark Navy / Gray-900 */
  --primary-charcoal: #1f2937; /* Gray-800 */
  --accent-orange: #f97316;    /* Primary Orange Accent */
  --accent-orange-hover: #ea580c;
  --accent-blue: #0046ad;      /* Liqui Moly Blue Style */
  --accent-blue-hover: #003280;
  --accent-red: #e30613;       /* Liqui Moly Red Style */
  --light-bg: #f8fafc;         /* Slate-50 Background */
  --white: #ffffff;
  --text-dark: #1f2937;
  --text-gray: #4b5563;        /* Slate-600 */
  --text-gray-light: #9ca3af;  /* Slate-400 */
  --border-color: #e2e8f0;     /* Slate-200 */
  
  /* Color Opacity Variants for Accents */
  --orange-light: rgba(249, 115, 22, 0.1);
  --blue-light: rgba(0, 70, 173, 0.1);
  --red-light: rgba(227, 6, 19, 0.1);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transition Speed */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing / Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-gray);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1.25rem;
}

p.lead {
  font-size: 1.15rem;
  color: var(--text-dark);
}

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

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

ul {
  list-style: none;
}

/* Helper Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.text-center {
  text-align: center;
}

.text-orange { color: var(--accent-orange); }
.text-blue { color: var(--accent-blue); }
.text-red { color: var(--accent-red); }
.text-white { color: var(--white); }

.bg-orange { background-color: var(--accent-orange); }
.bg-blue { background-color: var(--accent-blue); }
.bg-red { background-color: var(--accent-red); }
.bg-primary-dark { background-color: var(--primary-dark); }

.bg-orange-light { background-color: var(--orange-light); }
.bg-blue-light { background-color: var(--blue-light); }
.bg-red-light { background-color: var(--red-light); }

.shrink-0 { flex-shrink: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.p-8 { padding: 2rem; }
.w-full { width: 100%; }
.w-4 { width: 1rem; height: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; height: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; height: 1.5rem; }
.h-6 { height: 1.5rem; }
.inline-block { display: inline-block; }
.align-middle { vertical-align: middle; }
.block { display: block; }
.rounded { border-radius: var(--radius-md); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

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

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

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

.divider {
  color: var(--border-color);
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
}

.badge-orange {
  background-color: var(--orange-light);
  color: var(--accent-orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
}

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

.btn-outline {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   3. Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-left svg, .top-bar-right svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-orange);
}

.top-phone:hover {
  color: var(--accent-orange);
}

.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray-light);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.lang-btn:hover {
  color: var(--accent-orange);
  background-color: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
  color: var(--white);
  background-color: var(--accent-orange);
  font-weight: 600;
}


/* --------------------------------------------------------------------------
   4. Site Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Header state on scroll - smaller, styled */
.site-header.header-scrolled {
  height: 65px;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

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

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal);
}

.site-header.header-scrolled .header-logo {
  height: 42px;
}

/* Desktop Menu */
.desktop-nav ul {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary-dark);
  padding: 0.5rem 0.25rem;
  position: relative;
}

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

.nav-link:hover {
  color: var(--accent-orange);
}

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

.nav-link.active {
  color: var(--accent-orange);
  font-weight: 600;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
}

.hamburger-bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   5. Mobile Drawer Menu
   -------------------------------------------------------------------------- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 24, 39, 0.7);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--white);
  z-index: 102;
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.mobile-logo {
  height: 40px;
  width: auto;
}

.close-drawer {
  font-size: 2.2rem;
  background: transparent;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  line-height: 1;
  padding: 0 0.5rem;
}

.mobile-nav {
  margin-bottom: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary-dark);
  display: block;
  padding: 0.5rem 0;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--accent-orange);
}

.mobile-drawer-footer {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.mobile-lang-selector {
  margin-top: auto;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.mobile-lang-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-lang-buttons {
  display: flex;
  gap: 0.5rem;
}

.mobile-lang-btn {
  flex: 1;
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 0.5rem;
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-lang-btn:hover {
  background-color: var(--border-color);
}

.mobile-lang-btn.active {
  color: var(--white);
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
}


/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  max-width: 580px;
}

.hero-headline {
  font-size: 3rem;
  color: var(--primary-dark);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-buttons .btn-outline {
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.hero-buttons .btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* Hero Right Side - Image Wrapper */
.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-floating-card {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--accent-orange);
}

.card-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-content .card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.15rem;
}

.card-content .card-desc {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. About Section
   -------------------------------------------------------------------------- */
.about-section {
  position: relative;
}

.about-images {
  position: relative;
  height: 420px;
}

.main-about-img img {
  width: 85%;
  height: 350px;
  object-fit: cover;
}

.sub-about-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  border: 6px solid var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sub-about-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.features-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checklist-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.checklist-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.about-action {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
}

.author-title {
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   8. Services Section
   -------------------------------------------------------------------------- */
.section-header {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.section-desc {
  font-size: 1.1rem;
}

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

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--accent-orange);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.service-card:hover h3 {
  color: var(--accent-orange);
}

.service-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-choose-us-section {
  position: relative;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. Brands We Service
   -------------------------------------------------------------------------- */
.brands-section {
  border-bottom: 1px solid var(--border-color);
}

.sub-heading-small {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.brand-item {
  background-color: var(--light-bg);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-charcoal);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.brand-item:hover {
  background-color: var(--white);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  box-shadow: var(--shadow-sm);
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   11. Gallery Section
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.gallery-item-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all var(--transition-normal);
}

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

.gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-card:hover .gallery-thumbnail {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   12. Location Section
   -------------------------------------------------------------------------- */
.address-box {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
}

.address-item {
  display: flex;
  align-items: flex-start;
}

.address-item svg {
  margin-top: 0.2rem;
}

.address-item p {
  margin-bottom: 0;
  margin-top: 0.15rem;
}

.map-embed-wrapper {
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.map-embed-wrapper iframe {
  height: 100%;
  min-height: 400px;
  display: block;
}

/* --------------------------------------------------------------------------
   13. Contact Section
   -------------------------------------------------------------------------- */
.align-stretch {
  align-items: stretch;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.text-gray-light {
  color: var(--text-gray-light);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-text .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.detail-text .value {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.hover-orange:hover {
  color: var(--accent-orange);
}

.contact-social-bar a {
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid var(--accent-orange);
}

.contact-social-bar a:hover {
  color: var(--accent-orange);
  border-bottom-color: transparent;
}

/* Contact Form Card */
.contact-form-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

.gap-4 {
  gap: 1rem;
}

/* --------------------------------------------------------------------------
   14. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-dark);
  color: var(--text-gray-light);
  padding-top: 4rem;
  font-size: 0.9rem;
  border-top: 4px solid var(--accent-orange);
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-orange);
}

.footer-logo {
  height: 44px;
  width: auto;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
}

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

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 5px;
}

.footer-address {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-bottom {
  background-color: #0b0f19;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.copyright {
  margin-bottom: 0;
}

.credit {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   15. Back to Top Button
   -------------------------------------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: var(--accent-orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   16. Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 25, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(8px);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 80%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 4px solid var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  font-family: var(--font-heading);
  color: var(--white);
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--white);
  font-size: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--accent-orange);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-prev:hover, .lightbox-next:hover {
  background-color: var(--accent-orange);
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries
   -------------------------------------------------------------------------- */

/* Large screens (min-width: 992px) */
@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Medium screens (max-width: 991px) and Tablet */
@media (max-width: 991px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  
  .hero-headline {
    font-size: 2.5rem;
  }
  
  .hero-image {
    height: 380px;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .header-action {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small screens (max-width: 767px) and Mobile */
@media (max-width: 767px) {
  .top-bar-left {
    justify-content: center;
    width: 100%;
  }
  
  .top-bar-right {
    display: none;
  }
  
  .section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  
  .hero-headline {
    font-size: 2.1rem;
  }
  
  .hero-subheadline {
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .about-images {
    height: 300px;
  }
  
  .main-about-img img {
    height: 250px;
  }
  
  .sub-about-img img {
    height: 120px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .lightbox-prev, .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

/* --------------------------------------------------------------------------
   11. TikTok Video Gallery Page Custom Styles
   -------------------------------------------------------------------------- */
.videos-hero {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
}

.tiktok-profile-card {
  position: relative;
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-card-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(254, 44, 85, 0.15) 0%, rgba(37, 244, 238, 0.08) 50%, rgba(0,0,0,0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.profile-card-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  z-index: 2;
}

.profile-avatar-wrapper {
  position: relative;
}

.profile-avatar {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-full);
  background-color: var(--primary-charcoal);
  border: 4px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.tiktok-profile-card:hover .profile-avatar {
  transform: scale(1.05) rotate(5deg);
}

.tiktok-svg-logo {
  width: 50px;
  height: 50px;
  fill: var(--white);
  filter: drop-shadow(2px 0px 0px #fe2c55) drop-shadow(-2px 0px 0px #25f4ee);
}

.online-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  background-color: #25d366;
  border: 3px solid var(--primary-dark);
  border-radius: var(--radius-full);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.profile-info {
  flex: 1;
  min-width: 250px;
}

.badge-tiktok {
  background-color: rgba(254, 44, 85, 0.15);
  color: #fe2c55;
  border: 1px solid rgba(254, 44, 85, 0.3);
  margin-bottom: 0.75rem;
}

.profile-info h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.profile-title {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--accent-orange);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.profile-bio {
  color: var(--text-gray-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 550px;
}

.profile-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.profile-stats .stat-box {
  display: flex;
  flex-direction: column;
}

.profile-stats .stat-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
}

.profile-stats .stat-lbl {
  font-size: 0.8rem;
  color: var(--text-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.profile-cta {
  display: flex;
  align-items: center;
}

.btn-tiktok-follow {
  background-color: var(--white);
  color: var(--primary-dark);
  border: none;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(255,255,255,0.15);
}

.btn-tiktok-follow:hover {
  background-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
}

.btn-icon-svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Category Filter Bar */
.video-filters-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background-color: var(--light-bg);
  color: var(--text-gray);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.35rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  background-color: var(--white);
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

/* Video Grid and Cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card-item {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card-inner {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-orange);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card-inner:hover .video-card-thumb img {
  transform: scale(1.06);
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(17, 24, 27, 0.7) 0%, rgba(17, 24, 27, 0) 55%);
  z-index: 1;
}

.video-stats-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 500;
}

.video-stats-badge .views {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: rgba(17, 24, 27, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.video-stats-badge .duration {
  background-color: rgba(17, 24, 27, 0.6);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.video-play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 65px;
  height: 65px;
  background-color: rgba(249, 115, 22, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: all var(--transition-normal);
  box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
}

.video-card-inner:hover .video-play-btn-circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 0 0 12px rgba(249, 115, 22, 0);
  animation: play-pulse 2s infinite 0.4s;
}

@keyframes play-pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.video-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-card-category {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.video-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  color: var(--primary-dark);
}

.video-card-body p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 0;
  line-height: 1.45;
}

/* Video Lightbox Player Modal */
.video-lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.video-lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-lightbox-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1001;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-xl);
}

.video-lightbox-modal.active .video-lightbox-box {
  transform: translateY(0) scale(1);
}

.video-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  color: var(--text-gray-light);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1005;
  line-height: 1;
  transition: color var(--transition-fast);
}

.video-lightbox-close:hover {
  color: var(--accent-orange);
}

/* Mock Player Inner Styling */
.mock-player {
  display: flex;
  flex-direction: row;
  min-height: 480px;
}

.player-visual-area {
  position: relative;
  flex: 1.2;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}

.player-visual-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.player-loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid var(--accent-orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.player-overlay-play {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: rgba(249, 115, 22, 0.95);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast);
}

.player-visual-area:hover .player-overlay-play {
  transform: scale(1.08);
}

.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  padding: 2rem 1.25rem 1rem 1.25rem;
  z-index: 6;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.progress-bar-wrapper {
  height: 4px;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background-color: var(--accent-orange);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.controls-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 0.85rem;
}

.play-btn-control {
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
}

.play-btn-control:hover {
  color: var(--accent-orange);
}

.player-brand-overlay {
  margin-left: auto;
  font-weight: 700;
  letter-spacing: -0.01em;
  opacity: 0.8;
}

.player-details-area {
  flex: 0.8;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.player-details-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.video-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fe2c55;
  background-color: rgba(254, 44, 85, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.player-details-header h3 {
  font-size: 1.45rem;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.player-details-header .stats-row {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0;
}

.player-desc-text {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.55;
  margin-bottom: 2rem;
  flex: 1;
}

.btn-tiktok-watch {
  background-color: #fe2c55;
  color: var(--white);
  border: none;
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  justify-content: center;
}

.btn-tiktok-watch:hover {
  background-color: #e02247;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 44, 85, 0.3);
}

/* --------------------------------------------------------------------------
   12. Media Queries for Videos Page
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .mock-player {
    flex-direction: column;
  }
  
  .player-visual-area {
    aspect-ratio: 16 / 9;
    min-height: unset;
  }
  
  .player-details-area {
    padding: 2rem;
  }
  
  .tiktok-profile-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .tiktok-profile-card {
    padding: 1.5rem;
  }
  
  .profile-card-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .profile-avatar-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  
  .profile-stats {
    justify-content: center;
  }
  
  .profile-cta {
    width: 100%;
    justify-content: center;
  }
  
  .btn-tiktok-follow {
    width: 100%;
    justify-content: center;
  }
  
  .video-filters-wrapper {
    margin-bottom: 2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   13. Social Media Hub Page Custom Styles
   -------------------------------------------------------------------------- */
.socials-page-wrapper {
  background-color: var(--light-bg);
  min-height: 80vh;
}

.socials-hero {
  padding: 5rem 0 3rem 0;
  background-color: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.socials-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(0, 70, 173, 0.05) 50%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.socials-title {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.socials-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-gray-light);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.socials-grid-section {
  padding: 4rem 0;
}

.socials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition-normal);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  color: var(--text-gray);
  box-shadow: var(--shadow-sm);
}

.social-card .card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 80%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  z-index: 1;
}

.social-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.social-card:hover .card-glow {
  opacity: 1;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  transition: transform var(--transition-normal);
  z-index: 2;
}

.social-card:hover .social-icon {
  transform: scale(1.1) rotate(-5deg);
}

.svg-icon {
  width: 32px;
  height: 32px;
}

.social-card .card-content {
  flex: 1;
  z-index: 2;
}

.social-card .card-content h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.social-card .card-content .handle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent-orange);
  margin-bottom: 0.75rem;
}

.social-card .card-content .description {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.social-card .action-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  transition: color var(--transition-fast);
}

.social-card .action-btn .arrow {
  margin-left: 0.35rem;
  transition: transform var(--transition-fast);
}

.social-card:hover .action-btn {
  color: var(--accent-orange);
}

.social-card:hover .action-btn .arrow {
  transform: translateX(5px);
}

/* Card Brand Customizations */

/* TikTok */
.card-tiktok .social-icon {
  background-color: #010101;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.card-tiktok:hover {
  border-color: #fe2c55;
  box-shadow: 0 10px 30px rgba(254, 44, 85, 0.15), 0 0 1px 1px rgba(37, 244, 238, 0.1);
}
.card-tiktok .card-glow {
  background: radial-gradient(circle at 10% 10%, rgba(254, 44, 85, 0.08) 0%, rgba(37, 244, 238, 0.04) 50%, transparent 100%);
}
.card-tiktok:hover .handle {
  color: #fe2c55;
}

/* Facebook */
.card-facebook .social-icon {
  background-color: #1877f2;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.2);
}
.card-facebook:hover {
  border-color: #1877f2;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.15);
}
.card-facebook .card-glow {
  background: radial-gradient(circle at 10% 10%, rgba(24, 119, 242, 0.08) 0%, transparent 100%);
}
.card-facebook:hover .handle {
  color: #1877f2;
}

/* WhatsApp */
.card-whatsapp .social-icon {
  background-color: #25d366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}
.card-whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.15);
}
.card-whatsapp .card-glow {
  background: radial-gradient(circle at 10% 10%, rgba(37, 211, 102, 0.08) 0%, transparent 100%);
}
.card-whatsapp:hover .handle {
  color: #25d366;
}

/* Google Maps */
.card-googlemaps .social-icon {
  background-color: #ea4335;
  box-shadow: 0 4px 10px rgba(234, 67, 53, 0.2);
}
.card-googlemaps:hover {
  border-color: #ea4335;
  box-shadow: 0 10px 30px rgba(234, 67, 53, 0.15);
}
.card-googlemaps .card-glow {
  background: radial-gradient(circle at 10% 10%, rgba(234, 67, 53, 0.08) 0%, transparent 100%);
}
.card-googlemaps:hover .handle {
  color: #ea4335;
}

/* Social Callout Section */
.social-callout {
  padding: 5rem 0;
  text-align: center;
}

.social-callout h2 {
  margin-bottom: 0.5rem;
}

.social-callout p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

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

/* Responsive styles */
@media (max-width: 991px) {
  .socials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 767px) {
  .socials-title {
    font-size: 2.5rem;
  }
  
  .socials-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .socials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .social-card {
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .social-icon {
    margin-bottom: 0.5rem;
  }
}
