/* ============================================
   YANKEYS DEMOLITION - Main Stylesheet
   Brand Colors: Orange #F48632, Black, White
   ============================================ */

/* === CSS RESET & VARIABLES === */
:root {
  --primary: #F48632;
  --primary-dark: #d6721e;
  --primary-light: #ff9a4d;
  --black: #1a1a1a;
  --dark: #222222;
  --gray-900: #333333;
  --gray-700: #555555;
  --gray-500: #888888;
  --gray-300: #cccccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === TOP BAR === */
.top-bar {
  background: var(--black);
  color: var(--white);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-bar a {
  color: var(--primary);
  font-weight: 700;
}

.top-bar a:hover {
  color: var(--primary-light);
}

/* === NAVIGATION === */
.navbar {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 0 rgba(244,134,50,0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand .logo-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav-brand h1,
.nav-brand .nav-brand-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-brand h1 span,
.nav-brand .nav-brand-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 100%),
              url('https://images.pexels.com/photos/1519088/pexels-photo-1519088.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
  z-index: 0;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 134, 50, 0.15);
  border: 1px solid rgba(244, 134, 50, 0.4);
  color: var(--primary-light);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero h2 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 134, 50, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* === SECTION STYLES === */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-gray {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.7);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--primary);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  color: var(--white);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(244,134,50,0.1), rgba(244,134,50,0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === WHY US / FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === ABOUT PREVIEW === */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-text .btn {
  margin-top: 1rem;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244,134,50,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

/* === TESTIMONIAL === */
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.testimonial-card .quote {
  font-size: 1.15rem;
  color: var(--gray-900);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  font-family: Georgia, serif;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-card .stars {
  color: #FFB800;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}

/* === CONTACT SECTION === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(244,134,50,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-info-card p {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.contact-info-card a {
  color: var(--primary);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--primary-dark);
}

/* === FORMS === */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--gray-900);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: var(--white);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* === MAP === */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* === FOOTER === */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.footer-brand h3 span {
  color: var(--primary);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 134, 50, 0.35);
}

.footer-social a:hover svg {
  transform: scale(1.15);
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact .icon {
  color: var(--primary);
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

/* === PAGE HEADER (inner pages) === */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 6rem 0 4rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--primary);
}

/* === ABOUT PAGE === */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.about-story p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.founder-highlight {
  background: var(--gray-100);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

.founder-highlight p {
  color: var(--gray-900);
  font-style: italic;
}

/* === SERVICES PAGE === */
.services-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-detail-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-detail-card .service-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(244,134,50,0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.service-detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-detail-card p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* === GALLERY PAGE === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: var(--white);
  font-weight: 600;
}

/* === SERVICE DETAIL (services page) === */
.service-detail {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(135deg, rgba(244,134,50,0.12), rgba(244,134,50,0.04));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.service-detail-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-detail-content p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  margin-bottom: 1.25rem;
}

.service-features li {
  color: var(--gray-700);
  font-size: 0.93rem;
  padding: 0.3rem 0;
}

.service-features li::before {
  color: var(--primary);
  font-weight: 700;
}

/* === CONTACT INFO PANEL === */
.contact-info-panel {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-panel .contact-info-card {
  display: block;
  margin-bottom: 0;
}

.contact-info-panel .contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-info-panel .contact-info-card > p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(244,134,50,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.info-item p {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.info-item a {
  color: var(--primary);
  font-weight: 600;
}

.info-item a:hover {
  color: var(--primary-dark);
}

.contact-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-social a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.contact-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact-social a:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* page-header h1/h2 (span color) */
.page-header h1,
.page-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-header h1 span,
.page-header h2 span {
  color: var(--primary);
}

/* === FAQ SECTION === */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(244, 134, 50, 0.12);
  border-color: rgba(244, 134, 50, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(244, 134, 50, 0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  font-family: 'Inter', sans-serif;
  gap: 1rem;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: #555;
  line-height: 1.7;
  font-size: 0.95rem;
}

.faq-answer a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* === SERVICE AREAS SECTION === */
.service-areas-section .section-header p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-group {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.area-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(244, 134, 50, 0.12);
  border-color: rgba(244, 134, 50, 0.3);
}

.area-group h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.area-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-group li {
  padding: 0.35rem 0;
  color: #555;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1rem;
}

.area-group li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 0.8rem;
}

.areas-cta {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: #555;
}

.areas-cta a {
  color: var(--primary);
  text-decoration: none;
}

.areas-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
}

/* === SCROLL ANIMATIONS — DEMOLITION ENTRANCE === */
.fade-in {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.slide-left {
  opacity: 0;
  transform: translateX(-70px) skewX(2deg);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0) skewX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(70px) skewX(-2deg);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0) skewX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.7s cubic-bezier(0.22, 1.2, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1.2, 0.36, 1);
}

.scale-up.visible {
  opacity: 1;
  transform: scale(1);
}

.rotate-in {
  opacity: 0;
  transform: rotate(-6deg) translateY(35px) scale(0.95);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.rotate-in.visible {
  opacity: 1;
  transform: rotate(0) translateY(0) scale(1);
}

/* ============================================
   DEMOLITION 3D EFFECTS & ADVANCED ANIMATIONS
   ============================================ */

/* === 3D PERSPECTIVE CONTAINER === */
.perspective-container {
  perspective: 1000px;
  perspective-origin: center;
}

/* === DEMOLITION IMPACT SHAKE === */
@keyframes demolitionImpact {
  0% { transform: perspective(800px) rotateX(0) rotateY(0) translate(0, 0); }
  15% { transform: perspective(800px) rotateX(-1deg) rotateY(1deg) translate(-3px, 2px); }
  30% { transform: perspective(800px) rotateX(1deg) rotateY(-1deg) translate(2px, -1px); }
  45% { transform: perspective(800px) rotateX(-0.5deg) rotateY(0.5deg) translate(-1px, 1px); }
  60% { transform: perspective(800px) rotateX(0.3deg) rotateY(-0.3deg) translate(1px, -0.5px); }
  100% { transform: perspective(800px) rotateX(0) rotateY(0) translate(0, 0); }
}

.demolition-impact {
  animation: demolitionImpact 0.5s ease-out !important;
}

/* === CARD DUST BURST (follows cursor on hover) === */
.card-dust-burst {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,134,50,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover .card-dust-burst,
.feature-card:hover .card-dust-burst,
.testimonial-card:hover .card-dust-burst {
  opacity: 1;
}

/* === 3D HERO PARALLAX LAYERS === */
.hero {
  perspective: 1200px;
}

.hero-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-content {
  transform-style: preserve-3d;
}

/* === HERO ENTRANCE — DEMOLITION REVEAL === */
.hero-badge {
  animation: debrisDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both, floatDebris 4s ease-in-out 1.5s infinite;
}

.hero h2,
.hero-title-anim {
  animation: wreckingReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero h2 span {
  display: inline-block;
  animation: crackGlow 2.5s ease-in-out infinite alternate;
}

.hero p,
.hero-text-anim {
  animation: wreckingReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-buttons,
.hero-buttons-anim {
  animation: wreckingReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

/* Debris drops in from above with slam */
@keyframes debrisDrop {
  0% { opacity: 0; transform: translateY(-60px) rotate(-5deg) scale(0.7); filter: blur(8px); }
  60% { opacity: 1; transform: translateY(6px) rotate(1deg) scale(1.05); filter: blur(0); }
  80% { transform: translateY(-2px) rotate(-0.5deg) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) rotate(0) scale(1); filter: blur(0); }
}

/* Text reveals like wall breaking apart */
@keyframes wreckingReveal {
  0% { opacity: 0; transform: translateY(50px) skewX(-2deg); filter: blur(8px); }
  50% { transform: translateY(-4px) skewX(0.5deg); }
  100% { opacity: 1; transform: translateY(0) skewX(0); filter: blur(0); }
}

/* Floating debris bob */
@keyframes floatDebris {
  0%, 100% { transform: translateY(0) rotate(0); }
  25% { transform: translateY(-6px) rotate(-0.5deg); }
  75% { transform: translateY(4px) rotate(0.3deg); }
}

/* Cracked text glow — like heat/sparks */
@keyframes crackGlow {
  0% { text-shadow: 0 0 10px rgba(244, 134, 50, 0.3), 0 2px 4px rgba(0,0,0,0.3); }
  50% { text-shadow: 0 0 30px rgba(244, 134, 50, 0.6), 0 0 60px rgba(244, 134, 50, 0.2), 0 2px 4px rgba(0,0,0,0.3); }
  100% { text-shadow: 0 0 15px rgba(244, 134, 50, 0.4), 0 2px 4px rgba(0,0,0,0.3); }
}

/* === ANIMATED GRADIENT BACKGROUNDS === */
.cta-banner {
  background: linear-gradient(-45deg, #1a1a1a, #2a2a2a, #1a1a1a, #333);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

.stats-bar {
  background: linear-gradient(-45deg, #F48632, #d6721e, #ff9a4d, #F48632);
  background-size: 400% 400%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === 3D SERVICE CARD — DEMOLITION HOVER === */
.service-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow:
    0 20px 40px rgba(244, 134, 50, 0.15),
    0 10px 20px rgba(0,0,0,0.1),
    inset 0 -2px 0 var(--primary);
}

.service-card:hover .service-icon {
  transform: translateZ(20px) scale(1.15) rotateY(10deg);
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  box-shadow: 0 8px 25px rgba(244, 134, 50, 0.4);
}

.service-icon {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === 3D FEATURE CARD — WRECKING HOVER === */
.feature-card {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
  border-radius: var(--radius-lg);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent, rgba(244,134,50,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-12px) rotateY(-3deg) rotateX(3deg);
  background: var(--white);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(244,134,50,0.2);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card:hover .feature-icon {
  transform: translateZ(30px) rotateY(15deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(244, 134, 50, 0.4);
}

.feature-icon {
  transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === 3D STAT ITEMS — IMPACT SCALE === */
.stat-item {
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
  cursor: default;
  position: relative;
}

.stat-item:hover {
  transform: scale(1.12) translateZ(20px);
}

.stat-item:hover h3 {
  text-shadow: 0 0 25px rgba(255,255,255,0.5), 0 0 50px rgba(255,255,255,0.2);
}

/* === 3D ABOUT IMAGE — RUBBLE TILT === */
.about-image {
  transition: all 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

.about-image:hover {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.02);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.25), -5px -5px 20px rgba(244,134,50,0.15);
}

.about-image:hover .about-image-badge {
  transform: translateZ(40px) rotate(-2deg);
}

.about-image-badge {
  transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === 3D TESTIMONIAL — DEBRIS FLOAT === */
.testimonial-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.testimonial-card:hover {
  transform: rotateX(3deg) translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(244,134,50,0.15);
}

.testimonial-card .stars {
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* === BUTTON 3D & DEMOLITION RIPPLE === */
.btn {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.35s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 35px rgba(244, 134, 50, 0.45), 0 0 20px rgba(244, 134, 50, 0.2);
}

.btn-dark:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.03);
}

/* === MAGNETIC BUTTON EFFECT === */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

/* === GLOWING BORDER ON SERVICE DETAIL — CRACK GLOW === */
.service-detail {
  position: relative;
  transition: all 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

.service-detail::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent 30%, rgba(244,134,50,0.6), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-detail:hover::before {
  opacity: 1;
}

.service-detail:hover {
  transform: translateX(8px) scale(1.01);
  box-shadow: 0 8px 30px rgba(244,134,50,0.1);
}

.service-detail:hover .service-detail-icon {
  transform: rotateY(15deg) scale(1.15);
  background: linear-gradient(135deg, var(--primary), #ff6a00);
  box-shadow: 0 8px 25px rgba(244, 134, 50, 0.35);
}

.service-detail-icon {
  transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === PAGE HEADER 3D TEXT — DEMOLITION REVEAL === */
.page-header h1,
.page-header h2 {
  animation: wreckingReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.page-header p {
  animation: wreckingReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.page-header h1 span,
.page-header h2 span {
  display: inline-block;
  animation: crackGlow 2.5s ease-in-out infinite alternate;
}

/* === PARTICLE CANVAS === */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  z-index: 2;
}

/* === SECTION LABEL ANIMATION === */
.section-label {
  position: relative;
  display: inline-block;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible .section-label::after,
.section-header.visible .section-label::after {
  width: 100%;
}

/* === NAV BRAND 3D HOVER === */
.nav-brand:hover .logo-icon {
  transform: scale(1.1) rotateY(10deg);
  filter: brightness(1.15);
}

.logo-icon {
  transition: all 0.6s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === FOOTER SOCIAL 3D === */
.footer-social a {
  transition: all 0.35s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

.footer-social a:hover {
  transform: translateY(-4px) rotateY(15deg) scale(1.15);
  box-shadow: 0 8px 20px rgba(244, 134, 50, 0.3);
}

/* === CONTACT INFO CARD 3D === */
.info-item {
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.info-item:hover {
  background: rgba(244,134,50,0.05);
  transform: translateX(5px);
}

.info-item:hover .info-icon {
  transform: rotateY(180deg) scale(1.1);
  background: var(--primary);
  color: var(--white);
}

.info-icon {
  transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

/* === FORM INPUT FOCUS 3D === */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 134, 50, 0.15), 0 4px 12px rgba(244, 134, 50, 0.1);
  transform: translateY(-2px);
}

.form-group input,
.form-group textarea,
.form-group select {
  transition: all 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99);
}

/* === MAP 3D HOVER === */
.map-container {
  transition: all 0.5s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  transform-style: preserve-3d;
}

.map-container:hover {
  transform: perspective(800px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* === CTA BANNER DEMOLITION RUBBLE === */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner .floating-rubble {
  position: absolute;
  background: rgba(244, 134, 50, 0.1);
  animation: rubbleDrift 7s ease-in-out infinite;
  pointer-events: none;
  border: 1px solid rgba(244, 134, 50, 0.08);
}

@keyframes rubbleDrift {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-18px) rotate(35deg) scale(1.05); }
  50% { transform: translateY(-10px) rotate(70deg) scale(0.95); }
  75% { transform: translateY(-22px) rotate(110deg) scale(1.02); }
}

/* Legacy fallback */
.cta-banner .floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(244, 134, 50, 0.08);
  animation: rubbleDrift 6s ease-in-out infinite;
  pointer-events: none;
}

/* === PREFERS REDUCED MOTION === */
/* === TOUCH DEVICE: DISABLE STICKY HOVER EFFECTS === */
@media (hover: none) {
  .service-card:hover,
  .feature-card:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
  }

  .blog-article:hover {
    transform: none;
  }

  .btn:hover {
    filter: none;
  }

  .nav-links a:hover::after {
    width: 0;
  }

  .service-detail:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in, .slide-left, .slide-right, .scale-up, .rotate-in {
    opacity: 1;
    transform: none;
  }
  .cursor-glow, .cursor-dot { display: none !important; }
}

/* === PRELOADER === */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.1s ease;
}

.preloader-logo {
  width: 320px;
  max-width: 80vw;
  height: auto;
  object-fit: contain;
  animation: preloaderPulse 1s ease-in-out infinite alternate;
}

@keyframes preloaderPulse {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.05); opacity: 1; }
}

/* --- Jackhammer --- */
.jackhammer {
  position: absolute;
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.jackhammer.swing {
  opacity: 1;
  animation: jhFallDown 0.5s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.jh-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* T-shaped handle top */
.jh-handle-top {
  width: 52px;
  height: 10px;
  background: linear-gradient(180deg, #666 0%, #444 100%);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* Handle grips */
.jh-handle-grip {
  width: 14px;
  height: 40px;
  background: linear-gradient(90deg, #555, #777, #555);
  border-radius: 3px;
  position: relative;
}

.jh-handle-grip::before,
.jh-handle-grip::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  height: 5px;
  background: #F48632;
  border-radius: 2px;
}

.jh-handle-grip::before { top: 8px; }
.jh-handle-grip::after { top: 22px; }

/* Motor housing */
.jh-motor {
  width: 56px;
  height: 80px;
  background: linear-gradient(135deg, #F48632 0%, #d4700a 40%, #b85e08 100%);
  border-radius: 8px 8px 4px 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow:
    inset -4px -4px 10px rgba(0,0,0,0.3),
    inset 2px 2px 6px rgba(255,255,255,0.15),
    0 4px 15px rgba(0,0,0,0.5);
}

.jh-motor::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 6px;
  right: 6px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* Motor vents */
.jh-motor-vent {
  width: 32px;
  height: 4px;
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
}

/* Barrel / cylinder */
.jh-barrel {
  width: 22px;
  height: 55px;
  background: linear-gradient(90deg, #888, #aaa, #888);
  border-radius: 3px;
  position: relative;
  box-shadow:
    inset -3px 0 6px rgba(0,0,0,0.3),
    inset 3px 0 6px rgba(255,255,255,0.1);
}

.jh-barrel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 8px;
  background: #666;
  border-radius: 3px;
  box-shadow: 0 10px 0 #666, 0 -10px 0 #666;
}

/* Chisel point */
.jh-chisel {
  width: 16px;
  height: 36px;
  background: linear-gradient(180deg, #999, #bbb 30%, #999 60%, #777);
  clip-path: polygon(0% 0%, 100% 0%, 65% 85%, 50% 100%, 35% 85%);
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

/* Vibration on impact */
.jackhammer.vibrating .jh-body {
  animation: jhVibrate 0.06s linear infinite;
}

@keyframes jhVibrate {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2px, 1px); }
  50%  { transform: translate(2px, -1px); }
  75%  { transform: translate(-1px, -1px); }
  100% { transform: translate(1px, 1px); }
}

@keyframes jhFallDown {
  0% {
    top: -280px;
    opacity: 1;
  }
  100% {
    top: calc(50% - 120px);
    opacity: 1;
  }
}

/* --- Impact shake on inner content --- */
.preloader-inner.impact {
  animation: impactShake 0.35s ease-out forwards;
}

@keyframes impactShake {
  0%   { transform: translate(0, 0) scale(1); }
  15%  { transform: translate(-6px, 8px) scale(0.97); }
  30%  { transform: translate(5px, -4px) scale(0.95); }
  45%  { transform: translate(-3px, 6px) scale(0.92); }
  60%  { transform: translate(4px, -2px) scale(0.88); }
  75%  { transform: translate(-2px, 3px) scale(0.83); }
  100% { transform: translate(0, 10px) scale(0.75); opacity: 0.3; }
}

/* --- Crack overlay flash --- */
.preloader.cracking::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 25;
  background: radial-gradient(circle at 50% 50%, rgba(244, 134, 50, 0.3) 0%, transparent 60%);
  animation: crackFlash 0.4s ease-out forwards;
}

@keyframes crackFlash {
  0%   { opacity: 1; transform: scale(0.5); }
  50%  { opacity: 0.8; transform: scale(1.5); }
  100% { opacity: 0; transform: scale(2.5); }
}

/* --- Rubble canvas --- */
#rubbleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
}

/* === CUSTOM CURSOR === */
/* Hide cursors on touch devices at CSS level (prevents flash before JS) */
@media (hover: none), (pointer: coarse) {
  .cursor-glow,
  .cursor-dot {
    display: none !important;
  }
}

.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 134, 50, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0;
  will-change: left, top;
}

.cursor-glow.visible {
  opacity: 1;
}

.cursor-glow.hover-active {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 134, 50, 0.12) 0%, transparent 70%);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.2s ease;
  opacity: 0;
  will-change: left, top;
}

.cursor-dot.visible {
  opacity: 1;
}

.cursor-dot.hover-active {
  transform: translate(-50%, -50%) scale(2.5);
  background: var(--primary-light);
  mix-blend-mode: difference;
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), #ff6a00);
  z-index: 10001;
  transition: width 0.05s linear;
  box-shadow: 0 0 10px rgba(244, 134, 50, 0.5);
}

/* === HERO TEXT ANIMATIONS === */
.hero-badge {
  animation: heroBadgeDrop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-title-anim {
  animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-text-anim {
  animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-buttons-anim {
  animation: heroTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
}

@keyframes heroBadgeDrop {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroTextReveal {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* === BACK TO TOP BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.8);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(244, 134, 50, 0.55);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(244, 134, 50, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.back-to-top:hover {
  transform: translateX(-50%) translateY(-4px) scale(1.1);
  background: rgba(244, 134, 50, 0.75);
  box-shadow: 0 8px 30px rgba(244, 134, 50, 0.4);
}

.back-to-top::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: none;
}

.back-to-top.visible::after {
  animation: backToTopRing 2s ease-in-out infinite;
}

@keyframes backToTopRing {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

/* === SPOTLIGHT HOVER ON SECTIONS === */
.section-spotlight {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 134, 50, 0.04) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.section:hover .section-spotlight {
  opacity: 1;
}

/* === INTERACTIVE NAV ACTIVE SECTION === */
.nav-links a:not(.nav-cta).section-active {
  color: var(--primary-light);
}

.nav-links a:not(.nav-cta).section-active::after {
  width: 100%;
  background: var(--primary-light);
}

/* === GLOWING CARD BORDER ON HOVER === */
.area-group::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: background 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.area-group:hover::after {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #ff6a00, var(--primary));
}

/* === STAT ITEM INTERACTIVE GLOW === */
.stat-item {
  position: relative;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.stat-item:hover h3 {
  text-shadow: 0 0 20px rgba(244, 134, 50, 0.5);
}

/* === TESTIMONIAL QUOTE MARK ANIMATION === */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.1;
  font-family: Georgia, serif;
  line-height: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 0.25;
  transform: scale(1.1) translateY(-5px);
}

/* === INTERACTIVE TEXT HIGHLIGHT === */
.section-label {
  position: relative;
  display: inline-block;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.visible .section-label::after,
.section-label.visible::after {
  width: 100%;
}

/* === SMOOTH IMAGE REVEAL === */
.about-image img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: saturate(0.8);
}

.about-image:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

/* === BUTTON SHIMMER EFFECT === */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

/* === WORD REVEAL ANIMATION === */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  filter: blur(4px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.words-visible .word-reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-preview,
  .about-full {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-detailed {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-300);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 1rem 0.5rem;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .hero {
    min-height: 60vh;
  }
}

/* === BLOG ARTICLES === */
.blog-article {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(244, 134, 50, 0.12);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.blog-date {
  color: #666;
}

.blog-category {
  background: var(--primary);
  color: var(--white);
  padding: 0.15rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.blog-article h2 {
  font-size: 1.6rem;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-article h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-article p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.blog-article ul,
.blog-article ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.8;
}

.blog-article li {
  margin-bottom: 0.4rem;
}

.blog-article a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.blog-article a:hover {
  color: #d46a1a;
}

@media (max-width: 768px) {
  .blog-article {
    padding: 1.5rem;
  }

  .blog-article h2 {
    font-size: 1.35rem;
  }
}

/* ============================================
   VIDEO PORTFOLIO SECTION
   ============================================ */

/* Video Grid (homepage) */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  background: #1a1a1a;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-thumb:hover .video-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.video-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.9);
  background: rgba(244, 134, 50, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(244, 134, 50, 0.4);
  animation: playPulse 2s ease-in-out infinite;
}

.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

@keyframes playPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 134, 50, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(244, 134, 50, 0); }
}

.video-thumb:hover .video-play-btn {
  transform: scale(1.12);
  background: rgba(244, 134, 50, 1);
}

.video-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: #fff;
}

.video-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.video-info p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

/* Video Cinema Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.video-modal-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.video-modal-content video {
  width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  background: #000;
  outline: none;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  line-height: 1;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Portfolio Page Styles */
.portfolio-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.portfolio-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-item:nth-child(even) {
  direction: rtl;
}

.portfolio-item:nth-child(even) > * {
  direction: ltr;
}

.portfolio-video {
  height: 100%;
}

.portfolio-video .video-thumb {
  aspect-ratio: 9 / 14;
  height: 100%;
}

.portfolio-details {
  padding: 2rem;
}

.portfolio-details h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: var(--dark);
}

.portfolio-location {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.portfolio-details > p {
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.25rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-tags li {
  padding: 5px 14px;
  background: rgba(244, 134, 50, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Portfolio CTA */
.portfolio-cta {
  margin-top: 3rem;
  text-align: center;
}

.portfolio-cta-inner {
  padding: 3rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  color: #fff;
}

.portfolio-cta-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.portfolio-cta-inner p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.portfolio-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.portfolio-cta-buttons .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.portfolio-cta-buttons .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* Video Responsive */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
  }

  .video-play-btn {
    width: 48px;
    height: 48px;
  }

  .video-play-btn svg {
    width: 18px;
    height: 18px;
  }

  .video-info h3 {
    font-size: 0.85rem;
  }

  .video-info p {
    font-size: 0.7rem;
  }

  .video-badge {
    font-size: 0.62rem;
    padding: 3px 8px;
  }

  .portfolio-item {
    grid-template-columns: 1fr;
  }

  .portfolio-item:nth-child(even) {
    direction: ltr;
  }

  .portfolio-video .video-thumb {
    aspect-ratio: 16 / 10;
  }

  .portfolio-details {
    padding: 1.5rem;
  }

  .portfolio-details h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }

  .video-info {
    display: none;
  }

  .video-play-btn {
    width: 40px;
    height: 40px;
  }

  .video-play-btn svg {
    width: 16px;
    height: 16px;
  }

  .video-badge {
    font-size: 0.58rem;
    padding: 2px 6px;
    top: 8px;
    left: 8px;
  }

  .portfolio-cta-inner {
    padding: 2rem 1.5rem;
  }
}
