/* ============================================
   MrMcLights — Maritime Professional Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #0F1D35;
  --navy-mid:    #1F3260;
  --navy-light:  #253A5E;
  --amber:       #D4A843;
  --amber-light: #E8C068;
  --amber-dark:  #B8902E;
  --white:       #FFFFFF;
  --off-white:   #F4F6F9;
  --gray-light:  #E4E9F0;
  --gray:        #8B9CB6;
  --text-dark:   #111827;
  --text-medium: #374151;
  --text-light:  #6B7280;
  --shadow-sm:   0 2px 8px rgba(15, 29, 53, 0.12);
  --shadow-md:   0 4px 20px rgba(15, 29, 53, 0.18);
  --shadow-lg:   0 8px 40px rgba(15, 29, 53, 0.25);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.25rem; }

p { color: var(--text-medium); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--dark {
  background: var(--navy-dark);
  color: var(--white);
}
.section--dark h2,
.section--dark h3 { color: var(--white); }
.section--dark p   { color: var(--gray-light); }

.section--gray { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy-dark);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: var(--navy-dark);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 24px; height: 24px; color: var(--navy-dark); }

.logo span { color: var(--amber); }

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--amber); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--amber-light); }
.nav-phone svg { width: 16px; height: 16px; }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav .mobile-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 0 0;
}

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; max-width: 280px; }

.footer-col h4 {
  color: var(--amber);
  font-size: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--gray);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--gray);
  font-size: 0.95rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--amber); margin-top: 3px; }
.footer-contact-item a { color: var(--gray); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--amber); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--amber); color: var(--amber); }
.footer-socials svg { width: 16px; height: 16px; }

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://source.unsplash.com/atsXDz_wk3A/1600x900');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 29, 53, 0.95) 0%,
    rgba(15, 29, 53, 0.75) 60%,
    rgba(15, 29, 53, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-badge svg { width: 14px; height: 14px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-top: 3px solid var(--amber);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.trust-item svg { width: 20px; height: 20px; color: var(--amber); flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   SERVICES OVERVIEW (Homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.service-card:hover .service-icon { background: rgba(212, 168, 67, 0.12); }
.service-icon svg { width: 28px; height: 28px; color: var(--navy); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: var(--amber-dark); }

.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.95rem; line-height: 1.6; color: var(--text-light); }

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--amber);
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .small { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; }

.about-content .section-label { margin-bottom: 8px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p  { margin-bottom: 16px; }

.credential-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.credential-item svg {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--amber);
  opacity: 0.3;
}
.quote-icon svg { width: 32px; height: 32px; }

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.stars svg { width: 16px; height: 16px; color: var(--amber); fill: var(--amber); }

.testimonial-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--amber);
  font-size: 1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}
.author-info span {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
}

.testimonial-note {
  text-align: center;
  margin-top: 32px;
  color: var(--gray);
  font-size: 0.85rem;
  font-style: italic;
  opacity: 0.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border-top: 3px solid var(--amber);
  padding: 72px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p  { color: var(--gray-light); max-width: 500px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero .section-label { margin-bottom: 8px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; }

/* Services page category sections */
.service-category { padding: 72px 0; }
.service-category:nth-child(even) { background: var(--off-white); }

.service-category-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-category-inner.reverse { direction: rtl; }
.service-category-inner.reverse > * { direction: ltr; }

.service-category-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-category-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-category-image:hover img { transform: scale(1.03); }

.category-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--amber);
  color: var(--navy-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

.service-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--text-medium);
}

.service-list li svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.about-story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.cert-badges {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 14px 18px;
}

.cert-badge svg { width: 24px; height: 24px; color: var(--amber); }
.cert-badge strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.cert-badge span   { display: block; font-size: 0.78rem; color: var(--text-light); }

.why-mobile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg { width: 32px; height: 32px; color: var(--amber); }
.why-card h3  { font-size: 1.2rem; margin-bottom: 10px; }
.why-card p   { font-size: 0.93rem; color: var(--text-light); }

.service-area {
  background: var(--navy-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  margin-top: 20px;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.area-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-cta { text-align: center; }
.area-cta p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.area-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.area-phone svg { width: 28px; height: 28px; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 29, 53, 0.6);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 36px; height: 36px; color: var(--white); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info > p { margin-bottom: 36px; }

.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: var(--amber); }

.contact-method strong {
  display: block;
  font-size: 0.8rem;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.contact-method a,
.contact-method span {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition);
}
.contact-method a:hover { color: var(--amber-dark); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 2px solid var(--gray-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-medium);
  transition: all var(--transition);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { color: var(--text-light); margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group:last-child { margin-bottom: 0; }

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.97rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ============================================
   ANIMATIONS (Intersection Observer)
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-preview { gap: 48px; }
  .service-category-inner { gap: 40px; }
  .about-story { gap: 48px; }
  .contact-layout { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 100px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .trust-bar-inner { gap: 20px; justify-content: flex-start; }
  .trust-divider { display: none; }

  .about-preview { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 16px; bottom: -20px; }
  .about-image-wrapper { margin-bottom: 24px; }

  .service-category-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-category-inner.reverse { direction: ltr; }

  .about-story { grid-template-columns: 1fr; }

  .gallery-grid { columns: 2; }

  .contact-layout { grid-template-columns: 1fr; }

  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

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

  .service-area { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .area-list { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-mobile { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
}
