/*
 * googleturkiye.com.tr - Google Partner Agency Custom Style
 * Corporate Google Brand Guidelines Design System
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');

/* Design Tokens */
:root {
  --google-blue: #4285F4;
  --google-red: #EA4335;
  --google-yellow: #FBBC05;
  --google-green: #34A853;
  
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-dark-navy: #1A1A2E;
  --bg-soft-blue: #E8F0FE;
  
  --text-dark: #202124;
  --text-gray: #5F6368;
  --text-light: #FFFFFF;
  
  --border-radius-btn: 24px;
  --border-radius-card: 12px;
  --border-radius-input: 8px;
  
  --box-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 8px 24px rgba(66, 133, 244, 0.12);
  --transition-default: all 200ms ease;
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* Global Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 600;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
}

h3 {
  font-size: 22px;
  line-height: 1.4;
}

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

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

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.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; }

/* Dynamic 4-Color Brand Stripe */
.brand-stripe {
  height: 4px;
  width: 100%;
  display: flex;
}

.brand-stripe span {
  height: 100%;
  flex: 1;
}

.stripe-blue { background-color: var(--google-blue); }
.stripe-red { background-color: var(--google-red); }
.stripe-yellow { background-color: var(--google-yellow); }
.stripe-green { background-color: var(--google-green); }

/* Header / Navigation */
header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.05);
  transition: var(--transition-default);
}

header.sticky-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

/* Logo with Partner badge side-by-side */
.header-logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-main {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-main span {
  color: var(--google-blue);
}

.logo-partner-badge {
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  border: 1px solid #E0E0E0;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo-partner-badge .partner-google {
  color: #4285F4;
  margin-right: 3px;
}
.logo-partner-badge .partner-text {
  color: var(--text-gray);
  font-weight: 500;
}
.logo-partner-badge .partner-status {
  color: #34A853;
  margin-left: 3px;
}

.logo-partner-badge svg {
  height: 12px;
  margin-right: 4px;
}

/* Navigation Menu */
nav.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  position: relative;
  padding: 8px 0;
}

nav.nav-menu a:hover, 
nav.nav-menu a.active {
  color: var(--google-blue);
}

nav.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--google-blue);
  transition: var(--transition-default);
}

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

/* Primary Header Action */
.header-actions {
  display: flex;
  align-items: center;
}

/* General Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-btn);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-default);
}

.btn-primary {
  background-color: var(--google-blue);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: #3367D6;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--google-blue);
  color: var(--google-blue);
}

.btn-secondary:hover {
  background-color: rgba(66, 133, 244, 0.05);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Hamburger mobile button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  position: absolute;
  left: 0;
  transition: var(--transition-default);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-default);
}

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

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-drawer a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.mobile-nav-drawer a:hover {
  color: var(--google-blue);
  padding-left: 8px;
}

/* Page Section Layout */
section {
  padding: 100px 24px;
}

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

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

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-gray);
}

/* Hero Section */
section.hero {
  padding-top: 160px;
  padding-bottom: 100px;
  background-color: var(--bg-light);
  position: relative;
  overflow: hidden;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--google-blue);
}

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

/* Hero eyebrow label */
.hero-eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--google-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-green));
  border-radius: 2px;
}

/* Hero animated rotator */
.hero-rotator {
  position: relative;
  height: 76px;
  overflow: hidden;
  margin-bottom: 28px;
  width: 100%;
}

.rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  /* Added elasticity / spring effect */
  transition: opacity 0.4s ease-out, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--text-dark);
}

.rotator-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotator-word .material-symbols-outlined {
  font-size: 50px;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}

.rotator-word:nth-child(1) { color: var(--google-red); }
.rotator-word:nth-child(2) { color: #F9AB00; }
.rotator-word:nth-child(3) { color: var(--google-green); }
.rotator-word:nth-child(4) { color: var(--google-blue); }

.hero-content p.hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Interactive Dashboard Mockup */
.hero-mockup {
  position: relative;
  width: 100%;
}

.dashboard-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}

.dashboard-header {
  background-color: #F1F3F4;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E0E0E0;
}

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

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #BDC1C6;
}

.dash-dots span:nth-child(1) { background-color: var(--google-red); }
.dash-dots span:nth-child(2) { background-color: var(--google-yellow); }
.dash-dots span:nth-child(3) { background-color: var(--google-green); }

.dash-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-title span.indicator {
  width: 6px;
  height: 6px;
  background-color: var(--google-green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.dashboard-body {
  padding: 20px;
}

.dash-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.dash-stat-box {
  background-color: var(--bg-light);
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.02);
}

.dash-stat-label {
  font-size: 11px;
  color: var(--text-gray);
  margin-bottom: 4px;
}

.dash-stat-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.dash-stat-trend {
  font-size: 10px;
  font-weight: 500;
  color: var(--google-green);
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
}

.dash-stat-trend.negative {
  color: var(--google-red);
}

/* Interactive SVG Graph */
.dash-graph-container {
  height: 140px;
  width: 100%;
  margin-bottom: 16px;
  position: relative;
}

.dash-graph-container svg {
  width: 100%;
  height: 100%;
}

.svg-path-ctr {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 2.5s ease forwards infinite alternate;
}

.svg-path-conv {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawChart 2.5s ease 0.5s forwards infinite alternate;
}

/* Campaign List Mockup */
.dash-campaigns {
  border-top: 1px solid #F1F3F4;
  padding-top: 16px;
}

.dash-camp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 12px;
}

.camp-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.camp-color {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.camp-bar-outer {
  width: 80px;
  height: 6px;
  background-color: #E8EAED;
  border-radius: 3px;
  overflow: hidden;
}

.camp-bar-inner {
  height: 100%;
  background-color: var(--google-blue);
  border-radius: 3px;
  width: 0;
  animation: growBar 2s ease forwards infinite alternate;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes growBar {
  to { width: var(--w); }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 32px 24px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-soft);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition-default);
}

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

.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 26px;
  background-color: rgba(66, 133, 244, 0.08);
}

.service-card:nth-child(1) .service-icon-box { color: var(--google-blue); background-color: rgba(66, 133, 244, 0.08); }
.service-card:nth-child(2) .service-icon-box { color: var(--google-red); background-color: rgba(234, 67, 53, 0.08); }
.service-card:nth-child(3) .service-icon-box { color: var(--google-yellow); background-color: rgba(251, 188, 5, 0.08); }
.service-card:nth-child(4) .service-icon-box { color: var(--google-red); background-color: rgba(234, 67, 53, 0.08); }
.service-card:nth-child(5) .service-icon-box { color: var(--google-green); background-color: rgba(52, 168, 83, 0.08); }

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: auto;
  line-height: 1.5;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--google-blue);
}

.service-link span.material-symbols-outlined {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-link span.material-symbols-outlined {
  transform: translateX(4px);
}

/* Stats Bar */
section.stats-bar {
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
  padding: 60px 24px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--google-blue);
}

.stat-item:nth-child(2) .stat-number { color: var(--google-red); }
.stat-item:nth-child(3) .stat-number { color: var(--google-yellow); }
.stat-item:nth-child(4) .stat-number { color: var(--google-green); }

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* How We Work Section */
.flow-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 20px;
  margin-top: 40px;
}

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--bg-soft-blue);
  color: var(--google-blue);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 2px solid var(--bg-white);
  box-shadow: var(--box-shadow-soft);
  z-index: 2;
  position: relative;
  transition: var(--transition-default);
}

.flow-step:hover .step-num {
  background-color: var(--google-blue);
  color: var(--text-light);
  transform: scale(1.1);
}

.flow-step:nth-child(2):hover .step-num { background-color: var(--google-red); }
.flow-step:nth-child(3):hover .step-num { background-color: var(--google-yellow); }
.flow-step:nth-child(4):hover .step-num { background-color: var(--google-green); }

.flow-step h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.flow-step p {
  font-size: 14px;
  color: var(--text-gray);
  max-width: 220px;
}

/* Step Connector Line */
.flow-connector {
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
  z-index: 1;
  opacity: 0.4;
}

/* Why Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 40px 32px;
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-soft);
  border-left: 4px solid var(--google-blue);
  height: 100%;
}

.why-card:nth-child(2) { border-left-color: var(--google-red); }
.why-card:nth-child(3) { border-left-color: var(--google-green); }

.why-icon {
  font-size: 32px;
  color: var(--google-blue);
  margin-bottom: 20px;
}

.why-card:nth-child(2) .why-icon { color: var(--google-red); }
.why-card:nth-child(3) .why-icon { color: var(--google-green); }

.why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Success Stories Slider */
.slider-outer {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-inner {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  padding: 10px;
}

.slide-content {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-card);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--box-shadow-soft);
}

.slide-details {
  display: flex;
  flex-direction: column;
}

.slide-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  background-color: var(--bg-soft-blue);
  color: var(--google-blue);
  font-size: 12px;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.slide-details h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.slide-details p.quote {
  font-size: 15px;
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}

.slide-details p.quote::before {
  content: '“';
  font-size: 40px;
  position: absolute;
  top: -20px;
  left: -20px;
  color: rgba(66, 133, 244, 0.1);
  font-family: serif;
}

.slide-client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--google-blue);
  box-shadow: var(--box-shadow-soft);
}

.client-name-group {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-size: 14px;
  font-weight: 600;
}

.client-position {
  font-size: 12px;
  color: var(--text-gray);
}

.slide-metrics {
  background-color: var(--bg-white);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-label {
  font-size: 13px;
  color: var(--text-gray);
}

.metric-value {
  font-size: 18px;
  font-weight: 700;
}

.metric-value.positive {
  color: var(--google-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Slider Navigation Controls */
.slider-ctrls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
}

.slider-btn:hover {
  background-color: var(--google-blue);
  color: var(--text-light);
  border-color: var(--google-blue);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E0E0E0;
  cursor: pointer;
  transition: var(--transition-default);
}

.slider-dot.active {
  background-color: var(--google-blue);
  width: 24px;
  border-radius: 4px;
}

/* Blog / Resources Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-image {
  height: 180px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.blog-card:nth-child(1) .blog-image { background-image: linear-gradient(135deg, #E8F0FE, #D2E3FC); }
.blog-card:nth-child(2) .blog-image { background-image: linear-gradient(135deg, #FCE8E6, #FAD2CF); }
.blog-card:nth-child(3) .blog-image { background-image: linear-gradient(135deg, #E6F4EA, #CEEAD6); }

.blog-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 10px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: var(--box-shadow-soft);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}

.blog-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--google-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-link span {
  font-size: 16px;
  transition: transform 0.2s ease;
}

.blog-card:hover .blog-link span {
  transform: translateX(4px);
}

/* Contact / Analysis Form */
section.contact {
  background: linear-gradient(180deg, var(--bg-soft-blue) 0%, var(--bg-white) 100%);
  padding: 100px 24px;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-title h2 {
  margin-bottom: 16px;
}

.contact-info-title p {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 480px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  box-shadow: var(--box-shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--google-blue);
  font-size: 20px;
  flex-shrink: 0;
}

.info-text-group {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-size: 12px;
  color: var(--text-gray);
}

.info-val {
  font-size: 15px;
  font-weight: 500;
}

/* Contact Form UI */
.contact-form-box {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.02);
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DADCE0;
  border-radius: var(--border-radius-input);
  background-color: var(--bg-white);
  font-size: 14px;
  color: var(--text-dark);
  transition: var(--transition-default);
}

.form-input:focus {
  border-color: var(--google-blue);
  box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.15);
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%235F6368' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

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

.form-btn {
  width: 100%;
  margin-top: 10px;
  border-radius: var(--border-radius-btn);
  display: inline-flex;
  gap: 8px;
}

.form-success-msg {
  display: none;
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--border-radius-input);
  background-color: rgba(52, 168, 83, 0.1);
  border: 1px solid var(--google-green);
  color: #137333;
  font-size: 14px;
  text-align: center;
  animation: pulseSuccess 0.3s ease;
}

@keyframes pulseSuccess {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Footer Section */
footer {
  background-color: var(--bg-light);
  padding: 80px 24px 0;
  border-top: 1px solid #E0E0E0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h4 {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-gray);
}

.footer-links a:hover {
  color: var(--google-blue);
  padding-left: 4px;
}

/* Footer Google Partner Badge */
.footer-badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-box {
  border: 1px solid #DADCE0;
  border-radius: 8px;
  padding: 16px;
  background-color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--box-shadow-soft);
  max-width: 260px;
}

.badge-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text-container {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 13px;
  font-weight: 700;
  color: #202124;
}

.badge-subtitle {
  font-size: 10px;
  color: var(--google-blue);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.badge-year {
  font-size: 9px;
  color: var(--text-gray);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #E0E0E0;
  padding: 24px 0 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-gray);
}

/* ==========================================
 * Inner Pages Common Elements
 * ========================================== */

.inner-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, var(--bg-soft-blue) 0%, var(--bg-light) 100%);
  border-bottom: 1px solid #E8EAED;
  position: relative;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs span.separator {
  color: #BDC1C6;
}

.breadcrumbs a:hover {
  color: var(--google-blue);
}

.inner-hero h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.inner-hero p.tagline {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 800px;
}

.inner-page-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.inner-main-content {
  background-color: var(--bg-white);
}

.inner-main-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 16px;
}

.inner-main-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 28px;
  background-color: var(--google-blue);
  border-radius: 2px;
}

.inner-main-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
}

.inner-main-content p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.7;
}

.inner-main-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inner-main-content li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Service Highlights Table */
.highlight-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: var(--box-shadow-soft);
  border-radius: var(--border-radius-card);
  overflow: hidden;
}

.highlight-table th, .highlight-table td {
  padding: 14px 20px;
  text-align: left;
}

.highlight-table th {
  background-color: var(--bg-dark-navy);
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
}

.highlight-table tr {
  border-bottom: 1px solid #E8EAED;
}

.highlight-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.highlight-table td {
  font-size: 14px;
}

/* Sidebar Box Styles */
.inner-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius-card);
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.03);
  box-shadow: var(--box-shadow-soft);
}

.sidebar-card-blue {
  background-color: var(--bg-soft-blue);
  border-left: 4px solid var(--google-blue);
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.sidebar-list li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-list li span.material-symbols-outlined {
  color: var(--google-green);
  font-size: 18px;
}

/* Blog Article Content */
.blog-article-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E8EAED;
}

.blog-article-image-box {
  width: 100%;
  height: 320px;
  border-radius: var(--border-radius-card);
  margin-bottom: 30px;
  background-size: cover;
  background-position: center;
}

.blog-article-quote {
  background-color: var(--bg-light);
  border-left: 4px solid var(--google-blue);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
  font-size: 16px;
  border-radius: 0 var(--border-radius-card) var(--border-radius-card) 0;
}

/* Hero Animated Rotator Title */
.hero-animated-title {
  display: flex;
  flex-direction: column;
}

.hero-animated-title span:first-child {
  font-size: 20px;
  font-weight: 500;
  color: var(--google-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.hero-rotator {
  position: relative;
  display: inline-block;
  height: 60px;
  width: 100%;
  overflow: hidden;
  vertical-align: top;
  margin-top: 4px;
}

.rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.rotator-word.active {
  opacity: 1;
  transform: translateY(0);
}

.rotator-word .material-symbols-outlined {
  font-size: 42px;
}

.rotator-word:nth-child(1) { color: var(--google-blue); }
.rotator-word:nth-child(2) { color: var(--google-red); }
.rotator-word:nth-child(3) { color: var(--google-green); }

@media (max-width: 1200px) {
  .hero-rotator { height: 52px; }
  .rotator-word .material-symbols-outlined { font-size: 36px; }
}

@media (max-width: 992px) {
  .rotator-word { left: 50%; transform: translate(-50%, 20px); }
  .rotator-word.active { transform: translate(-50%, 0); }
}

@media (max-width: 576px) {
  .hero-rotator { height: 42px; }
  .rotator-word .material-symbols-outlined { font-size: 28px; }
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  h1 { font-size: 42px; }
  .hero-grid { gap: 40px; }
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  section { padding: 80px 24px; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content p.hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  section.hero::before {
    width: 100%;
    height: 4px;
    bottom: 0;
    top: auto;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .flow-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .flow-connector {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .slide-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav.nav-menu, .header-actions .btn-sm {
    display: none;
  }
  .hamburger {
    display: block;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  section { padding: 60px 16px; }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sector-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--box-shadow-soft);
  overflow: hidden;
  transition: var(--transition-default);
  border-top: 4px solid transparent;
}
.sector-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-top-color: var(--google-blue);
}
.sector-img-wrapper {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.sector-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sector-card:hover .sector-img-wrapper img {
  transform: scale(1.05);
}
.sector-content {
  padding: 24px;
}
.sector-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.sector-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}
@media (max-width: 992px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Display Ad Preview (Hero Right Side) */
.hero-ad-preview {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #d4edda;
  border-radius: 50%;
  z-index: 1;
}

.preview-content {
  position: relative;
  z-index: 2;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -20px;
}

.preview-badge-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -16px;
  z-index: 3;
}

.preview-icon-circle {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  color: #1e8e3e;
}

.preview-pill {
  background-color: #1e8e3e;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(30, 142, 62, 0.3);
  text-align: center;
  line-height: 1.2;
}

.preview-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
  position: relative;
}

.preview-card-img-wrap {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
}

.preview-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-info-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: white;
  color: #4285F4;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  font-weight: 700;
}

.preview-card-content {
  padding: 24px;
}

.preview-card-title {
  color: #1e8e3e;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.preview-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.preview-card-subtitle {
  color: #5f6368;
  font-size: 14px;
}

.preview-action-btn {
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #1e8e3e;
}


/* =========================================
   216+ AGENCY STYLES (NEW DESIGN)
   ========================================= */

.agency-mode {
    background-color: #fafafa;
    color: #333;
}

.agency-hero {
    position: relative;
    padding: 140px 0 100px 0;
    overflow: hidden;
    background: #0a0a0a;
    color: white;
}

.agency-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.glow-1 {
    top: -10%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(234,67,53,0.4) 0%, rgba(0,0,0,0) 70%);
}

.glow-2 {
    bottom: -10%; right: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(66,133,244,0.4) 0%, rgba(0,0,0,0) 70%);
}

.agency-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ddd;
    backdrop-filter: blur(4px);
}

.gradient-text {
    background: linear-gradient(90deg, #FF6B6B, #4285F4, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white !important;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background-color: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-pulse {
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) translateX(-50%);
    transition: all 0.3s ease;
    z-index: 9999;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(-50%);
}

.dropdown-menu a {
    display: block;
    padding: 14px 28px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #111;
}

/* Agency Services Grid */
.agency-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.agency-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.agency-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 180px;
    width: 100%;
    position: relative;
}

.bg-google { background: linear-gradient(135deg, #E8F0FE, #E6F4EA); border: 1px solid #E8F0FE; }
.bg-facebook { background: linear-gradient(135deg, #E8F0FE, #D2E3FC); border: 1px solid #D2E3FC; }
.bg-instagram { background: linear-gradient(135deg, #FFF3E0 0%, #FCE4EC 50%, #F3E5F5 100%); border: 1px solid #FCE4EC; }
.bg-linkedin { background: linear-gradient(135deg, #E8F0FE, #CEE0F5); border: 1px solid #CEE0F5; }
.bg-social { background: linear-gradient(135deg, #FFF8E1, #FFF3E0); border: 1px solid #FFF3E0; }

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: absolute;
    top: -30px;
    left: 30px;
}

.google-icon { color: #4285F4; }
.facebook-icon { color: #1877F2; }
.instagram-icon { color: #E1306C; }
.linkedin-icon { color: #0A66C2; }
.social-icon { color: #FF8C00; }

.card-content h3 {
    margin-top: 20px;
    font-size: 20px;
    margin-bottom: 12px;
    color: #111;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: gap 0.3s;
}

.link-btn:hover {
    gap: 12px;
    color: #4285F4;
}

@media (max-width: 768px) {
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
}


/* Utility Classes */
.text-center { text-align: center !important; }
