:root {
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --primary: #F26B5B;
  --primary-dark: #E05545;
  --primary-light: #FF8A7A;
  --primary-soft: #FFF5F3;
  --dark: #1a1a1a;
  --darker: #0d0d0d;
  --light: #ffffff;
  --light-bg: #fafafa;
  --gray: #666666;
  --text-dark: #333333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overscroll-behavior: none; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .hero-btn, .client-tag, .nav-links a { font-family: var(--font-display); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-content p { font-size: 0.9rem; flex: 1; min-width: 250px; }
.cookie-content a { color: var(--primary-light); }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-btn.accept { background: var(--primary); color: var(--light); }
.cookie-btn.accept:hover { background: var(--primary-dark); }
.cookie-btn.settings { background: transparent; color: var(--light); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn.settings:hover { border-color: var(--light); }

/* Sticky Contact Button */
.sticky-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.sticky-contact-btn {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(242, 107, 91, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.sticky-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(242, 107, 91, 0.5);
}
.sticky-contact-tooltip {
  background: var(--dark);
  color: var(--light);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
}
.sticky-contact:hover .sticky-contact-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
}
nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 50px;
  box-shadow: 0 2px 30px rgba(242, 107, 91, 0.1);
}
.logo-img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
nav.scrolled .logo-img { filter: none; }
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

/* Burger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}
.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--light);
  border-radius: 3px;
  transition: all 0.3s ease;
}
nav.scrolled .burger-menu span { background: var(--dark); }
.burger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.burger-menu.active span:nth-child(2) { opacity: 0; }
.burger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu a {
  color: var(--light);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--primary); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.dropdown-toggle i { font-size: 0.7rem; transition: transform 0.3s ease; }
.dropdown.active .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-toggle::after { display: none !important; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 15px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
}
.dropdown.active .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--dark) !important;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover { background: var(--primary-soft); color: var(--primary) !important; }
.dropdown-menu a::after { display: none; }

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  /* Fallback background while video loads */
  background: url('images/hero-poster.jpg') center/cover no-repeat;
  background-color: var(--dark);
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.hero-video-bg video::-webkit-media-controls { display: none !important; }
.hero-video-bg video::-webkit-media-controls-enclosure { display: none !important; }
.hero-video-bg video::-webkit-media-controls-panel { display: none !important; }
.hero-video-bg video::-webkit-media-controls-play-button { display: none !important; }
.hero-video-bg video::-webkit-media-controls-start-playback-button { display: none !important; }
.hero-video-bg video::-moz-media-controls { display: none !important; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(242, 107, 91, 0.4) 0%, rgba(224, 85, 69, 0.3) 40%, rgba(26, 26, 26, 0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}
.hero-logo {
  height: 80px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.2s;
  filter: brightness(0) invert(1);
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--light);
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.4s;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.6s;
}
.hero-btn {
  padding: 16px 45px;
  background: var(--primary);
  color: var(--light);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.8s;
}
.hero-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(242, 107, 91, 0.4);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}
.scroll-indicator i { font-size: 1.8rem; color: var(--light); }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-15px); }
  60% { transform: translateX(-50%) translateY(-8px); }
}

/* Section Styles */
section { padding: 100px 20px; position: relative; }
.section-header {
  text-align: left;
  margin-bottom: 50px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 15px;
}
.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  display: inline-block;
}
.section-accent { background: linear-gradient(180deg, var(--light) 0%, var(--primary-soft) 100%); }
.section-white { background: var(--light); }
.section-orange {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--light);
}
.section-orange .section-title { color: var(--light); }
.section-orange .section-header { border-bottom-color: rgba(255,255,255,0.3); }

/* Subsection Header */
.subsection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 15px;
}
.subsection-header .section-title { font-size: 2rem; margin: 0; }
.view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.view-all-btn:hover { color: var(--primary-dark); gap: 12px; }
.view-all-btn i { font-size: 0.85rem; transition: transform 0.3s ease; }
.view-all-btn:hover i { transform: translateX(3px); }

/* About Section */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.about-services { display: flex; flex-direction: column; gap: 25px; }
.service-item {
  padding: 25px;
  background: var(--light);
  border-radius: 12px;
  transition: all 0.4s ease;
}
.service-item:hover {
  box-shadow: 0 10px 30px rgba(242, 107, 91, 0.1);
  transform: translateX(5px);
}
.service-item h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.service-item p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.about-video { position: sticky; top: 120px; }
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(242, 107, 91, 0.2);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Works Grid */
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.works-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.works-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.works-item:hover img { transform: scale(1.08); }
.works-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 15px 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  transition: opacity 0.4s ease;
}
.works-title h3 { font-size: 1.1rem; font-weight: 700; color: var(--light); }
.works-item:hover .works-title { opacity: 0; }
.works-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(242, 107, 91, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.works-item:hover .works-overlay { opacity: 1; }
.works-overlay h3 { font-size: 1.3rem; font-weight: 700; color: var(--light); margin-bottom: 5px; }
.works-overlay p { color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.works-overlay .play-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
.works-overlay .play-icon i { color: var(--primary); font-size: 1.2rem; margin-left: 4px; }

/* Portfolio Grid */
.portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.portfolio-item {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 40px rgba(242, 107, 91, 0.15);
}
.portfolio-item:hover { transform: translateY(-8px); }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 15px 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.portfolio-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--light); margin-bottom: 3px; }
.portfolio-info p { font-size: 0.8rem; color: var(--primary-light); }
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(242, 107, 91, 0.5);
}
.portfolio-item:hover .play-btn { opacity: 1; }
.play-btn i { font-size: 1.2rem; color: var(--light); margin-left: 4px; }

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.video-modal.active .video-modal-content { transform: scale(1); }
.video-modal-content iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.video-modal-close:hover { background: var(--primary-dark); transform: rotate(90deg); }

/* Article Detail Overlay */
.article-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--light);
  z-index: 10000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.article-overlay-close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  border: none;
}
.article-overlay-close:hover { background: var(--primary); transform: rotate(90deg); }
.article-overlay-hero {
  width: 100%;
  height: 60vh;
  position: relative;
  overflow: hidden;
}
.article-overlay-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-overlay-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(transparent, var(--light));
}
.article-overlay-content {
  max-width: 800px;
  margin: -100px auto 80px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.article-overlay-meta {
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-overlay-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 30px;
}
.article-overlay-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--gray);
}
.article-overlay-body p { margin-bottom: 20px; }

/* Articles Grid */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.article-item {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}
.article-item:hover { transform: translateY(-8px); }
.article-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-item:hover img { transform: scale(1.05); }
.article-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}
.article-date {
  font-size: 0.75rem;
  color: var(--primary-light);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.article-info h4 { font-size: 1.1rem; font-weight: 700; color: var(--light); line-height: 1.4; }

/* Clients */
.clients-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.client-logo {
  aspect-ratio: 3/2;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
  cursor: default;
}
.client-logo:hover {
  background: var(--light);
  transform: translateY(-3px);
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.client-logo:hover img { filter: none; }
.client-logo span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--light);
  text-align: center;
  transition: color 0.3s ease;
}
.client-logo:hover span { color: var(--primary); }

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.contact-info h3 { font-size: 1.4rem; margin-bottom: 30px; color: var(--dark); }
.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.contact-item i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text { display: flex; flex-direction: column; justify-content: center; }
.contact-item p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.contact-item a { color: var(--primary); text-decoration: none; font-weight: 500; }
.contact-item a:hover { color: var(--primary-dark); }
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-soft), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-soft);
}
.map-placeholder { text-align: center; }
.map-placeholder i { font-size: 3.5rem; color: var(--primary); margin-bottom: 12px; }
.map-placeholder p { color: var(--gray); }

/* Footer */
footer { background: var(--dark); padding: 40px 20px; }
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { height: 35px; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-links a i { font-size: 1.1rem; }
.social-links a:hover { background: var(--primary); transform: translateY(-4px); }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .about-wrapper { grid-template-columns: 1fr; }
  .about-video { position: relative; top: 0; margin-top: 40px; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-wrapper { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 15px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .burger-menu { display: flex; }
  .hero-logo { display: none; }
  .hero-content { padding: 0 30px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  
  /* Reduced section padding on mobile */
  section { padding: 50px 15px; }
  
  .section-header { margin-bottom: 30px; padding-bottom: 12px; }
  .section-title { font-size: 1.8rem; }
  .subsection-header { margin-bottom: 25px; padding-bottom: 12px; }
  .subsection-header .section-title { font-size: 1.4rem; flex: 1; }
  .subsection-header + .articles-grid + .subsection-header { margin-top: 50px !important; }
  
  .view-all-btn { flex-shrink: 0; font-size: 0.85rem; }
  
  .works-grid { grid-template-columns: 1fr; gap: 15px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .articles-grid { grid-template-columns: 1fr; gap: 15px; }
  .clients-wrapper { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  
  .about-wrapper { gap: 30px; }
  .about-services { gap: 15px; }
  .service-item { padding: 20px; }
  .service-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
  .service-item p { font-size: 0.85rem; }
  
  .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
  .contact-info h3 { margin-bottom: 20px; font-size: 1.2rem; }
  .contact-map { height: 200px; }
  
  .footer-content { flex-direction: column; gap: 20px; }
  footer { padding: 30px 15px; }
  
  .sticky-contact { bottom: 20px; right: 20px; }
  .sticky-contact-btn { width: 55px; height: 55px; }
  .sticky-contact-tooltip { display: none; }
  
  .article-overlay-title { font-size: 1.8rem; }
  .article-overlay-hero { height: 40vh; }
  .article-overlay-content { margin-top: -60px; padding: 0 20px; margin-bottom: 50px; }
  .article-overlay-body { font-size: 1rem; }
  
  .video-modal-close { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 1.2rem; }
  .article-overlay-close { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 1.2rem; }
  
  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  section { padding: 40px 12px; }
  .section-title { font-size: 1.6rem; }
  .subsection-header .section-title { font-size: 1.3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .clients-wrapper { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .client-logo { padding: 10px; }
  .client-logo span { font-size: 0.65rem; }
}