/* 
   Green Monk Consultants Private Limited - Global Design System (v2.2 Complete)
   Brand Palette:
   - Primary Emerald: #059669
   - Deep Forest: #064e3b
   - Mint Accent: #10b981
   - Deep Slate: #0f172a
   - Warm Gold: #d97706
*/

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

:root {
  /* Green Monk Brand Tokens */
  --color-primary: #059669;
  --color-primary-dark: #064e3b;
  --color-primary-light: #10b981;
  --color-accent: #d97706;
  --color-accent-light: #f59e0b;
  --color-slate: #0f172a;
  --color-slate-light: #334155;
  
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-dark: #064e3b;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --card-border: 1px solid rgba(5, 150, 105, 0.12);
  --card-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.95);
  
  /* Fonts */
  --font-header: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1240px;
  --header-height: 84px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; outline: none; border: none; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding { padding: 80px 0; }
.text-center { text-align: center !important; }
.accent-text { color: var(--color-accent); }
.green-text { color: var(--color-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-header);
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
  min-height: 44px;
}

.btn-primary { background-color: var(--color-primary); color: #ffffff; }
.btn-primary:hover { background-color: var(--color-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3); }

.btn-accent { background-color: var(--color-accent); color: #ffffff; }
.btn-accent:hover { background-color: #b45309; transform: translateY(-2px); }

.btn-outline { border: 1.5px solid var(--color-primary); color: var(--color-primary); background-color: transparent; }
.btn-outline:hover { background-color: rgba(5, 150, 105, 0.08); transform: translateY(-2px); }

.card-hover { transition: var(--transition); }
.card-hover:hover { transform: translateY(-6px); border-color: var(--color-primary-light); box-shadow: 0 16px 32px rgba(5, 150, 105, 0.12); }

/* Header Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
}

header.scrolled {
  box-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.12);
  height: 74px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img, .brand-logo svg {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }

.logo-title {
  font-family: var(--font-header);
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.logo-title span { color: var(--color-primary); }

.logo-subtitle {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-slate);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active { color: var(--color-primary); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--color-primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 2000;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--color-primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Backdrop Overlay for Mobile Drawer */
.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  display: none;
}

.mobile-backdrop.active { display: block; }

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-slate);
  margin-bottom: 20px;
  line-height: 1.18;
}

.hero h1 span {
  color: var(--color-primary);
  background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 620px;
}

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

.hero-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(6, 78, 59, 0.08);
}

.hero-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.badge-item {
  padding: 16px;
  border-radius: 10px;
  background: var(--bg-main);
  border: 1px solid rgba(5, 150, 105, 0.08);
  text-align: center;
}

.badge-item h3 { font-size: 24px; color: var(--color-primary); font-weight: 800; }
.badge-item p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* Section Titles & Accent Line Fix */
.section-header { margin-bottom: 44px; }

.section-subtitle {
  font-size: 12px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 800;
  color: var(--color-slate);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3.5px;
  background-color: var(--color-accent);
  margin-top: 12px;
  border-radius: 2px;
}

/* Underline Centering Rules */
.text-center .section-title::after,
.section-header.text-center .section-title::after,
.section-title.text-center::after,
.container.text-center .section-title::after,
div.text-center > .section-title::after,
header + main .text-center .section-title::after,
main .text-center .section-title::after {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Categories & Services Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--bg-card);
  border: var(--card-border);
  border-radius: 14px;
  padding: 28px 20px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.category-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.category-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--color-slate); }

.category-services-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-services-list li {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.category-services-list li::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
}

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

.tab-btn {
  padding: 10px 20px;
  border-radius: 50px;
  background: #ffffff;
  border: var(--card-border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 42px;
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

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

.service-item-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.service-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-item-card h3 { font-size: 18px; margin-bottom: 12px; color: var(--color-slate); }
.service-item-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 20px; flex-grow: 1; }

/* Why Clients Trust Our Team Grid & Cards */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--card-shadow);
}

.trust-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.12);
  color: var(--color-accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  font-family: var(--font-header);
}

.trust-info h4 {
  font-size: 16px;
  color: var(--color-slate);
  margin-bottom: 6px;
}

.trust-info p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Team Grid & Specialist Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.member-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-header);
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(5, 150, 105, 0.2);
}

.member-card h3 {
  font-size: 20px;
  color: var(--color-slate);
  margin-bottom: 4px;
}

.member-role {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.member-qual {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.member-expertise {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.member-bio {
  font-size: 13px;
  color: var(--text-main);
  border-top: 1px solid rgba(5, 150, 105, 0.08);
  padding-top: 16px;
  margin-top: auto;
  line-height: 1.6;
}

/* Testimonials Carousel */
.testimonials-section { background: var(--bg-alt); }

.testimonial-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--card-shadow);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; }
.testimonial-text { font-size: 16px; font-style: italic; color: var(--color-slate); margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { font-family: var(--font-header); font-weight: 700; font-size: 16px; color: var(--color-primary-dark); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* FAQ Accordion Styles */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.faq-question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-slate);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg-main);
}

.faq-answer p {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Floating WhatsApp / Quick Contact Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  cursor: pointer;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-slate);
  color: #ffffff;
  padding: 18px 24px;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  gap: 20px;
}

.cookie-banner p { font-size: 13px; color: #cbd5e1; margin: 0; }
.cookie-banner a { color: var(--color-primary-light); text-decoration: underline; }

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

.contact-card {
  background: #ffffff;
  border: var(--card-border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--card-shadow);
}

.info-item { display: flex; gap: 16px; margin-bottom: 24px; }

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-content h4 { font-size: 15px; color: var(--color-slate); margin-bottom: 4px; }
.info-content p, .info-content a { font-size: 13.5px; color: var(--text-muted); }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--color-slate); }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--bg-main);
  border: 1px solid rgba(5, 150, 105, 0.15);
  color: var(--text-main);
  transition: var(--transition);
  min-height: 44px;
}

.form-control:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

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

/* Admin Dashboard UI */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - var(--header-height));
  margin-top: var(--header-height);
}

.admin-sidebar {
  background: var(--color-slate);
  color: #ffffff;
  padding: 30px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admin-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: var(--transition);
}

.admin-menu-item:hover, .admin-menu-item.active {
  background-color: var(--color-primary);
  color: #ffffff;
}

.admin-content { padding: 36px; background: var(--bg-main); }

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.admin-table th, .admin-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(5, 150, 105, 0.08);
}

.admin-table th {
  background-color: var(--bg-alt);
  font-family: var(--font-header);
  font-size: 12.5px;
  color: var(--color-slate);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-table td { font-size: 13.5px; color: var(--text-muted); }

.action-btn {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-edit { background: rgba(5, 150, 105, 0.1); color: var(--color-primary); }
.btn-delete { background: rgba(225, 29, 72, 0.1); color: #e11d48; margin-left: 6px; }

/* Modal Editor */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: #ffffff;
  border-radius: 16px;
  max-width: 620px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

/* Footer */
footer {
  background-color: var(--color-slate);
  color: #ffffff;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p { font-size: 13.5px; color: #94a3b8; margin-top: 14px; line-height: 1.6; }

.footer-col h4 { color: #ffffff; font-size: 15px; margin-bottom: 20px; position: relative; }

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  margin-top: 8px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13.5px; color: #94a3b8; }
.footer-links a:hover { color: var(--color-primary-light); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { flex-direction: row; overflow-x: auto; padding: 16px; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 40px 30px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    z-index: 1001;
  }
  
  .nav-menu.active { right: 0; }
  
  .categories-grid, .services-grid, .trust-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .cookie-banner { flex-direction: column; text-align: center; }
}
