/* ===============
   CSS Variables
   =============== */
:root {
  /* Colors - Premium Palette */
  --primary: #12351c;       /* Very Dark Premium Green */
  --primary-light: #2c8c44; /* Vibrant Grass Green */
  --primary-gradient: linear-gradient(135deg, #2c8c44 0%, #1e5a2c 100%);
  --accent: #f5b700;        /* Premium Gold/Yellow */
  
  --text-main: #111827;
  --text-muted: #4b5563;
  --bg-main: #f9fafb;
  --bg-light: #ffffff;
  --bg-dark: #0f1711;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  
  /* Utilities */
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 25px 50px -12px rgba(44, 140, 68, 0.15);
}

/* ===============
   Reset & Basics
   =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background:
    radial-gradient(circle at 0% 0%, rgba(44, 140, 68, 0.08), transparent 24%),
    var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}

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

.text-center {
  text-align: center;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary);
}

/* ===============
   Buttons
   =============== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(44, 140, 68, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #37a852 0%, #174a22 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px -5px rgba(44, 140, 68, 0.5);
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background-color: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ===============
   Navigation
   =============== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(18, 53, 28, 0.08);
}

header.scrolled .logo,
header.scrolled .nav-links a {
  color: var(--text-main);
}

header.scrolled .logo-new { color: var(--text-main); }
header.scrolled .logo-west { color: var(--primary-light); }
header.scrolled .logo-turf { color: var(--text-main); }

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 53, 28, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-image {
  max-height: 42px;
  width: auto;
  display: block;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.logo-new { color: #fff; }
.logo-west { color: var(--accent); }
.logo-turf { color: #fff; font-weight: 400; }

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

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav-links a:not(.nav-btn)::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:not(.nav-btn):hover::after,
.nav-links a:not(.nav-btn).active::after {
  transform: translateX(-50%) scale(1);
}

.nav-links a:not(.nav-btn):hover,
.nav-links a:not(.nav-btn).active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-links a:not(.nav-btn):hover,
header.scrolled .nav-links a:not(.nav-btn).active {
  color: var(--primary);
  background: rgba(18, 53, 28, 0.06);
}

.nav-btn {
  padding: 10px 18px;
  font-size: 0.95rem;
  margin-left: 6px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

header.scrolled .mobile-toggle span {
  background-color: var(--text-main);
}

/* ===============
   Hero Section
   =============== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 25s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 17, 0.9) 0%, rgba(15, 23, 17, 0.6) 50%, rgba(15, 23, 17, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badge::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(245, 183, 0, 0.2);
}

.hero h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  max-width: 550px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* ===============
   About Section
   =============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.feature-list li svg {
  color: var(--primary-light);
  flex-shrink: 0;
  background: rgba(44, 140, 68, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.about-image .img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image .img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===============
   Services Section
   =============== */
.section-header {
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

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

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

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

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

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-content {
  padding: 40px 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.service-link svg {
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary);
}

.service-link:hover svg {
  transform: translateX(5px);
}


/* ===============
   Reviews / Testimonials
   =============== */
.reviews-section {
  background-color: var(--bg-light);
  position: relative;
}

.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Elfsight Widget Wrapper */
.elfsight-widget-wrapper {
  margin-top: 40px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-main);
  border-radius: var(--border-radius);
  border: 2px dashed rgba(44, 140, 68, 0.2);
  padding: 40px;
  text-align: center;
}


/* ===============
   Contact Section
   =============== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.contact-info {
  background: var(--primary);
  color: #fff;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 140, 68, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.contact-info .section-title,
.contact-info .section-subtitle {
  color: #fff;
}

.contact-info p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 48px;
  font-size: 1.1rem;
}

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

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-item .icon-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  display: flex;
}

.detail-item svg {
  color: var(--accent);
}

.detail-item h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: #fff;
}

.detail-item span {
  color: rgba(255,255,255,0.7);
}

.contact-form-container {
  padding: 80px 60px;
  background: #fff;
}

/* WhatsApp contact link */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(37, 211, 102, 0.06);
  color: #25D366;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,211,102,0.08);
}

.whatsapp-icon {
  color: #25D366;
}

.whatsapp-text {
  color: var(--text-main);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #f9fafb;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(44, 140, 68, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

/* ===============
   Portfolio Section
   =============== */
 .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
 }
 
 .portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 240px;
  min-height: 220px;
 }

.home-works .works-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.home-works .work-item {
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  background: #f3f6f3;
}

.home-works .work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-works .work-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 1024px) {
  .home-works .works-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-works .works-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-works .work-item { height: 120px; }
}

@media (max-width: 480px) {
  .home-works .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #eef4ee 0%, #dceadc 100%);
  transition: transform 0.6s ease, filter 0.3s ease;
}

.portfolio-item img:not([src]) {
  filter: blur(8px);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 53, 28, 0.9), rgba(18, 53, 28, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  color: #fff;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-overlay p {
  color: var(--accent);
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
}

/* Force-hide portfolio overlays so gallery shows images only */
.portfolio-overlay {
  display: none !important;
}

body.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 6, 0.45);
  z-index: 999;
}


/* ===============
   Footer
   =============== */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 60px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  max-width: 320px;
  line-height: 1.8;
}

.footer-links h3 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
}

/* ===============
   Animations & Responsive
   =============== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.visible,
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Page Header (for subpages) */
.page-header {
  padding: 160px 0 80px;
  background: var(--primary);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/hero.png') center/cover;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.page-header h1 {
  font-size: 3.5rem;
  position: relative;
  z-index: 2;
  color: white;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 10px auto 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero h1 { font-size: 4rem; }
  .about-grid { gap: 40px; }
  .contact-wrapper { display: flex; flex-direction: column; }
  .contact-info::before { display: none; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .section-padding { padding: 80px 0; }
  .section-title { font-size: 2.25rem; }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  
  .nav-shell {
    padding: 6px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s ease;
    padding: 32px 24px;
    gap: 18px;
    border-radius: 24px 0 0 24px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
  }
  
  .nav-links.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .nav-links a {
    color: var(--text-main);
    font-size: 1.2rem;
    width: 100%;
    padding: 10px 0;
  }
  
  .nav-btn {
    text-align: center;
    margin-top: 10px;
    width: 100%;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--text-main);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--text-main);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .portfolio-item {
    height: 180px;
    min-height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .contact-info, .contact-form-container { padding: 40px 24px; }
  .hero h1 { font-size: 2.5rem; }
  .portfolio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
