@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES — BRAND COLORS
   Logo has: red (#C60505), dark grey text (#373435)
   We use those as primary brand colors
============================================= */
:root {
  --brand-red: #C60505;
  --brand-red-light: #e8100f;
  --brand-red-pale: #fff1f1;
  --brand-dark: #1a1a1a;
  --brand-grey: #373435;

  --bg-white: #ffffff;
  --bg-off: #f8f9fc;
  --bg-section: #f3f4f8;

  --text-dark: #1a1a1a;
  --text-medium: #4a4a5a;
  --text-light: #888899;

  --border: #e5e7ef;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 30px rgba(198, 5, 5, 0.25);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1240px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* =============================================
   UTILITIES
============================================= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red-pale);
  color: var(--brand-red);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.section-header-center { text-align: center; display: flex; flex-direction: column; align-items: center; }
.section-header-center .section-sub { margin: 0 auto; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--brand-red-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(198,5,5,0.35);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}
.btn-outline:hover {
  background: var(--brand-red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--brand-red);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--brand-red-pale);
  transform: translateY(-2px);
}

.btn i { font-size: 0.9rem; transition: transform var(--transition); }
.btn:hover i { transform: translateX(3px); }

/* =============================================
   NAVIGATION
============================================= */
.topbar {
  background: var(--brand-dark);
  padding: 8px 0;
  font-size: 0.82rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left a, .topbar-right a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left a:hover, .topbar-right a:hover { color: #fff; }

.topbar-left {
  display: flex;
  gap: 24px;
}
.topbar-right {
  display: flex;
  gap: 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

/* Restrict navigation to standard centered grid container */
/* .header .container {
  max-width: 100%;
  padding: 0 32px;
} */

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.nav-item {
  position: relative;
  white-space: nowrap;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 8px 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--brand-red);
  background: var(--brand-red-pale);
}

.nav-link i {
  font-size: 0.62rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item:hover .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.dropdown-link:hover {
  background: var(--brand-red-pale);
  color: var(--brand-red);
  padding-left: 18px;
}

.dropdown-link i {
  color: var(--brand-red);
  width: 16px;
  text-align: center;
}

.nav-cta {
  margin-left: 10px;
  flex-shrink: 0;
  padding: 10px 18px;
  font-size: 0.82rem;
}

/* Mobile menu elements hidden on desktop */
.mobile-close,
.mobile-drawer-header,
.mobile-drawer-footer {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #fff 60%, var(--bg-section) 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,5,5,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red-pale);
  border: 1px solid rgba(198,5,5,0.15);
  color: var(--brand-red);
  padding: 6px 16px 6px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 26px;
  height: 26px;
  background: var(--brand-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--brand-red);
  position: relative;
}

.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-red);
  opacity: 0.15;
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

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

.stat-item {}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
  margin-bottom: 4px;
}

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

/* Hero Image stack */
.hero-visual {
  position: relative;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.hero-card-1 {
  bottom: 40px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float1 4s ease-in-out infinite;
}

.hero-card-2 {
  top: 40px;
  right: -30px;
  animation: float2 5s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-red-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.star-row {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.75rem;
  margin-top: 4px;
}

/* =============================================
   WHY CHOOSE US / FEATURES STRIP
============================================= */
.features-strip {
  background: var(--brand-dark);
  padding: 60px 0;
}

.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.feature-strip-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background var(--transition);
}

.feature-strip-item:last-child { border-right: none; }

.feature-strip-item:hover {
  background: rgba(255,255,255,0.03);
}

.feature-strip-icon {
  width: 50px;
  height: 50px;
  background: rgba(198,5,5,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.feature-strip-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-strip-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* =============================================
   GRAPHIC DESIGN SERVICES
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

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

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

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

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

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-card-img-overlay { opacity: 1; }

.service-card-img-overlay a {
  background: #fff;
  color: var(--brand-red);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transform: scale(0.8);
  transition: transform var(--transition);
}

.service-card:hover .service-card-img-overlay a { transform: scale(1); }

.service-card-body {
  padding: 24px;
}

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
  transition: color var(--transition);
}

.service-card:hover .service-card-title { color: var(--brand-red); }

.service-card-desc {
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-red);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap var(--transition);
}

.service-card:hover .service-card-link { gap: 10px; }

/* =============================================
   WEB DESIGNING SECTION (Split)
============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.web-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}

.web-service-item {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition);
}

.web-service-item:hover {
  background: var(--brand-red-pale);
  border-color: rgba(198,5,5,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.web-service-item i {
  color: var(--brand-red);
  font-size: 1.3rem;
  margin-bottom: 10px;
  display: block;
}

.web-service-item h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.web-service-item p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.split-visual {
  position: relative;
}

.split-visual-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-visual-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.split-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--brand-red);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-red);
}

.split-badge .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.split-badge p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}

.checklist {
  margin: 20px 0 30px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--text-medium);
}

.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--brand-red);
  font-size: 0.75rem;
  background: var(--brand-red-pale);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   DIGITAL MARKETING
============================================= */
.dm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.dm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.dm-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.dm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.dm-card:hover::after { transform: scaleX(1); }

.dm-icon {
  width: 70px;
  height: 70px;
  background: var(--brand-red-pale);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand-red);
  font-size: 1.6rem;
  transition: all var(--transition);
}

.dm-card:hover .dm-icon {
  background: var(--brand-red);
  color: #fff;
  border-radius: 50%;
}

.dm-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.dm-card p {
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* =============================================
   QUOTE FORM SECTION
============================================= */
.quote-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #2d1515 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198,5,5,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.quote-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198,5,5,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.quote-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.quote-info p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-point {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.quote-point i {
  width: 30px;
  height: 30px;
  background: rgba(198,5,5,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.quote-form-box {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.quote-form-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--text-dark);
}

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

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--brand-red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(198,5,5,0.07);
}

.form-control::placeholder { color: var(--text-light); }

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

.btn-block { width: 100%; justify-content: center; }

/* =============================================
   DOMAIN & HOSTING
============================================= */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.hosting-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.hosting-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.hosting-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hosting-card:hover .hosting-card-img img { transform: scale(1.06); }

.hosting-card-body {
  padding: 24px;
}

.hosting-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.hosting-card-body p {
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* =============================================
   CLIENTS MARQUEE
============================================= */
.clients-section {
  background: var(--bg-section);
  padding: 70px 0;
}

.clients-marquee {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}

.clients-marquee::before,
.clients-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
}

.clients-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-section), transparent);
}

.clients-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-section), transparent);
}

.clients-track {
  display: flex;
  gap: 40px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.clients-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.client-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* =============================================
   CTA BANNER
============================================= */
.cta-banner {
  background: var(--brand-red);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
  position: relative;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: var(--brand-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { margin-bottom: 20px; }
.footer-logo img { height: 50px; }

.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
}

.social-link:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 6px;
}

.footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.footer-links a:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
}

.footer-contact-item i {
  color: var(--brand-red);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* =============================================
   WHATSAPP FLOAT
============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: waBounce 2s ease-in-out infinite;
}

@keyframes waBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.whatsapp-float:hover {
  background: #20b85a;
  color: #fff;
  transform: scale(1.15);
  animation: none;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =============================================
   INNER PAGES STYLES
============================================= */
.inner-page-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-off) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.inner-page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}
.inner-page-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(198, 5, 5, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.inner-hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.inner-page-title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}
.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  background: var(--bg-white);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-top: 4px;
}
.breadcrumbs a {
  transition: var(--transition);
  color: var(--text-light);
}
.breadcrumbs a:hover {
  color: var(--brand-red);
}
.breadcrumbs-separator {
  font-size: 0.7rem;
  color: var(--border);
}
.breadcrumbs-current {
  color: var(--brand-red);
  font-weight: 600;
}

/* 2-Column Grid Layout for Subpages */
.inner-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 56px;
}
.inner-main-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.inner-featured-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
  background: transparent;
  margin-bottom: 24px;
}
.inner-featured-img::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--brand-red);
  border-radius: var(--radius-md);
  z-index: -1;
  transition: var(--transition);
}
.inner-featured-img:hover::before {
  top: 8px;
  left: -8px;
  border-color: var(--brand-dark);
}
.inner-featured-img img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.inner-featured-img:hover img {
  transform: translateY(-4px);
}
.inner-article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 16px;
}
.inner-article-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 2px;
}
.inner-article-body {
  color: var(--text-medium);
  font-size: 1.08rem;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.inner-article-body p strong {
  color: var(--text-dark);
}
.inner-article-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 24px;
}
.inner-article-body h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 16px;
}
.inner-article-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 4px;
  margin: 10px 0;
}
.inner-article-body ul li {
  position: relative;
  padding-left: 28px;
}
.inner-article-body ul li::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--brand-red);
  font-size: 1.1rem;
  transition: var(--transition);
}
.inner-article-body ul li:hover::before {
  transform: translateX(4px);
  color: var(--brand-dark);
}

/* Benefit Cards Layout */
.fancybox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 16px;
}
.fancy-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-off) 100%);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.fancy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--brand-red);
  transition: var(--transition);
}
.fancy-card:hover::before {
  height: 100%;
}
.fancy-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 5, 5, 0.2);
}
.fancy-card-icon {
  background: var(--brand-red-pale);
  color: var(--brand-red);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.fancy-card:hover .fancy-card-icon {
  background: var(--brand-red);
  color: #fff;
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-red);
}
.fancy-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.fancy-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* Sidebar Styles */
.sidebar-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-self: start;
}
.sidebar-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.sidebar-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-light));
}
.sidebar-box:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 5, 5, 0.15);
}
.sidebar-box-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
}
.sidebar-box .form-control {
  background: var(--bg-off);
  border-color: var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.92rem;
  transition: var(--transition);
}
.sidebar-box .form-control:focus {
  background: #ffffff;
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(198, 5, 5, 0.08);
}

/* Accordion FAQ Styling */
.accordion-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.accordion-item.active {
  border-color: var(--brand-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.accordion-header {
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  transition: var(--transition);
}
.accordion-header:hover {
  background: var(--bg-off);
}
.accordion-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  padding-right: 16px;
  transition: var(--transition);
}
.accordion-item.active .accordion-header h4 {
  color: var(--brand-red);
}
.accordion-icon {
  background: var(--bg-off);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 0.8rem;
  border: 1px solid var(--border);
}
.accordion-header:hover .accordion-icon {
  color: var(--brand-red);
  border-color: rgba(198, 5, 5, 0.2);
  background: var(--brand-red-pale);
}
.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
  box-shadow: var(--shadow-red);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 28px;
}
.accordion-item.active .accordion-content {
  border-top: 1px solid var(--border);
  background: var(--bg-off);
}
.accordion-content p {
  color: var(--text-medium);
  font-size: 0.98rem;
  margin: 0;
  padding: 20px 0;
  line-height: 1.7;
}

/* Gallery & Video layout for subpages */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.photo-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--bg-white);
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.photo-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.photo-card:hover .photo-card-img img {
  transform: scale(1.08);
}
.photo-card-body {
  padding: 20px;
}
.photo-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.photo-card-body p {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.video-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 30px;
}
.video-container video {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
}
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 30px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   RESPONSIVE — FULLY COMPREHENSIVE
============================================= */

/* ── Large desktop only: hide Photography & Videography text is ok at this size ── */

/* ── Tablet landscape (≤1200px) — start compressing ── */
@media (max-width: 1200px) {
  .header .container { padding: 0 24px; }
  .nav-link { padding: 8px 8px; font-size: 0.78rem; }
  .nav-cta { padding: 9px 14px; font-size: 0.78rem; }
  .logo img { height: 44px; }
}

/* ── Tablet landscape (≤1100px) ── */
@media (max-width: 1100px) {
  .hero-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split-section { gap: 48px; }
  /* Hide less-critical nav items to prevent overflow */
  .nav-hide-md { display: none !important; }
}

/* ── Tablet portrait (≤1024px) — Switch to hamburger ── */
@media (max-width: 1024px) {
  /* Topbar */
  .topbar { display: none; }

  /* Nav — switch to hamburger */
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero { padding: 60px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-stats { gap: 28px; }

  /* Features strip */
  .features-strip { padding: 48px 0; }
  .features-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .feature-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* Services grids */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .dm-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hosting-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Split sections */
  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Reverse the order so image comes second on tablet too */
  .split-visual { order: -1; }
  .split-visual-img img { height: 340px; }
  .split-badge { bottom: -16px; left: -10px; padding: 16px 20px; }

  /* Web services list */
  .web-services-list { grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }

  /* Quote section */
  .quote-grid { grid-template-columns: 1fr; gap: 40px; }
  .quote-form-box { padding: 32px 28px; }

  /* Section padding */
  .section-pad { padding: 80px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 60px 0 0; }
}

/* Call Float Button */
.call-float {
  position: fixed;
  bottom: 104px;
  right: 30px;
  background: var(--brand-red);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 9999;
  box-shadow: var(--shadow-red);
  transition: all var(--transition);
  animation: callBounce 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes callBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.call-float:hover {
  background: var(--brand-red-light);
  color: #fff;
  transform: scale(1.15);
  animation: none;
}

/* Auto-Open Consultation Popup Modal */
.popup-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.popup-modal.active {
  opacity: 1;
  pointer-events: all;
}

.popup-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.popup-modal-card {
  position: relative;
  background: #ffffff;
  width: 92%;
  max-width: 480px;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.popup-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-red), var(--brand-red-light));
}

.popup-modal.active .popup-modal-card {
  transform: scale(1);
}

.popup-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--brand-red-pale);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1rem;
}

.popup-modal-close:hover {
  background: var(--brand-red);
  color: #fff;
  transform: rotate(90deg);
}

.popup-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 850;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.popup-desc {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}
.menu-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── Mobile (≤1024px) ── */
@media (max-width: 1024px) {
  .header {
    z-index: 9999;
  }

  /* Navigation — hamburger menu / offcanvas slide */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 90vw;
    height: 100vh;
    background: #fff;
    padding: 24px 24px 32px;
    z-index: 9999;
    overflow-y: auto;
    gap: 4px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }
  .nav-cta { display: none !important; }
  .menu-toggle { display: flex; }

  /* Restore nav-hide-md items inside the mobile overlay */
  .nav-links.mobile-open .nav-hide-md { display: block !important; }

  /* Open state */
  .nav-links.mobile-open {
    transform: translateX(0);
  }

  .nav-links .nav-item {
    width: 100%;
  }

  .nav-links .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: 8px;
    justify-content: space-between;
  }

  .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-off);
    margin-top: 4px;
    border-radius: 8px;
    display: none;
  }

  .nav-links .nav-item.open .dropdown {
    display: block;
  }
  .nav-links .nav-item.open .nav-link i {
    transform: rotate(180deg);
  }

  /* Mobile close button inside the drawer */
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10000;
    background: var(--brand-red-pale);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--brand-red);
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .mobile-close:hover {
    background: var(--brand-red);
    color: #fff;
    transform: rotate(90deg);
  }

  /* Mobile Drawer branding header and social/contact footer */
  .mobile-drawer-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .drawer-logo {
    display: block;
  }
  .drawer-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
  }
  .mobile-drawer-footer {
    width: 100%;
    margin-top: auto;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .drawer-socials-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.8px;
  }
  .drawer-socials {
    display: flex;
    gap: 12px;
  }
  .drawer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-off);
    border: 1px solid var(--border);
    color: var(--brand-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    font-size: 0.95rem;
  }
  .drawer-socials a:hover {
    background: var(--brand-red);
    color: #fff;
    border-color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(198, 5, 5, 0.2);
  }
  .drawer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-medium);
  }
  .drawer-contact-info a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition);
  }
  .drawer-contact-info a:hover {
    color: var(--brand-red);
  }
  .drawer-contact-info i {
    color: var(--brand-red);
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
  }

  /* Logo */
  .logo img { height: 44px; }

  /* Hero */
  .hero { padding: 48px 0 48px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.15; }
  .hero-desc { font-size: 1rem; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 36px; }
  .hero-btns .btn { justify-content: center; }
  .hero-tag { font-size: 0.75rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; padding-top: 24px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.8rem; }

  /* Features strip */
  .features-strip { padding: 40px 0; }
  .features-strip-grid { grid-template-columns: 1fr; }
  .feature-strip-item { border-bottom: 1px solid rgba(255,255,255,0.07); border-right: none; padding: 24px 20px; }
  .feature-strip-item:last-child { border-bottom: none; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card-img { height: 200px; }

  /* Web designing */
  .web-services-list { grid-template-columns: 1fr; gap: 12px; }
  .split-visual-img img { height: 260px; }
  .split-badge { padding: 14px 18px; }
  .split-badge .num { font-size: 1.5rem; }
  .checklist li { font-size: 0.88rem; }

  /* Digital marketing */
  .dm-grid { grid-template-columns: 1fr; gap: 20px; }
  .dm-card { padding: 28px 24px; }

  /* Quote / Contact */
  .quote-section { padding: 60px 0; }
  .quote-form-box { padding: 28px 20px; border-radius: 20px; }
  .quote-form-box h3 { font-size: 1.3rem; margin-bottom: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Hosting */
  .hosting-grid { grid-template-columns: 1fr; gap: 20px; }
  .hosting-card-img { height: 180px; }

  /* About grid (inline style overrides) */
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Clients marquee */
  .clients-section { padding: 50px 0; }

  /* CTA banner */
  .cta-banner { padding: 60px 0; }
  .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }

  /* Section padding */
  .section-pad { padding: 60px 0; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer { padding: 48px 0 0; }
  .footer-desc { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }

  /* WhatsApp */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; right: 20px; }

  /* Call Float Mobile */
  .call-float { width: 50px; height: 50px; font-size: 1.2rem; bottom: 82px; right: 20px; }

  /* Popup Modal Mobile */
  .popup-modal-card { padding: 32px 20px; width: 95%; }
  .popup-title { font-size: 1.35rem; }
  .popup-desc { margin-bottom: 16px; }

  /* General */
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .section-sub { font-size: 0.95rem; }
  .btn { padding: 13px 22px; font-size: 0.9rem; }
  .container { padding: 0 16px; }

  /* Subpage overrides */
  .inner-grid, .contact-layout-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .sidebar-sticky { position: static; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero { padding: 40px 0 40px; }
  .hero-title { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-stats { flex-direction: row; justify-content: space-between; width: 100%; }
  .stat-item { text-align: center; }

  .features-strip-grid { grid-template-columns: 1fr; }

  .quote-form-box { padding: 24px 16px; }

  .footer-grid { gap: 24px; }
  .footer-logo img { height: 40px; }

  /* Ensure all multi-column grids are single-column */
  .services-grid,
  .dm-grid,
  .hosting-grid,
  .web-services-list,
  .fancybox-grid,
  .form-row { grid-template-columns: 1fr !important; }

  .nav-inner { padding: 12px 0; }
  .logo img { height: 38px; }
}
