/* =============================================
   RESITREND LLC — Global Styles
   Colors: Navy #1B3A6C | White #FFFFFF | Silver #A8B2C0
   ============================================= */

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

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

:root {
  --navy:       #1B3A6C;
  --navy-dark:  #122848;
  --navy-light: #2B4D87;
  --silver:     #A8B2C0;
  --silver-light: #E8ECF1;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(27, 58, 108, 0.10);
  --shadow-lg:  0 8px 48px rgba(27, 58, 108, 0.16);
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--navy-dark); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--gray); max-width: 540px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy); color: var(--white);
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

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

.btn-white {
  background: var(--white); color: var(--navy);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--silver-light);
  transition: var(--transition);
}
.navbar .container { padding-left: 8px; }
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-logo img { height: 64px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--gray-dark);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--navy); transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta .btn { padding: 11px 22px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: var(--transition); border-radius: 2px; }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--silver-light);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px; font-weight: 500; color: var(--gray-dark);
  padding: 12px 0; border-bottom: 1px solid var(--silver-light);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); }
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 76px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  padding: 80px 60px 80px 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--off-white); border: 1px solid var(--silver-light);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--navy); border-radius: 50%; }

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px); font-weight: 900;
  color: var(--navy-dark); line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--navy); font-style: normal; }

.hero-slogan {
  font-size: 18px; font-weight: 600; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -0.2px;
}

.hero-desc {
  font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 36px; max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--gray);
}
.trust-icon { color: var(--navy); font-size: 16px; }
.trust-divider { width: 1px; height: 20px; background: var(--silver-light); }

.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-image img {
  height: 100%; object-fit: cover; object-position: center;
}
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(245,247,250,0.2) 0%, transparent 100%);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(28px, 3vw, 40px); font-weight: 900;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 1.5px;
}

/* =============================================
   PORTFOLIO / GALLERY
   ============================================= */
.portfolio { background: var(--off-white); }
.portfolio-header { margin-bottom: 48px; }
.portfolio-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: auto;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,58,108,0.75) 0%, transparent 60%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label {
  color: var(--white); font-size: 14px; font-weight: 600;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--navy); transform: scaleX(0);
  transition: var(--transition); transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--silver); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--off-white); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.service-name {
  font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px;
}
.service-points { display: flex; flex-direction: column; gap: 6px; }
.service-points li {
  font-size: 13px; color: var(--gray);
  display: flex; align-items: flex-start; gap: 8px;
}
.service-points li::before {
  content: '•'; color: var(--navy); font-size: 16px; line-height: 1.3; flex-shrink: 0;
}

/* =============================================
   WHY RESITREND
   ============================================= */
.why { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}
.why-image {
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-lg);
}
.why-image img { height: 100%; }
.why-content .section-label { margin-bottom: 12px; }
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.why-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--white);
}
.why-item-text h4 {
  font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px;
}
.why-item-text p { font-size: 14px; color: var(--gray); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 80px; line-height: 1;
  color: var(--silver-light);
  font-family: Georgia, serif;
  position: absolute; top: 12px; left: 24px;
}
.testimonial-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
  font-size: 14px; color: #F59E0B;
}
.testimonial-text {
  font-size: 15px; color: var(--gray-dark); line-height: 1.7;
  margin-bottom: 24px; position: relative; z-index: 1;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy-dark); }
.testimonial-role { font-size: 12px; color: var(--gray); }

/* =============================================
   ABOUT STRIP
   ============================================= */
.about-strip {
  background: var(--navy);
  padding: 80px 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip .section-label { color: rgba(255,255,255,0.6); }
.about-strip .section-title { color: var(--white); }
.about-text { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 28px; }
.about-owners { display: flex; gap: 24px; }
.owner-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  flex: 1;
}
.owner-name { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.owner-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.owner-contact { display: flex; flex-direction: column; gap: 4px; }
.owner-contact a { font-size: 12px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.owner-contact a:hover { color: var(--white); }

.about-strip-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.about-stat-num { font-size: 32px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; }

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas { padding: 64px 0; }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 32px; justify-content: center;
}
.area-pill {
  background: var(--off-white);
  border: 1px solid var(--silver-light);
  border-radius: 100px;
  padding: 10px 22px;
  font-size: 14px; font-weight: 500; color: var(--navy-dark);
  transition: var(--transition);
}
.area-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* =============================================
   CONTACT CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0; text-align: center;
}
.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo { margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 44px; width: auto; }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 20px;
}
.footer-roc {
  font-size: 12px; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 5px 14px; display: inline-block;
}
.footer-heading {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-info a, .footer-contact-info span {
  font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(18, 40, 72, 0.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 48px;
  width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: var(--transition);
  position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--off-white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gray); transition: var(--transition);
}
.modal-close:hover { background: var(--silver-light); color: var(--navy); }

.modal-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.modal h3 { font-size: 26px; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--silver-light);
  border-radius: var(--radius);
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--gray-dark); background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,108,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; font-weight: 700; margin-top: 6px; border: none; }

/* =============================================
   PAGE HEADERS (interior pages)
   ============================================= */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.page-hero .section-label { color: rgba(255,255,255,0.6); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-full-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-full-image { height: 200px; overflow: hidden; }
.service-full-image img { height: 100%; transition: transform 0.4s ease; }
.service-full-card:hover .service-full-image img { transform: scale(1.05); }
.service-full-body { padding: 24px; }
.service-full-icon { font-size: 28px; margin-bottom: 12px; }
.service-full-name { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 10px; }
.service-full-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.service-full-points { display: flex; flex-direction: column; gap: 6px; }
.service-full-points li { font-size: 13px; color: var(--gray-dark); display: flex; align-items: flex-start; gap: 8px; }
.service-full-points li::before { content: '✓'; color: var(--navy); font-weight: 700; flex-shrink: 0; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-image { border-radius: 12px; overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); }
.about-intro-image img { height: 100%; }
.about-values { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--silver-light); border-radius: var(--radius); padding: 28px; text-align: center; }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.team-card { background: var(--white); border: 1px solid var(--silver-light); border-radius: var(--radius); padding: 32px; text-align: center; }
.team-avatar { width: 72px; height: 72px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; color: var(--white); margin: 0 auto 16px; }
.team-name { font-size: 17px; font-weight: 700; color: var(--navy-dark); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.team-contact { display: flex; flex-direction: column; gap: 6px; }
.team-contact a { font-size: 13px; color: var(--navy); }
.team-contact a:hover { text-decoration: underline; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: flex-start; }
.contact-info-card { background: var(--navy); border-radius: 12px; padding: 40px; }
.contact-info-card h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.contact-info-card p { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-detail-text h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.45); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { font-size: 14px; color: rgba(255,255,255,0.85); display: block; }
.contact-detail-text a:hover { color: var(--white); text-decoration: underline; }
.contact-creds { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 8px; flex-wrap: wrap; }
.contact-cred { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 5px 12px; font-size: 12px; color: rgba(255,255,255,0.65); }

.contact-form-card { background: var(--white); border: 1px solid var(--silver-light); border-radius: 12px; padding: 40px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy-dark); margin-bottom: 6px; }
.contact-form-card p { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

/* =============================================
   BEFORE & AFTER SLIDER
   ============================================= */
.before-after { background: var(--off-white); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}
.ba-col-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ba-col-right {
  display: flex;
  flex-direction: column;
}
.ba-col-right .ba-project {
  display: flex;
  flex-direction: column;
}
.ba-col-right .ba-slider {
  height: 1016px;
  cursor: row-resize;
}
.ba-project-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.ba-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--navy);
  background: rgba(27,58,108,0.1);
  padding: 6px 16px;
  border-radius: 100px;
}
.ba-hint {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.ba-slider {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 56px rgba(0,0,0,0.2);
  cursor: col-resize;
  user-select: none;
  touch-action: none;
}
.ba-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  image-orientation: none;
}
.ba-before-layer {
  clip-path: inset(0 50% 0 0);
}
.ba-before-layer img { filter: saturate(0.55) brightness(0.8); }
[data-vertical] .ba-before-layer { clip-path: inset(0 0 50% 0); }
.ba-pill {
  position: absolute;
  bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 7px 18px;
  border-radius: 100px;
  pointer-events: none;
}
.ba-pill-before { left: 18px; background: rgba(0,0,0,0.72); color: #fff; }
.ba-pill-after { right: 18px; background: var(--navy); color: #fff; }
[data-vertical] .ba-pill-before { top: 18px; bottom: auto; left: 50%; right: auto; transform: translateX(-50%); }
[data-vertical] .ba-pill-after { bottom: 18px; left: 50%; right: auto; transform: translateX(-50%); }
.ba-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: white;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.ba-handle-btn svg { display: block; }
[data-vertical] .ba-handle-line {
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  width: auto;
  height: 3px;
  transform: translateY(-50%);
  flex-direction: row;
}

/* =============================================
   WHY RESITREND — FULL PHOTO BACKGROUND
   ============================================= */
.why-new {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}
.why-new-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.why-new-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 30, 58, 0.84);
}
.why-new-content {
  position: relative;
  z-index: 2;
}
.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
}
.why-card-icon { font-size: 28px; margin-bottom: 16px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; }

/* =============================================
   HOME GALLERY PREVIEW
   ============================================= */
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.home-gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.home-gallery-item:hover img {
  transform: scale(1.05);
}
.home-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0);
  transition: background 0.3s ease;
}
.home-gallery-item:hover .home-gallery-overlay {
  background: rgba(10, 25, 47, 0.25);
}

/* =============================================
   FULL GALLERY PAGE
   ============================================= */
.full-gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.full-gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

/* =============================================
   TEAM PAGE — TRADES GRID
   ============================================= */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.trade-card {
  background: var(--white);
  border: 1px solid var(--silver-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.trade-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--silver);
}
.trade-icon { font-size: 30px; margin-bottom: 12px; }
.trade-name { font-size: 15px; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.trade-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 40px; }
  .hero-image { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .about-strip-right { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { height: 350px; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .trades-grid { grid-template-columns: repeat(3, 1fr); }
  .full-gallery-grid { columns: 2; }
  .home-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .why-cards-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .full-gallery-grid { columns: 2; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 40px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .gallery-grid { columns: 2; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .about-owners { flex-direction: column; }
  .about-strip-right { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .modal { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-col-right { position: static; }
  .ba-col-right .ba-slider { height: 480px; cursor: row-resize; }
  .ba-pair { grid-template-columns: 1fr; grid-template-rows: 1fr 48px 1fr; }
  .ba-side img { height: 260px; }
  .ba-divider { font-size: 20px; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .full-gallery-grid { columns: 1; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
