/* =======================
   ROOT VARIABLES
======================= */
:root {
  --brand-navy: #0f1f3d;
  --brand-slate: #20345f;
  --brand-mid: #2b4a7c;
  --brand-gold: #d4af37;
  --brand-gold-dark: #a47d1b;
  --surface: #0a162f;
  --surface-alt: #112544;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #eff2f7;
  --gray-200: #d9e1ef;
  --gray-400: #64718f;
  --gray-600: #33415c;
  --gray-800: #141c2b;
  --font-heading: "Lora", serif;
  --font-body: "Source Sans Pro", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: linear-gradient(180deg, #081224 0%, #0f1f3d 50%, #162b56 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.08;
}

p,
ul,
li {
  color: var(--gray-100);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 31, 61, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
}

.site-header .logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-gold);
}

.hero {
  min-height: calc(100vh - 90px);
  background: center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-overlay,
.contact-hero .hero-overlay,
.about-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero .hero-overlay,
.contact-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 22, 47, 0.72), rgba(10, 22, 47, 0.88));
}

.about-hero .hero-overlay {
  background: transparent;
}

.hero-content {
  position: relative;
  max-width: 920px;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.hero h1 {
  font-size: clamp(3rem, 4vw, 4.5rem);
  margin: 1rem auto;
  max-width: 10ch;
}

.hero p {
  font-size: 1.15rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  color: var(--white);
  border: 1px solid transparent;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.section {
  padding: 5rem 2rem;
}

.section h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.section p {
  margin: 0 auto 2rem;
  max-width: 720px;
  color: var(--white);
}

.map-section {
  background: var(--white);
  color: var(--surface);
}

.map-section h2,
.map-section p {
  color: var(--surface);
}

.intro-section .intro-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.intro-grid,
.about-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
}

.company-card,
.about-card,
.company-about-card {
  background: transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: none;
}

.company-card img,
.about-card img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
}

.company-card h2,
.company-card p,
.form-wrapper h2 {
  color: var(--white);
}

.company-about-card,
.about-card,
.why-card {
  background: transparent !important;
}

.company-about-card h2,
.company-about-card p,
.about-card h2,
.about-card p,
.why-card h4,
.why-card p {
  color: var(--white) !important;
}

.panel-card p {
  color: var(--black);
}

.panel-card h3,
.company-card h2 {
  color: var(--black);
}

.why-card p,
.why-card h4 {
  color: var(--white);
}

.contact-details h3 {
  color: var(--white);
}

.contact-details p,
.contact-details li {
  color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.service-card {
  position: relative;
  min-height: 360px;
  border-radius: 1.5rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 29, 54, 0.18), rgba(10, 22, 47, 0.82));
}

.service-card-content {
  position: relative;
  padding: 2rem;
  color: var(--white);
  z-index: 1;
}

.service-card-content h3,
.service-card-content p,
.service-card-content a {
  color: var(--white);
}

.service-card-content h3 {
  margin-bottom: 0.75rem;
}

.service-card-content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.why-grid,
.preview-grid,
.reviews-grid {
  display: grid;
  gap: 1.5rem;
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.review-card,
.panel-card,
.cta-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.why-card {
  background: transparent;
  box-shadow: none;
  padding: 2rem 0;
}

.company-about-card {
  padding: 0;
}

.why-card {
  text-align: left;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.12);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.why-card h4 {
  margin-bottom: 0.65rem;
}

.gallery-preview-section .gallery-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-preview-section .gallery-preview-header p {
  margin: 0;
}

.preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1.25rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.gallery-page {
  background: #080a0e;
  min-height: 100vh;
}

.gallery-viewer {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.gallery-stage {
  width: min(100%, 1200px);
  height: min(76vh, 820px);
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-control {
  position: fixed;
  top: 50%;
  z-index: 5;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.72);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}

.gallery-control-prev {
  left: 1rem;
}

.gallery-control-next {
  right: 1rem;
}

.gallery-control:hover,
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--brand-gold);
}

.gallery-thumbnails {
  width: 100%;
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.5rem 0.25rem;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: 0 0 5.25rem;
  width: 5.25rem;
  height: 4rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  background: transparent;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.review-card strong {
  color: var(--surface);
}

.cta-section {
  padding-top: 0;
}

.cta-card {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cta-card h2 {
  margin-bottom: 1rem;
  color: var(--black);
}

.cta-card p {
  margin-bottom: 1.75rem;
  color: var(--black);
}

.site-footer {
  background: var(--surface);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 2rem;
}

.site-footer p {
  margin: 0.4rem 0;
}

.about-hero {
  background: var(--brand-slate);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 12ch;
  margin: 0 auto 1rem;
}

.about-grid {
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.about-details {
  max-width: 1200px;
  margin: 0 auto;
}

.about-why-grid {
  margin-top: 2.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-hero {
  position: relative;
  min-height: 36vh;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10, 22, 47, 0.78), rgba(10, 22, 47, 0.9));
}

.section-content {
  color: var(--white);
}

.gallery-hero-content,
.gallery-hero-content h1,
.gallery-hero-content p {
  color: var(--black);
}

.contact-hero .section-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.form-wrapper {
  padding: 2.5rem;
}

.form-wrapper h2 {
  color: var(--white);
}

.form-wrapper p {
  color: var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row input,
.form-wrapper textarea {
  width: 100%;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-radius: 0.85rem;
  padding: 1rem 1rem;
}

.form-row input::placeholder,
.form-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-wrapper textarea {
  margin-top: 1rem;
  min-height: 180px;
}

.whatsapp-action {
  margin-top: 1rem;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.whatsapp-button svg {
  width: 2.2rem;
  height: 2.2rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.floating-whatsapp svg {
  width: 3.1rem;
  height: 3.1rem;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
}

.contact-details {
  padding: 1.75rem;
}

.contact-details h3 {
  margin-bottom: 1rem;
}

.contact-details li {
  color: var(--white);
  line-height: 1.8;
}

.contact-details ul {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.85rem;
  margin-left: 1.25rem;
  list-style: disc;
}

.contact-details ul + h3 {
  margin-top: 1.5rem;
}

.map-section {
  padding: 3rem 2rem 5rem;
  text-align: center;
  background: var(--white);
  color: var(--surface);
}

.map-section h2,
.map-section p {
  color: var(--surface);
}

.map-section iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .service-grid,
  .why-grid,
  .preview-grid,
  .reviews-grid,
  .about-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid,
  .intro-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 0.85rem;
  }

  .service-card,
  .preview-grid img,
  .review-card,
  .why-card,
  .panel-card,
  .cta-card {
    border-radius: 1rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

footer {
  background: var(--gray-100);
  text-align: center;
  padding: 0; /* 🔥 removed padding */
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 768px) {
  .nav-links { gap: var(--space-sm); }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .section h2 { font-size: 1.75rem; }
}
