/* =========================
   GLASS THEME - FINAL REMADE
   ACCENT-RESPONSIVE / LIGHT GLASS
   ========================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f7fbfd;
  --card: rgba(255, 255, 255, 0.42);
  --card-border: rgba(255, 255, 255, 0.72);
  --text: #1f2a33;
  --muted: #617585;

  --header-bg: rgba(255, 255, 255, 0.34);
  --header-border: rgba(255, 255, 255, 0.70);

  --menu-bg: rgba(255, 255, 255, 0.70);
  --menu-border: rgba(255, 255, 255, 0.76);

  --overlay-bg: rgba(18, 28, 36, 0.12);

  --input-bg: rgba(255, 255, 255, 0.46);
  --input-border: rgba(255, 255, 255, 0.78);

  --footer-bg: linear-gradient(180deg, rgba(250,252,253,0.98), rgba(242,247,250,1));
  --footer-bottom: #708391;

  --hero-overlay: rgba(28, 40, 48, 0.16);

  --shadow: 0 14px 34px rgba(31, 56, 74, 0.06);
  --radius: 24px;
}

/* =========================
   BACKGROUND
   ========================= */

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.96), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(255,255,255,0.78), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

/* =========================
   GENERAL SPACING / TYPE
   ========================= */

.section {
  padding: 100px 0;
}

.section-heading {
  letter-spacing: -0.04em;
}

.section-text {
  color: var(--muted);
}

/* =========================
   HEADER
   ========================= */

.site-header {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 6px 18px rgba(31,56,74,0.05);
}

.header-inner {
  min-height: 84px;
}

.logo-wrap {
  gap: 16px;
}

.logo-text {
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* =========================
   MENU TOGGLE
   ========================= */

.menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow:
    0 8px 20px rgba(31,56,74,0.05),
    inset 0 1px 0 rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.menu-toggle:hover {
  transform: translateY(-2px);
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* =========================
   MOBILE MENU
   ========================= */

.mobile-menu {
  width: min(90vw, 380px);
  background: linear-gradient(180deg, rgba(255,255,255,0.76), rgba(247,251,253,0.90));
  border-left: 1px solid rgba(255,255,255,0.78);
  box-shadow: -18px 0 32px rgba(31,56,74,0.06);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.mobile-menu-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.56);
}

.mobile-menu h4 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.close-menu {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.74);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu nav {
  gap: 12px;
}

.mobile-menu nav a {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.34));
  border: 1px solid rgba(255,255,255,0.74);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  box-shadow:
    0 8px 20px rgba(31,56,74,0.04),
    inset 0 1px 0 rgba(255,255,255,0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-menu nav a:hover {
  transform: translateX(6px);
  color: var(--accent);
}

.mobile-menu nav a.mobile-quote-link {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: var(--text-on-accent) !important;
  border-color: transparent !important;
}

.menu-overlay {
  background: rgba(18, 28, 36, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* =========================
   HERO
   ========================= */

.hero::after {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.40), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.24), transparent 30%);
}

.hero h1 {
  text-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.hero p {
  color: rgba(255,255,255,0.96);
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-on-accent);
  border: 0;
  box-shadow: 0 10px 24px rgba(31,56,74,0.08);
}

.btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,255,255,0.28));
  border: 1px solid rgba(255,255,255,0.76);
  color: var(--text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 8px 20px rgba(31,56,74,0.04),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

/* =========================
   GLASS CARDS
   ========================= */

.icon-box,
.gallery-item,
.team-card,
.image-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.74);
  box-shadow:
    0 12px 30px rgba(31,56,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* 🔥 STRONGER FORM CARD (important) */
.form-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.40));
  border: 1px solid rgba(255,255,255,0.86);
  box-shadow:
    0 16px 34px rgba(31,56,74,0.08),
    inset 0 1px 0 rgba(255,255,255,0.76);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.icon-box:hover,
.gallery-item:hover,
.team-card:hover,
.image-card:hover {
  box-shadow:
    0 18px 40px rgba(31,56,74,0.10),
    inset 0 1px 0 rgba(255,255,255,0.74);
}

.image-card,
.gallery-item,
.team-card {
  border-radius: 24px;
}

/* =========================
   ICONS
   ========================= */

.icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-on-accent);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.42),
    0 10px 20px rgba(31,56,74,0.08);

  /* 👇 ADD THESE */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  line-height: 1;
}

.icon-box h3 {
  font-size: 1.4rem;
}

.icon-box p {
  color: var(--muted);
}

/* =========================
   INPUTS (FIXED VISIBILITY)
   ========================= */

input,
textarea,
select {
  width: 100%;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(95, 125, 145, 0.28);
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 6px 16px rgba(31,56,74,0.04);

  transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(97,117,133,0.72);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent);

  box-shadow:
    0 0 0 4px rgba(70, 202, 233, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

/* =========================
   FORM TEXT IMPROVEMENTS
   ========================= */

.form-card .section-heading {
  color: var(--text);
}

.form-card .section-text,
.form-card label {
  color: #526574;
  font-weight: 600;
}

/* =========================
   GALLERY / TEAM
   ========================= */

.gallery-item img,
.team-image-wrap img {
  height: 340px;
}

.gallery-item::after,
.image-card::after {
  background: linear-gradient(180deg, transparent, rgba(24,34,44,0.14));
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  padding: 90px 0 120px;
  background: linear-gradient(180deg, rgba(250,252,253,0.98), rgba(242,247,250,1));
  border-top: 1px solid rgba(255,255,255,0.70);
}

.footer-grid {
  gap: 34px;
}

.footer-brand,
.footer-nav,
.footer-details,
.footer-social {
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.18));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow:
    0 10px 26px rgba(31,56,74,0.05),
    inset 0 1px 0 rgba(255,255,255,0.65);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 24px;
  padding: 24px;
}

.footer-brand p,
.footer-details p,
.footer-social a,
.footer-nav a {
  color: var(--muted);
}

.footer-social {
  gap: 12px;
}

.footer-social a,
.footer-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social a:hover,
.footer-details a:hover,
.footer-nav a:hover {
  color: var(--accent);
}

.footer-nav a::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.52);
  color: var(--footer-bottom);
}

/* =========================
   MAP / STICKY / CREDIT
   ========================= */

.map-wrap {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.74);
}

.sticky-bar {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 -10px 24px rgba(31,56,74,0.08);
}

.sticky-call {
  border-top: 1px solid rgba(255,255,255,0.54);
}

.sticky-call::before {
  background: linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.24));
}

.sticky-call::after {
  background: rgba(18, 28, 36, 0.10);
}

.sticky-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--text-on-accent);
}

.sticky-cta:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.image-credit-overlay {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255,255,255,0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1f2a33;
}

.image-credit-overlay a {
  color: #1f2a33;
}

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

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

  .btn {
    min-height: 54px;
    border-radius: 14px;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .footer-brand,
  .footer-nav,
  .footer-details,
  .footer-social {
    padding: 18px;
  }
}