/* ============================================
   BOR Staal Constructies
   Custom Styles — Dark Industrial / Gold
   ============================================ */

/* --- Variables --- */
:root {
  --primary: #C8A04A;
  --primary-dark: #a8832e;
  --secondary: #2C2C2C;
  --dark: #1a1a1a;
  --text: #444;
  --text-dark: #2C2C2C;
  --light-bg: #f5f5f3;
  --warm-white: #fafaf8;
  --steel-gray: #6b7280;
  --border: #ddd;
  --white: #fff;
  --font-heading: 'Exo 2', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

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

ul { list-style: none; padding: 0; margin: 0; }

.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}
#preloader.loaded {
  opacity: 0;
  pointer-events: none;
}
.loader {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(200,160,74,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 10px;
  position: relative;
}
.section-title .subtitle::before,
.section-title .subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 2px;
  background: var(--primary);
}
.section-title .subtitle::before { right: calc(100% + 15px); }
.section-title .subtitle::after { left: calc(100% + 15px); }
.section-title h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--secondary);
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--text);
}

/* --- Top Bar --- */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 14px;
  color: #999;
  border-bottom: 1px solid rgba(200,160,74,0.2);
}
.top-bar a {
  color: #bbb;
  margin-right: 20px;
}
.top-bar a:hover { color: var(--primary); }
.top-bar i { color: var(--primary); margin-right: 6px; }
.top-bar .social-links a {
  margin-right: 0;
  margin-left: 12px;
  font-size: 14px;
}

/* --- Header / Navbar --- */
.main-header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.main-header .navbar {
  padding: 10px 0;
}
.main-header .navbar-brand img {
  max-height: 90px;
  width: auto;
}
.main-header .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary) !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 18px !important;
  transition: var(--transition);
}
.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: var(--primary) !important;
}
.main-header .btn-contact {
  background: var(--secondary);
  color: var(--white) !important;
  border-radius: 3px;
  padding: 10px 24px !important;
  margin-left: 10px;
  border: 2px solid var(--secondary);
}
.main-header .btn-contact:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
}

/* --- Hero / Slider --- */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 580px;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 90vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content .hero-subtitle {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 18px;
  border-left: 3px solid var(--primary);
  padding-left: 14px;
}
.hero-content h1 {
  color: var(--white);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero-content h1 span {
  color: var(--primary);
}
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 560px;
}
.hero-content .btn-hero {
  display: inline-block;
  padding: 15px 38px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
  transition: var(--transition);
}
.btn-primary-custom {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  margin-left: 12px;
}
.btn-outline-custom:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
  font-weight: 700;
}

/* Swiper pagination */
.hero-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
}
.hero-section .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* --- Features Strip --- */
.features-strip {
  background: var(--secondary);
  padding: 0;
  position: relative;
  z-index: 10;
  border-top: 3px solid var(--primary);
}
.feature-item {
  padding: 35px 30px;
  text-align: center;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(200,160,74,0.12); }
.feature-item i {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
  color: var(--primary);
}
.feature-item h5 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 7px;
  font-family: var(--font-heading);
}
.feature-item p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin: 0;
}

/* --- About Section --- */
.about-section { background: var(--white); }
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: 4px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-img-wrap .experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--secondary);
  padding: 22px 28px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(200,160,74,0.35);
}
.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  display: block;
  color: var(--secondary);
}
.experience-badge span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--secondary);
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 15px; }
.about-list {
  margin: 22px 0;
}
.about-list li {
  padding: 7px 0;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.about-list li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 15px;
  flex-shrink: 0;
}

/* --- Services --- */
.services-section { background: var(--light-bg); }
.service-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-bottom-color: var(--primary);
}
.service-card .icon {
  width: 82px;
  height: 82px;
  background: rgba(200,160,74,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
  border: 2px solid rgba(200,160,74,0.2);
}
.service-card:hover .icon {
  background: var(--primary);
  border-color: var(--primary);
}
.service-card .icon i {
  font-size: 30px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .icon i { color: var(--secondary); }
.service-card h4 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--secondary);
}
.service-card p {
  font-size: 14px;
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}
.service-card .read-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}
.service-card .read-more i {
  font-size: 11px;
  transition: var(--transition);
}
.service-card:hover .read-more i {
  transform: translateX(4px);
}

/* --- Counters --- */
.counter-section {
  background: var(--secondary);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/8e15aa00-7233-4d08-a4be-a3ddd22b3706.jpg') center/cover;
  opacity: 0.06;
}
.counter-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.counter-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.counter-item .count {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item p {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}
.counter-divider {
  position: relative;
  z-index: 1;
  width: 1px;
  background: rgba(255,255,255,0.1);
  height: 80px;
  align-self: center;
}

/* --- Gallery / Projects --- */
.gallery-section { background: var(--white); }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 {
  color: var(--white);
  font-size: 17px;
  margin: 0 0 4px;
}
.gallery-overlay span {
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.gallery-overlay .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 16px;
}

/* --- Lightbox --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  color: var(--white);
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { opacity: 1; color: var(--primary); }

/* --- Filter Buttons --- */
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 24px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* --- Service Detail (diensten page) --- */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid #eee;
}
.service-detail:last-child { border-bottom: none; }
.service-detail.bg-alt { background: var(--light-bg); }
.service-detail-img {
  border-radius: 4px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.service-detail h3 {
  font-size: 34px;
  margin-bottom: 15px;
  color: var(--secondary);
}
.service-detail .service-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.service-detail-list li {
  padding: 7px 0;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
}
.service-detail-list li i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 14px;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 110px 0;
  background: url('../images/2d3bcd35-e9ab-40a1-b266-cc161c270336.jpg') center/cover fixed;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.88);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content h2 {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 15px;
}
.cta-content h2 span { color: var(--primary); }
.cta-content p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 35px;
}
.btn-cta {
  display: inline-block;
  padding: 17px 44px;
  background: var(--primary);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}
.btn-cta:hover {
  background: transparent;
  color: var(--white);
}
.btn-cta-outline {
  display: inline-block;
  padding: 17px 44px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  margin-left: 15px;
}
.btn-cta-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* --- Contact --- */
.contact-section { background: var(--white); }
.contact-info-card {
  background: var(--secondary);
  border-radius: 4px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.contact-info-card:hover {
  border-bottom-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.contact-info-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 18px;
  display: block;
}
.contact-info-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
}
.contact-info-card p, .contact-info-card a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
}
.contact-info-card a:hover { color: var(--primary); }
.contact-form .form-control {
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 18px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--warm-white);
  color: var(--text-dark);
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200,160,74,0.15);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.btn-submit {
  display: inline-block;
  padding: 15px 42px;
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--secondary);
}

/* --- Map placeholder --- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--light-bg);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--steel-gray);
  border: 2px dashed #ddd;
}
.map-placeholder i { font-size: 48px; margin-bottom: 12px; color: var(--primary); }

/* --- Page Header / Breadcrumb --- */
.page-header {
  background: var(--secondary);
  padding: 110px 0 65px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/8e3cc7bd-b44a-49e7-8e2d-5512c56e4916.jpg') center/cover;
  opacity: 0.12;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.page-header * { position: relative; z-index: 1; }
.page-header h1 {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 12px;
  font-weight: 800;
}
.page-header .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.page-header .breadcrumb-item a:hover { color: var(--primary); }
.page-header .breadcrumb-item.active {
  color: var(--primary);
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.3);
}

/* --- About Page extras --- */
.value-card {
  padding: 35px 25px;
  text-align: center;
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  height: 100%;
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.value-card:hover {
  border-top-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.value-card i {
  font-size: 44px;
  color: var(--primary);
  margin-bottom: 18px;
  display: block;
}
.value-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}
.value-card p { font-size: 15px; margin: 0; }

.team-img {
  border-radius: 4px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  padding: 75px 0 0;
  color: #777;
  border-top: 3px solid rgba(200,160,74,0.3);
}
.footer h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 14px;
  font-family: var(--font-heading);
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
}
.footer p { font-size: 15px; line-height: 1.8; color: #777; }
.footer-links li {
  padding: 5px 0;
}
.footer-links li a {
  color: #777;
  font-size: 15px;
  transition: var(--transition);
}
.footer-links li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-links li a i {
  margin-right: 8px;
  color: var(--primary);
  font-size: 11px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
}
.footer-contact li i {
  color: var(--primary);
  font-size: 15px;
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: #777;
}
.footer-contact li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  margin-top: 55px;
  text-align: center;
  font-size: 14px;
  color: #555;
}
.footer-bottom a { color: var(--primary); }

/* --- Scroll to Top --- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 3px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover { background: var(--primary-dark); }

/* --- WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .hero-content h1 { font-size: 40px; }
  .section-title h2 { font-size: 32px; }
  .hero-section, .hero-slide { height: 75vh; min-height: 480px; }
  .features-strip { }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cta-content h2 { font-size: 34px; }
  .about-img-wrap { margin-bottom: 50px; }
  .experience-badge { right: 10px; bottom: -10px; }
  .service-detail-img { height: 320px; }
}

@media (max-width: 767px) {
  .hero-content h1 { font-size: 30px; }
  .hero-content p { font-size: 16px; }
  .hero-content .hero-subtitle { font-size: 11px; }
  .section-padding { padding: 65px 0; }
  .section-title h2 { font-size: 28px; }
  .counter-item .count { font-size: 42px; }
  .counter-item { margin-bottom: 30px; }
  .page-header h1 { font-size: 34px; }
  .btn-outline-custom { margin-left: 0; margin-top: 10px; display: inline-block; }
  .top-bar { display: none; }
  .gallery-item img { height: 230px; }
  .service-detail-img { height: 260px; }
  .team-img { height: 350px; }
  .cta-content h2 { font-size: 26px; }
  .btn-cta-outline { margin-left: 0; margin-top: 12px; display: inline-block; }
}
