/* ========================================
   GetWebDone.eu - Main Stylesheet
   Clean, bright, trustworthy design
   ======================================== */

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

/* CSS Variables */
:root {
  --white: #ffffff;
  --dark: #1a1a2e;
  --dark-light: #2d2d44;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --green: #10b981;
  --green-dark: #059669;
  --green-light: #d1fae5;
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --blue-light: #dbeafe;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}

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

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--green-dark) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (smaller) */
.hero-page {
  min-height: 50vh;
}

.hero-page .hero-content h1 {
  font-size: 2.8rem;
}

.hero-sm {
  min-height: 35vh;
}

.hero-sm .hero-content h1 {
  font-size: 2.5rem;
}

/* Hero with solid color background */
.hero-solid {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 80px 0;
}

.section-gray {
  background-color: var(--gray-50);
}

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

.section-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-body {
  padding: 32px;
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  padding: 48px 32px;
}

.service-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 24px;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  text-align: center;
  padding: 40px 32px;
  position: relative;
}

.pricing-card.featured {
  border: 3px solid var(--green);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 6px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 4px;
}

.pricing-card .price-period {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card ul li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-card .card-img {
  height: 200px;
}

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

.portfolio-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.portfolio-card .category {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ========================================
   How It Works
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.step p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 36px;
  text-align: left;
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card .author-role {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ========================================
   Blog Grid
   ======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card .card-img {
  height: 220px;
}

.blog-card .card-body {
  padding: 28px;
}

.blog-card .date {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card .read-more {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-card .read-more:hover {
  color: var(--green-dark);
}

/* Blog Article */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 120px;
}

.article-header {
  margin-bottom: 40px;
}

.article-header .date {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.article-header h1 {
  font-size: 2.4rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.article-featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.article-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 20px;
  color: var(--dark);
}

.article-content h3 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 16px;
  color: var(--dark);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: var(--green);
  font-weight: 500;
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--green-dark);
}

.article-content blockquote {
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
}

.article-content strong {
  color: var(--dark);
}

.article-cta {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 48px 0;
}

.article-cta h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.article-cta p {
  margin-bottom: 20px;
}

.article-nav {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.article-nav h3 {
  margin-bottom: 16px;
  margin-top: 0;
}

.article-nav ul {
  list-style: none;
  padding: 0;
}

.article-nav li {
  margin-bottom: 8px;
}

.article-nav a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.article-nav a:hover {
  text-decoration: underline;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

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

.contact-info-box {
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
}

.contact-info-box h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-item .icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* ========================================
   About Page
   ======================================== */
.about-story {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--gray-700);
  max-width: 800px;
  margin: 0 auto;
}

.about-story p {
  margin-bottom: 24px;
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.countries-list span {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Feature list */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.feature-item .check {
  color: var(--green);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.feature-item p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ba-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.ba-before {
  background: var(--gray-100);
  border: 2px solid var(--gray-200);
}

.ba-after {
  background: var(--green-light);
  border: 2px solid var(--green);
}

.ba-card h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.ba-card ul {
  list-style: none;
}

.ba-card ul li {
  padding: 8px 0;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-before ul li::before {
  content: '\2717';
  color: #ef4444;
  font-weight: 700;
}

.ba-after ul li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px;
}

.stat-card .number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.stat-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.pt-section { padding-top: 72px; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.featured {
    transform: scale(1.02);
  }
  .pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .hero-page .hero-content h1 {
    font-size: 2rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-header h2 {
    font-size: 1.8rem;
  }
  .services-grid,
  .portfolio-grid,
  .testimonials-grid,
  .steps-grid,
  .values-grid,
  .blog-grid,
  .features-grid,
  .before-after,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-grid-2 {
    max-width: 420px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .article-header h1 {
    font-size: 1.8rem;
  }
  .article-featured-img {
    height: 250px;
  }
  .article {
    padding-top: 100px;
  }
  .cta-banner h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .card-body {
    padding: 24px;
  }
  .service-card {
    padding: 32px 24px;
  }
  .btn {
    padding: 12px 28px;
  }
  .btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
