/* ============================================================
   Maritime Manali — Landing Page Styles
   Mobile-first responsive design
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors */
  --navy: #0B2340;
  --navy-dark: #071a30;
  --steel-blue: #0E6BA8;
  --steel-blue-light: #1a7fc2;
  --orange: #F2A007;
  --orange-hover: #e09400;
  --off-white: #F7F8FA;
  --charcoal: #1E1E1E;
  --gray: #8A94A6;
  --gray-light: #c5cad4;
  --white: #ffffff;

  /* Functional */
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1ebe57;
  --kakao-yellow: #FEE500;
  --shadow-sm: 0 2px 8px rgba(11, 35, 64, 0.08);
  --shadow-md: 0 4px 20px rgba(11, 35, 64, 0.12);
  --shadow-lg: 0 8px 40px rgba(11, 35, 64, 0.18);
  --shadow-card: 0 2px 12px rgba(11, 35, 64, 0.07);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 20px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

p {
  text-align: justify;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--navy);
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 160, 7, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  border-color: var(--whatsapp-green);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-green-hover);
  border-color: var(--whatsapp-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

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

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

.btn-submit {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px 32px;
}

.btn-submit:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 160, 7, 0.35);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo-icon {
  height: 54px;
  width: auto;
  flex-shrink: 0;
}

.logo-img-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--white);
  border: 2px solid var(--white);
  box-shadow: 
    0 4px 10px rgba(0, 0, 0, 0.25), 
    0 1px 3px rgba(0, 0, 0, 0.15),
    inset 0 3px 6px rgba(255, 255, 255, 0.8),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
  position: relative;
}

.logo:hover .logo-img-wrapper {
  transform: translateY(-2px) scale(1.05);
  border-color: var(--orange);
  box-shadow: 
    0 8px 20px rgba(242, 160, 7, 0.35),
    0 2px 6px rgba(242, 160, 7, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.9),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.logo-img-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  pointer-events: none;
}

.logo:hover .logo-img-wrapper::after {
  animation: logo-shine 0.8s ease-in-out;
}

@keyframes logo-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 150%;
  }
}

.logo-img {
  width: 195%;
  max-width: none;
  max-height: none;
  height: auto;
  transform: translateY(7.5%);
}

.footer-logo-wrapper {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}

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

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition-base);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Header CTA */
.header-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(11, 35, 64, 0.75) 0%,
    rgba(11, 35, 64, 0.55) 50%,
    rgba(11, 35, 64, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 850px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2rem, 6vw, 3.8rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 .highlight {
  color: var(--orange);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 36px;
  line-height: 1.7;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Trust Strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 18px 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  padding: var(--section-padding);
  background: var(--off-white);
}

.about-text {
  text-align: justify;
  max-width: 780px;
  margin: 0 auto 48px auto;
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.8;
}

.stat-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  min-width: 200px;
}

.stat-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-badge-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 107, 168, 0.08);
  border-radius: var(--radius-full);
  color: var(--steel-blue);
}

.stat-badge-icon svg {
  width: 26px;
  height: 26px;
}

.stat-badge h4 {
  font-size: 1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-badge p {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: var(--section-padding);
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(138, 148, 166, 0.15);
  transition: all var(--transition-base);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  box-shadow: var(--shadow-sm);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--transition-slow);
  z-index: 1;
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 35, 64, 0.55) 0%, rgba(7, 26, 48, 0.9) 100%);
  z-index: 2;
  transition: background var(--transition-base);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(14, 107, 168, 0.72) 0%, rgba(7, 26, 48, 0.94) 100%);
}

.service-card-content {
  position: relative;
  z-index: 3;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--steel-blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  z-index: 4;
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--orange);
  transition: all var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.15);
  align-self: flex-start;
}

.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--orange);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.service-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.services-closing {
  text-align: center;
  font-style: italic;
  color: var(--gray);
  font-size: 1.05rem;
  padding-top: 12px;
  border-top: 1px solid rgba(138, 148, 166, 0.15);
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-us {
  padding: var(--section-padding);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 107, 168, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(242, 160, 7, 0.3);
}

.why-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 160, 7, 0.12);
  border-radius: var(--radius-md);
  color: var(--orange);
}

.why-card-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
  text-transform: none;
  letter-spacing: 0;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   OWNER / LEADERSHIP SECTION
   ============================================================ */
.owner {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.owner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 50px;
  align-items: center;
  margin-top: 30px;
}

.owner-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 35, 64, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.owner-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
  z-index: 2;
}

.owner-image:hover::before {
  opacity: 0.3;
}

.owner-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.owner-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.owner-content {
  display: flex;
  flex-direction: column;
}

.owner-subtitle {
  color: var(--steel-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.owner-content h3 {
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.owner-quote {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  text-align: justify;
}

.owner-meta {
  margin-bottom: 28px;
  border-left: 3px solid var(--orange);
  padding-left: 16px;
}

.owner-name {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.owner-title {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.owner-cta {
  align-self: flex-start;
}

/* Tablet & Mobile Responsive for Owner Section */
@media (max-width: 1024px) {
  .owner-grid {
    gap: 40px;
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (max-width: 768px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .owner-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .owner-content {
    align-items: center;
    text-align: center;
  }

  .owner-quote {
    text-align: center;
  }

  .owner-meta {
    border-left: none;
    border-top: 3px solid var(--orange);
    padding-left: 0;
    padding-top: 12px;
    display: inline-block;
    align-self: center;
    width: auto;
  }

  .owner-cta {
    align-self: center;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 107, 168, 0.08);
  border-radius: var(--radius-md);
  color: var(--steel-blue);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail-text p {
  text-align: left;
}

.contact-detail-text a:hover {
  color: var(--steel-blue);
}

.contact-apps {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.contact-app-btn svg {
  width: 20px;
  height: 20px;
}

.contact-app-btn.whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
}

.contact-app-btn.whatsapp:hover {
  background: var(--whatsapp-green-hover);
  transform: translateY(-2px);
}

.contact-app-btn.call {
  background: var(--steel-blue);
  color: var(--white);
}

.contact-app-btn.call:hover {
  background: var(--steel-blue-light);
  transform: translateY(-2px);
}

.contact-app-btn.kakao {
  background: var(--kakao-yellow);
  color: #3C1E1E;
}

.contact-app-btn.kakao:hover {
  filter: brightness(0.95);
  transform: translateY(-2px);
}

.contact-app-btn.botim {
  background: #00C8FF;
  color: var(--white);
}

.contact-app-btn.botim:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

.contact-app-btn.email {
  background: var(--navy);
  color: var(--white);
}

.contact-app-btn.email:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

/* Map */
.contact-map {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--off-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(138, 148, 166, 0.12);
}

.contact-form-wrapper h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-transform: none;
  letter-spacing: 0;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(138, 148, 166, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(14, 107, 168, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  color: #1a8a3e;
  font-weight: 500;
  margin-top: 16px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom p {
  text-align: center;
}

/* ============================================================
   FLOATING MOBILE CTA BUTTONS
   ============================================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-btn.whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
}

.floating-btn.call {
  background: var(--orange);
  color: var(--navy);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  /* Header */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .hamburger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  /* Hero */
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-strip {
    gap: 16px;
    padding: 14px 16px;
  }

  .trust-divider {
    display: none;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
  }

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Floating CTA */
  .floating-cta {
    display: flex;
  }

  /* Stat badges */
  .stat-badges {
    gap: 16px;
  }

  .stat-badge {
    padding: 20px 24px;
    min-width: 160px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .contact-apps {
    flex-direction: column;
  }

  .stat-badges {
    flex-direction: column;
    align-items: center;
  }

  .stat-badge {
    width: 100%;
    max-width: 300px;
  }
}
