/*
Theme Name: Mubashira NK Portfolio - Digital Marketing Professional
Theme URI: https://mubashiradigital.in/
Author: Mubashira NK
Author URI: https://mubashiradigital.in/
Description: A premium, modern, responsive single-page Digital Marketing Professional portfolio WordPress theme for Mubashira NK. Features full Elementor Free compatibility, WordPress Live Customizer controls, and dynamic content management.
Version: 1.0.0
Tested up to: 6.7
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mubashira-portfolio
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready, portfolio, elementor
*/

/* --------------------------------------------------
   CSS VARIABLES & DESIGN TOKENS
   -------------------------------------------------- */
:root {
  --primary-purple: #150d43;
  --primary-purple-dark: #0d082c;
  --primary-purple-light: #241766;
  --primary-purple-subtle: rgba(21, 13, 67, 0.04);
  --primary-purple-tint: rgba(21, 13, 67, 0.08);

  --primary-red: #cc0101;
  --primary-red-hover: #a80101;
  --primary-red-light: rgba(204, 1, 1, 0.08);
  --primary-red-border: rgba(204, 1, 1, 0.25);

  --bg-white: #FFFFFF;
  --bg-light: #F7F7FA;
  --bg-subtle: #F0F1F6;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFDFF;

  --text-main: #150d43;
  --text-body: #3c385c;
  --text-muted: #6f6b8c;
  --text-light: #9b98b3;

  --border-light: #E6E7EE;
  --border-subtle: #EEF0F6;
  --border-focus: #150d43;

  --shadow-sm: 0 2px 8px rgba(21, 13, 67, 0.04);
  --shadow-md: 0 8px 24px rgba(21, 13, 67, 0.06);
  --shadow-lg: 0 16px 36px rgba(21, 13, 67, 0.09);
  --shadow-hover: 0 20px 40px rgba(21, 13, 67, 0.12);

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --header-height: 88px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------
   GLOBAL RESETS & BASE STYLES
   -------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* WordPress Admin Bar Compatibility */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

ul {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------
   LAYOUT CONTAINERS & SECTION UTILITIES
   -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.text-red {
  color: var(--primary-red) !important;
}

.text-green {
  color: #10b981 !important;
}

.mt-2 {
  margin-top: 8px;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid var(--primary-red-border);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary-red);
  margin: 20px auto 0;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------
   SCROLL PROGRESS BAR
   -------------------------------------------------- */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary-purple), var(--primary-red));
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* --------------------------------------------------
   BUTTONS
   -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-purple);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 13, 67, 0.2);
}

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

.btn-outline:hover {
  background-color: var(--primary-purple);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 13, 67, 0.15);
}

.btn-hero-primary {
  background-color: #FFFFFF;
  color: var(--primary-purple);
  border: 2px solid #FFFFFF;
  font-weight: 700;
}

.btn-hero-primary:hover {
  background-color: var(--primary-purple);
  color: #FFFFFF;
  border-color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
  background-color: rgba(21, 13, 67, 0.2);
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-weight: 700;
}

.btn-hero-secondary:hover {
  background-color: #FFFFFF;
  color: var(--primary-purple);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-header {
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-color: var(--border-light);
}

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

.btn-lg {
  padding: 14px 30px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------
   STICKY HEADER & PROPORTIONAL LOGO
   -------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-base);
}

.site-header.scrolled {
  height: 76px;
  box-shadow: 0 4px 20px rgba(21, 13, 67, 0.06);
}

.header-container {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo-img,
.custom-logo {
  height: 60px;
  width: auto;
  max-height: 60px;
  object-fit: contain;
  transition: transform var(--transition-fast), height var(--transition-base);
}

.site-header.scrolled .brand-logo-img,
.site-header.scrolled .custom-logo {
  height: 52px;
}

.brand-logo-img:hover,
.custom-logo:hover {
  transform: scale(1.02);
}

.desktop-nav {
  display: block;
}

.nav-list,
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link,
.desktop-nav ul li a {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-purple);
  position: relative;
  padding: 8px 0;
  display: block;
}

.nav-link::after,
.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-red);
  transition: width var(--transition-base);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active,
.desktop-nav ul li a:hover,
.desktop-nav ul li.current-menu-item a {
  color: var(--primary-red);
}

.nav-link:hover::after,
.nav-link.active::after,
.desktop-nav ul li a:hover::after,
.desktop-nav ul li.current-menu-item a::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle .bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--primary-purple);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* --------------------------------------------------
   MOBILE NAVIGATION DRAWER
   -------------------------------------------------- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-white);
  box-shadow: -10px 0 30px rgba(21, 13, 67, 0.15);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-base);
  padding: 24px;
}

.mobile-drawer.open {
  right: 0;
}

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

.mobile-drawer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.drawer-close-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-purple);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--bg-light);
}

.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 20px 0;
}

.mobile-nav-list,
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-link,
.mobile-nav ul li a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-link i,
.mobile-nav ul li a i {
  color: var(--primary-red);
  width: 20px;
  text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active,
.mobile-nav ul li a:hover {
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
}

.mobile-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(21, 13, 67, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------
   1. HERO SECTION (OFFICIAL BRAND RED #cc0101 UNIFORM BACKGROUND)
   -------------------------------------------------- */
.hero-section.hero-red-bg {
  padding-top: 80px;
  padding-bottom: 90px;
  background-color: var(--primary-red);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.eyebrow-hero-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 22px;
}

.pulse-white {
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  animation: pulse-ring-white 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring-white {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.hero-title-white {
  font-family: var(--font-heading);
  font-size: 3.85rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.hero-subheading-white {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.hero-subheading-white .sep {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.hero-text-white {
  font-size: 1.15rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.65;
  margin-bottom: 14px;
}

.hero-supporting-white {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-badges-white {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.quick-badge-item-white {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.quick-badge-item-white i {
  color: #FFFFFF;
}

/* --------------------------------------------------
   RIGHT-SIDE PORTFOLIO DASHBOARD (WHITE CARDS)
   -------------------------------------------------- */
.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.hero-dashboard-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dashboard-central-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.traffic-lights span:nth-child(1) { background-color: #ff5f56; }
.traffic-lights span:nth-child(2) { background-color: #ffbd2e; }
.traffic-lights span:nth-child(3) { background-color: #27c93f; }

.dashboard-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.dashboard-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.dashboard-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.metric-block {
  background-color: var(--bg-light);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.metric-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.metric-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 2px;
  line-height: 1.15;
}

.metric-subtext {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.portfolio-highlight-section {
  background-color: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 10px;
}

.portfolio-highlight-section.pt-subtle {
  margin-bottom: 0;
}

.highlight-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 6px;
}

.highlight-industry-tags {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.55;
}

.highlight-industry-tags span {
  font-weight: 600;
  color: var(--primary-purple);
}

.highlight-expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.highlight-expertise-pills span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-purple);
  background-color: #FFFFFF;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.dashboard-floating-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition-base);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.dashboard-floating-card:hover {
  transform: translateY(-3px);
}

.card-ranking {
  margin-bottom: 0;
}

.card-meta {
  margin-top: 0;
}

.floating-icon-box {
  width: 42px;
  height: 42px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.floating-icon-box.icon-red {
  background-color: var(--primary-red-light);
  color: var(--primary-red);
}

.floating-card-body {
  flex: 1;
}

.floating-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
}

.floating-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.floating-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.mini-tag-row {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.mini-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary-purple);
  background-color: var(--primary-purple-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

/* --------------------------------------------------
   2. QUICK HIGHLIGHTS SECTION
   -------------------------------------------------- */
.highlights-section {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.highlight-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.2);
}

.highlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-purple);
  line-height: 1;
}

.stat-badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.stat-icon {
  width: 42px;
  height: 42px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1.35;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.industry-tags {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

.industry-tags span {
  font-weight: 600;
  color: var(--primary-purple);
}

/* --------------------------------------------------
   3. ABOUT ME SECTION
   -------------------------------------------------- */
.about-section {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.about-card-narrative {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.bio-lead {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-purple);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bio-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-action-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

/* Skills Matrix Card */
.skills-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.skills-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.skills-icon-badge {
  width: 48px;
  height: 48px;
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.skills-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.skills-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.strengths-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.strength-item:hover {
  background-color: var(--bg-white);
  border-color: var(--primary-purple-tint);
  transform: translateX(4px);
}

.strength-bullet {
  width: 20px;
  height: 20px;
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.strength-info {
  display: flex;
  flex-direction: column;
}

.strength-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.strength-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------
   4. CORE AREAS OF EXPERTISE SECTION
   -------------------------------------------------- */
.expertise-section {
  background-color: var(--bg-light);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.expertise-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background-color: transparent;
  transition: background-color var(--transition-base);
  border-radius: 0 0 4px 4px;
}

.expertise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 13, 67, 0.15);
}

.expertise-card:hover::before {
  background-color: var(--primary-red);
}

.expertise-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.expertise-icon {
  width: 52px;
  height: 52px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.expertise-card:hover .expertise-icon {
  background-color: var(--primary-purple);
  color: var(--bg-white);
}

.card-num {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-light);
}

.expertise-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 12px;
  line-height: 1.35;
}

.expertise-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.expertise-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.expertise-pills span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--bg-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* --------------------------------------------------
   5. SEO PROJECTS SECTION
   -------------------------------------------------- */
.seo-projects-section {
  background-color: var(--bg-white);
}

.seo-intro-banner {
  background-color: var(--primary-purple-subtle);
  border: 1px solid var(--primary-purple-tint);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.intro-icon {
  font-size: 1.3rem;
  color: var(--primary-purple);
  flex-shrink: 0;
}

.seo-intro-banner p {
  font-size: 0.95rem;
  color: var(--primary-purple);
  font-weight: 500;
  line-height: 1.55;
}

.seo-projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.seo-project-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.seo-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.2);
}

.seo-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.project-idx {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-purple);
  background-color: var(--primary-purple-subtle);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-tags-group {
  display: flex;
  gap: 8px;
}

.tag-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.tag-seo {
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border: 1px solid var(--primary-purple-tint);
}

.tag-local {
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border: 1px solid var(--primary-red-border);
}

.tag-content {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.seo-card-body {
  flex: 1;
}

.project-client-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-purple);
  line-height: 1.25;
  margin-bottom: 8px;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.meta-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: var(--primary-red);
  width: 14px;
}

.keywords-box {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}

.keywords-box-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.keywords-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.keywords-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.keywords-list li i {
  color: var(--primary-red);
  font-size: 0.8rem;
}

.ranking-visibility-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.ranking-visibility-note i {
  color: #10b981;
}

.seo-card-footer {
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.btn-website-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-purple);
  transition: all var(--transition-fast);
}

.btn-website-link:hover {
  color: var(--primary-red);
  transform: translateX(3px);
}

/* --------------------------------------------------
   6. PAID CAMPAIGNS SECTION
   -------------------------------------------------- */
.paid-campaigns-section {
  background-color: var(--bg-light);
}

.campaign-capability-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.capability-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-purple);
  background-color: var(--bg-white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.capability-item i {
  color: var(--primary-red);
}

.featured-campaigns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.campaign-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
}

.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.2);
}

.campaign-card-large {
  grid-column: span 2;
  border-left: 4px solid var(--primary-red);
}

.campaign-badge-featured {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  align-self: flex-start;
}

.campaign-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.campaign-title-wrap {
  display: flex;
  flex-direction: column;
}

.campaign-industry {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.campaign-client-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-purple);
}

.campaign-org-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.campaign-type-pill {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-purple);
  background-color: var(--primary-purple-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.campaign-highlight-callout {
  background-color: var(--primary-red-light);
  border: 1px solid var(--primary-red-border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.campaign-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.detail-cell {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.detail-val {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.campaign-focus-section {
  margin-bottom: 20px;
}

.focus-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.focus-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  background-color: var(--bg-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.campaign-outcome-statement {
  background-color: var(--primary-purple-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
}

.quote-icon {
  color: var(--primary-red);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.campaign-outcome-statement p {
  font-size: 0.88rem;
  color: var(--primary-purple);
  font-weight: 500;
  line-height: 1.5;
}

/* WhatsApp Campaigns Row */
.whatsapp-campaigns-wrapper {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.whatsapp-section-header {
  margin-bottom: 28px;
}

.whatsapp-title-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.whatsapp-icon-lead {
  font-size: 2.2rem;
  color: #25D366;
}

.whatsapp-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-purple);
}

.whatsapp-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.whatsapp-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.whatsapp-card:hover {
  background-color: var(--bg-white);
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.whatsapp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.wa-industry {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.wa-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #25D366;
  background-color: rgba(37, 211, 102, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.wa-client-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 4px;
}

.wa-type {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.wa-outcome {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------
   7. SOCIAL MEDIA & CONTENT SECTION
   -------------------------------------------------- */
.social-media-section {
  background-color: var(--bg-white);
}

.social-intro-text-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.social-intro-text-card p {
  font-size: 1.02rem;
  color: var(--primary-purple);
  font-weight: 500;
}

.gallery-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

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

.filter-btn:hover {
  color: var(--primary-purple);
  border-color: var(--primary-purple-tint);
}

.filter-btn.active {
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(21, 13, 67, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gallery-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 13, 67, 0.2);
}

.gallery-visual-mockup {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-mockup-1 { background: linear-gradient(135deg, #241766 0%, #150d43 100%); }
.bg-mockup-2 { background: linear-gradient(135deg, #b80000 0%, #150d43 100%); }
.bg-mockup-3 { background: linear-gradient(135deg, #150d43 0%, #2f2073 100%); }
.bg-mockup-4 { background: linear-gradient(135deg, #37287b 0%, #cc0101 100%); }
.bg-mockup-5 { background: linear-gradient(135deg, #1f1454 0%, #0d082c 100%); }
.bg-mockup-6 { background: linear-gradient(135deg, #990000 0%, #150d43 100%); }

.mockup-overlay {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  background: rgba(21, 13, 67, 0.3);
  transition: background var(--transition-fast);
}

.gallery-card:hover .mockup-overlay {
  background: rgba(21, 13, 67, 0.65);
}

.mockup-tag {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.mockup-icon {
  font-size: 2.5rem;
  opacity: 0.8;
  transition: transform var(--transition-fast);
}

.play-btn-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.gallery-card:hover .mockup-icon {
  transform: scale(1.15);
  opacity: 1;
}

.mockup-zoom-hint {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-fast);
}

.gallery-card:hover .mockup-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-info {
  padding: 24px;
}

.gallery-category-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  margin-bottom: 6px;
}

.gallery-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1.3;
  margin-bottom: 8px;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------
   8. WORDPRESS & WEBSITE WORK SECTION
   -------------------------------------------------- */
.wordpress-section {
  background-color: var(--bg-light);
}

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

.wp-card-overview {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.wp-column-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-column-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.wp-capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wp-capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wp-bullet {
  width: 22px;
  height: 22px;
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp-capabilities-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--primary-purple);
}

.wp-capabilities-list p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* Browser Mockup Window */
.browser-mockup-window {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.browser-mockup-bar {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.browser-dots span:nth-child(1) { background-color: #ff5f56; }
.browser-dots span:nth-child(2) { background-color: #ffbd2e; }
.browser-dots span:nth-child(3) { background-color: #27c93f; }

.browser-address-bar {
  flex: 1;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-actions {
  color: var(--text-light);
  font-size: 0.8rem;
}

.browser-mockup-content {
  padding: 24px;
}

.mock-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.mock-logo {
  width: 100px;
  height: 16px;
  background-color: var(--primary-purple);
  border-radius: 4px;
}

.mock-links {
  display: flex;
  gap: 8px;
}

.mock-links span {
  width: 40px;
  height: 8px;
  background-color: var(--border-light);
  border-radius: 3px;
}

.mock-hero {
  margin-bottom: 24px;
}

.mock-badge {
  width: 70px;
  height: 12px;
  background-color: var(--primary-red-light);
  border-radius: 6px;
  margin-bottom: 10px;
}

.mock-heading {
  width: 80%;
  height: 20px;
  background-color: var(--primary-purple-subtle);
  border-radius: 4px;
  margin-bottom: 8px;
}

.mock-para {
  width: 100%;
  height: 10px;
  background-color: var(--border-subtle);
  border-radius: 3px;
  margin-bottom: 14px;
}

.mock-cta {
  width: 110px;
  height: 28px;
  background-color: var(--primary-purple);
  border-radius: var(--radius-sm);
}

.mock-elementor-panel {
  background-color: var(--bg-light);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.elementor-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: #92003b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-widgets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.mock-widget {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mock-widget i {
  color: var(--primary-purple);
  font-size: 0.9rem;
}

.mock-widget span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-main);
}

.mock-seo-inspector {
  background-color: var(--primary-purple-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
}

.inspector-header {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.inspector-checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.check-row {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------------------------
   9. PROFESSIONAL EXPERIENCE SECTION
   -------------------------------------------------- */
.experience-section {
  background-color: var(--bg-white);
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 27px;
  width: 3px;
  background-color: var(--border-light);
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background-color: var(--bg-white);
  border: 3px solid var(--primary-purple);
  color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg-white);
  transition: all var(--transition-fast);
}

.timeline-item:hover .timeline-marker {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  color: var(--bg-white);
  transform: scale(1.08);
}

.timeline-content-card {
  flex: 1;
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.timeline-content-card:hover {
  background-color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.15);
}

.timeline-role-header {
  margin-bottom: 18px;
}

.role-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-red);
  background-color: var(--primary-red-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
}

.role-badge-secondary {
  color: var(--primary-purple);
  background-color: var(--primary-purple-subtle);
}

.role-badge-neutral {
  color: #4b5563;
  background-color: #f3f4f6;
}

.timeline-role-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-purple);
  line-height: 1.25;
}

.timeline-company-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
}

.timeline-body {
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.timeline-resp-heading {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.responsibilities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.responsibilities-tags span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-purple);
  background-color: var(--bg-white);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

/* --------------------------------------------------
   10. TOOLS & PLATFORMS SECTION
   -------------------------------------------------- */
.tools-section {
  background-color: var(--bg-light);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.tool-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-fast);
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.2);
}

.tool-icon-wrap {
  width: 56px;
  height: 56px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: all var(--transition-fast);
}

.tool-card:hover .tool-icon-wrap {
  background-color: var(--primary-purple);
  color: var(--bg-white);
}

.tool-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 4px;
}

.tool-category {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.additional-tools-bar {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tool-pill-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pill-group-label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-right: 6px;
  min-width: 170px;
}

.pill-group-label i {
  color: var(--primary-red);
}

.tool-mini-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-body);
  background-color: var(--bg-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

/* --------------------------------------------------
   11. WHY MY PORTFOLIO STANDS OUT SECTION
   -------------------------------------------------- */
.why-portfolio-section {
  background-color: var(--bg-white);
}

.why-portfolio-narrative {
  max-width: 840px;
  margin: 0 auto 48px;
  text-align: center;
}

.why-portfolio-narrative p {
  font-size: 1.1rem;
  color: var(--primary-purple);
  line-height: 1.75;
  margin-bottom: 12px;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.why-card:hover {
  background-color: var(--bg-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 13, 67, 0.2);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------
   12. CONTACT SECTION (DUAL PHONE & RECRUITER FORM)
   -------------------------------------------------- */
.contact-section {
  background-color: var(--bg-light);
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.contact-main-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-profile-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 24px;
}

.profile-avatar-box {
  width: 56px;
  height: 56px;
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-purple);
}

.contact-role-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-red);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-item-primary {
  background-color: var(--primary-red-light);
  border: 1.5px solid var(--primary-red);
}

.contact-item-primary:hover {
  background-color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(204, 1, 1, 0.15);
  transform: translateX(3px);
}

.contact-item:hover {
  background-color: var(--bg-white);
  border-color: var(--primary-purple-tint);
  transform: translateX(3px);
}

.contact-item-secondary {
  background-color: var(--bg-light);
  border: 1px dashed var(--border-light);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-primary .contact-icon {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.icon-secondary {
  background-color: rgba(79, 70, 229, 0.1);
  color: #4f46e5;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item-primary .contact-label {
  color: var(--primary-red);
}

.contact-value {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.highlight-number {
  font-size: 1.15rem;
  color: var(--primary-purple);
}

.secondary-actions-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mini-wa {
  width: 34px;
  height: 34px;
  background-color: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.btn-mini-wa:hover {
  background-color: #25D366;
  color: #ffffff;
}

.btn-copy {
  background: transparent;
  border: none;
  color: var(--primary-purple);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-copy:hover {
  background-color: var(--primary-purple-subtle);
  color: var(--primary-red);
}

.contact-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.contact-message-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.message-box-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.msg-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-red-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.message-box-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.message-box-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-purple);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus {
  background-color: var(--bg-white);
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px var(--primary-purple-subtle);
}

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

/* --------------------------------------------------
   FOOTER
   -------------------------------------------------- */
.site-footer {
  background-color: var(--primary-purple-dark);
  color: #d1cfe2;
  padding-top: 70px;
  padding-bottom: 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-height: 64px;
  background-color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  display: inline-block;
  object-fit: contain;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-nav-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.footer-links-grid a {
  font-size: 0.9rem;
  color: #b5b2cf;
  transition: color var(--transition-fast);
}

.footer-links-grid a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-direct-phone,
.footer-direct-email {
  font-size: 0.92rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.footer-social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social-btn:hover {
  background-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.copyright-text {
  font-size: 0.85rem;
  color: #928eb3;
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.back-to-top-btn:hover {
  background-color: var(--primary-red);
}

/* --------------------------------------------------
   MODAL / LIGHTBOX
   -------------------------------------------------- */
.media-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(21, 13, 67, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.media-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-base);
}

.media-modal.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background-color: var(--bg-light);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  color: var(--primary-purple);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background-color: var(--primary-red);
  color: var(--bg-white);
}

.modal-body {
  padding: 36px 32px;
  text-align: center;
}

.modal-preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-preview-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary-purple-subtle);
  color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  background-color: var(--bg-light);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --------------------------------------------------
   TOAST NOTIFICATIONS
   -------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(21, 13, 67, 0.2);
  transform: translateY(20px);
  opacity: 0;
  animation: toast-in 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes toast-in {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS (1440px, 768px, 375px)
   -------------------------------------------------- */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }

  .hero-title-white {
    font-size: 4.2rem;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title-white {
    font-size: 3.2rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-projects-grid {
    grid-template-columns: 1fr;
  }

  .featured-campaigns-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card-large {
    grid-column: span 1;
  }

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

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

  .wordpress-grid {
    grid-template-columns: 1fr;
  }

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

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

  .contact-layout-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-section.hero-red-bg {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .brand-logo-img,
  .custom-logo {
    height: 48px;
  }

  .hero-title-white {
    font-size: 2.6rem;
  }

  .hero-subheading-white {
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-grid {
    grid-template-columns: 1fr;
  }

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

  .why-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-logo-img,
  .custom-logo {
    height: 44px;
  }

  .hero-title-white {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-badges-white {
    flex-direction: column;
    align-items: stretch;
  }

  .quick-badge-item-white {
    justify-content: center;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics-grid {
    grid-template-columns: 1fr;
  }

  .campaign-details-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}
