/* -------------------------
   BASE & COLOURS
-------------------------- */
* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

:root{
  --bg:#f6f8fb;
  --bg-soft:#edf4f7;
  --card:#ffffff;
  --accent:#00b8a9;
  --accent-soft:#b0f1ea;
  --accent-dark:#00877b;
  --navy:#1b2738;
  --muted:#6b7280;
  --shadow-soft:0 10px 30px rgba(15,23,42,0.12);
  --radius-lg:18px;
  --radius-md:12px;
}

body.page{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: #1f2933;
  line-height: 1.6;
  opacity: 0;
  transition: opacity .25s ease;
}

body.page.page-loaded{ opacity: 1; }
body.page.fade-out{ opacity: 0; }

/* -------------------------
   HEADER / NAV
-------------------------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 6%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(15,23,42,0.08);
}

.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}

.logo-img{
  height:50px;
  width:auto;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(0,184,169,0.4);
  background:#111;
}

.logo-text{ display:flex; flex-direction:column; }

.logo-title{
  font-weight:700;
  letter-spacing:.045em;
  text-transform:uppercase;
  font-size:.95rem;
  color: var(--navy);
}

.logo-subtitle{
  font-size:.78rem;
  color: var(--muted);
}

.main-nav{
  display:flex;
  flex-wrap: wrap;          /* IMPORTANT: never disappears */
  justify-content:flex-end;
  gap: 10px;
}

.nav-link{
  font-size:.95rem;
  text-decoration:none;
  color: var(--muted);
  padding: 7px 12px;
  border-radius:999px;
  position:relative;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.nav-link::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background: var(--accent);
  transform: translateX(-50%);
  transition: width .2s ease;
}

.nav-link:hover{
  color: var(--navy);
  background: rgba(0,184,169,0.08);
}

.nav-link:hover::after{ width: 50%; }

.nav-link.active{
  background: var(--accent);
  color:#fff;
  font-weight:600;
}

/* -------------------------
   SECTIONS / TYPO
-------------------------- */
.section{ padding: 30px 6% 28px; }
.section-soft{ background: var(--bg-soft); }

.page-hero{
  padding: 28px 6% 10px;
}

.page-hero h1{
  margin: 0 0 6px;
  font-size: 1.8rem;
  color: var(--navy);
}

.page-hero p{
  margin: 0;
  color: var(--muted);
  max-width: 650px;
}

.section-title{
  font-size: 1.7rem;
  margin: 0 0 8px;
  color: var(--navy);
}

.section-intro{
  max-width: 720px;
  color: var(--muted);
  margin: 0 auto 20px;
  font-size: .96rem;
  text-align:center;
}

/* -------------------------
   CARDS / GRID
-------------------------- */
.service-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
  border: 1px solid rgba(148,163,184,0.25);
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.service-card h3{
  margin: 6px 0 0;
  color: var(--navy);
}

.service-card p{
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.service-img{
  width:100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* -------------------------
   GALLERY (ONE SYSTEM)
-------------------------- */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item{
  border-radius: 14px;
  overflow:hidden;
  cursor:pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
  background: #fff;
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit: cover;
  display:block;
}

/* -------------------------
   LIGHTBOX
-------------------------- */
.lightbox{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,0.86);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
  padding: 24px;
}

.lightbox.open{ display:flex; }

.lightbox img{
  max-width: 95%;
  max-height: 92vh;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* -------------------------
   FOOTER
-------------------------- */
.site-footer{
  padding: 14px 6%;
  font-size: .8rem;
  color: var(--muted);
  text-align:center;
  margin-top: 26px;
}

/* -------------------------
   RESPONSIVE
-------------------------- */
@media (max-width: 900px){
  .site-header{
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav{
    justify-content: center; /* nav still shows */
  }
}

/* =========================
   HOME PAGE FIX
========================= */

.hero {
    padding: 40px 6% 30px;
}

.hero-soft {
    background: radial-gradient(circle at top left, #e3f6f5, #f6f8fb);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 28px;
    align-items: center;
}

.hero-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.12);
    object-fit: cover;
}

.image-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.image-strip img {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(15,23,42,0.1);
}

/* =========================
   CONTACT IMAGE FIX
========================= */

.contact-layout img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 18px;
}

/* =========================
   CONTACT CARD POLISH
========================= */

.contact-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    background: #f9fafb;
}
/* =========================
   CONTACT PAGE – HARD FIX
========================= */

.contact-layout > div:first-child {
    max-height: 360px;
    overflow: hidden;
    border-radius: 20px;
}

.contact-layout > div:first-child img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}
/* =========================
   CONTACT CARD – REBUILD
========================= */

.contact-card {
    background: linear-gradient(180deg, #ffffff, #f9fafb);
    padding: 28px;
    border-radius: 22px;
    box-shadow:
        0 10px 25px rgba(15,23,42,0.12),
        0 30px 60px rgba(15,23,42,0.08);
    border: 1px solid rgba(148,163,184,0.22);
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.contact-form label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.5);
    padding: 10px 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00b8a9;
}
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout > div:first-child {
        height: 240px;
    }

    .contact-layout > div:first-child img {
        height: 240px;
    }
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.hero-text {
  flex: 1.2;
}

.hero-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    max-width: 300px;
  }
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.shop-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.shop-card img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.shop-card h3 {
  margin: 10px 0 5px;
}

.shop-card p {
  font-size: 0.95rem;
}

.shop-card .price {
  display: block;
  font-weight: bold;
  margin: 12px 0;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.contact-image img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.08);
}

.btn-primary {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-image {
    order: -1;
  }
}
/* Contact form buttons (Send + Messenger) */
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.form-actions .btn-primary,
.form-actions .btn-messenger {
  flex: 1;
  text-align: center;
}

.btn-messenger {
  background: #0084ff;
  color: #fff;
  padding: 12px 0;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  border: none;
}

.btn-messenger:hover {
  background: #006fe0;
}
/* Thank You Page */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
}
/* Thank You Page – GMR style */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f2f7f7, #ffffff);
}

.thank-you-card {
  background: #ffffff;
  padding: 55px 45px;
  border-radius: 16px;
  text-align: center;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #0fa3a3; /* teal accent */
}

/* Logo background highlight */
.thank-you-logo-wrap {
  width: 190px;
  height: 190px;
  margin: 0 auto 34px;
  border-radius: 22px; /* rounded square */
  background: linear-gradient(135deg, #1bb5aa, #0fa3a3);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 6px;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.25),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.thank-you-logo {
  max-width: 125px;
  opacity: 0.95;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,0.25));
}

.thank-you-card h1 {
  color: #0fa3a3;
  font-weight: 700;
  margin-bottom: 18px;
}

.thank-you-card .lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 10px;
}

.thank-you-card p {
  color: #555;
  margin-bottom: 28px;
}

/* Button uses existing site style */
.thank-you-card .btn-primary {
  background: #0fa3a3;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.25s ease, transform 0.15s ease;
}

.thank-you-card .btn-primary:hover {
  background: #0c8c8c;
  transform: translateY(-1px);
}

