/* ==========================================================================
   Ultra Field Lawyers - style.css (HYBRID MODE)
   White site background + dark glass header + dark glass footer + gold accents
   Includes: mobile menu, booking move (mobile), Apple slide-up reveal, service card images
   ========================================================================== */

/* -----------------------------
   Reset
------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid rgba(212,175,55,.7); outline-offset: 2px; }

/* -----------------------------
   Theme (Hybrid)
------------------------------ */
:root{
  --bg: #ffffff;     /* changed to pure white */
  --bg-2: #ffffff;

  --ink: #0c0f14;
  --muted: rgba(12,15,20,.70);
  --muted-2: rgba(12,15,20,.55);

  --gold: #d4af37;
  --gold-2: #f0d98a;

  --border-light: rgba(12,15,20,.10);
  --border-light-2: rgba(12,15,20,.14);

  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --shadow-2: 0 12px 32px rgba(0,0,0,.14);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;

  --container: 1160px;
}
/* =========================
   HEADER – MATCH FOOTER
========================= */

.site-header,
header {
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(212,175,55,.08), transparent 60%),
    radial-gradient(900px 600px at 80% 30%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, #050a14 0%, #030815 100%);
  color: #ffffff;
}

/* Glass effect */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(5, 10, 20, 0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Navigation links */
.site-header a,
.site-header nav a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.site-header nav a:hover {
  color: #d4af37;
}

/* Active menu item */
.site-header nav a.active {
  color: #d4af37;
}

/* -----------------------------
   Base
------------------------------ */
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: #ffffff; /* pure white one color */
  overflow-x: hidden;
}

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; line-height: 1.4; color: var(--muted-2); }
.h4{ font-size: 18px; margin: 0; }
.lead-sm{ font-size: 16px; color: rgba(12,15,20,.76); }
::selection{ background: rgba(212,175,55,.22); }

/* -----------------------------
   Glow blob (disabled on white background)
   Keep if you want subtle gold glow: set opacity: .35
------------------------------ */
.top-glow{
  position: fixed;
  inset: -200px auto auto -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.22), transparent 55%);
  filter: blur(22px);
  pointer-events: none;
  z-index: 0;
  opacity: 0; /* changed: remove background glow */
}

/* -----------------------------
   Apple-style reveal animation
------------------------------ */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity .65s cubic-bezier(.2,.8,.2,1),
    transform .65s cubic-bezier(.2,.8,.2,1),
    filter .65s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform, filter;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* -----------------------------
   Header (Dark Glass)
------------------------------ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.20));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

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

.logo{
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}

/* Nav */
.nav{ position: relative; }

.nav-menu{
  display:flex;
  align-items:center;
  gap: 18px;
}

.nav-link{
  font-size: 14px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.84);
  padding: 10px 10px;
  border-radius: 12px;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.nav-link:hover{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.94);
}
.nav-link.is-active{
  background: rgba(212,175,55,.16);
  border: 1px solid rgba(212,175,55,.26);
  color: rgba(255,255,255,.95);
}

.nav-cta{
  display:flex;
  gap: 10px;
  margin-left: 6px;
  align-items:center;
}

.nav-toggle{ display:none; }

/* -----------------------------
   Buttons
------------------------------ */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  letter-spacing: .15px;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease;
  user-select: none;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-block{ width: 100%; }

.btn-gold{
  background: linear-gradient(180deg, rgba(240,217,138,.98), rgba(212,175,55,.94));
  color: rgba(10,10,10,.94);
  border-color: rgba(212,175,55,.40);
  box-shadow: 0 14px 28px rgba(212,175,55,.20);
}
.btn-gold:hover{ box-shadow: 0 18px 42px rgba(212,175,55,.26); }

.btn-ghost{
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
}

/* -----------------------------
   Hero (Dark)
------------------------------ */
.hero{
  position: relative;
  min-height: 88vh;
  display:flex;
  align-items: stretch;
  padding: 34px 0 44px;
  z-index: 1;
  color: rgba(255,255,255,.92);
}

.hero-media{
  position:absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(.9) contrast(1.05) brightness(.60);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 600px at 18% 10%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.78));
}

.hero-vignette{
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% 30%, transparent 45%, rgba(0,0,0,.74) 95%);
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  align-items: start;
}

.hero-copy{ padding-top: 22px; }

.hero h1{
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.lead{
  font-size: 18px;
  color: rgba(255,255,255,.82);
  margin: 12px 0 0;
}

.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-trust{
  margin-top: 18px;
  display:flex;
  gap: 18px;
  flex-wrap: wrap;
}

.trust-item{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
}

.trust-label{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,.68);
  margin-bottom: 2px;
}

.trust-value{
  font-size: 14px;
  color: rgba(255,255,255,.92);
}

.dot{ margin: 0 8px; color: rgba(255,255,255,.60); }

/* Booking card (hero) */
.hero-card{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px rgba(0,0,0,.38);
  overflow: hidden;
}

.hero-card-head{
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom, rgba(255,255,255,.08), transparent);
}

.hero-card-head .muted{
  margin: 6px 0 0;
  color: rgba(255,255,255,.74);
}

/* -----------------------------
   Forms (dark default)
------------------------------ */
.form{ padding: 16px 18px 18px; }

.form label{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,.86);
  margin: 10px 0 6px;
}

.form input,
.form select,
.form textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline: none;
  transition: border-color .14s ease, background .14s ease;
}

.form input::placeholder,
.form textarea::placeholder{ color: rgba(255,255,255,.52); }

.form input:focus,
.form select:focus,
.form textarea:focus{
  border-color: rgba(212,175,55,.65);
  background: rgba(0,0,0,.36);
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

textarea{ resize: vertical; min-height: 110px; }

/* -----------------------------
   Sections (White)
------------------------------ */
.section{
  padding: 74px 0;
  position: relative;
  z-index: 1;
  background: #ffffff; /* ensure white */
}

.section-head{
  max-width: 720px;
  margin-bottom: 26px;
}

.section h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.2px;
}

/* changed: alt section now also pure white (no tint/no gradients) */
.section.alt{
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.split{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

/* -----------------------------
   Practice Cards Grid (4)
------------------------------ */
.cards{
  display:grid;
  gap: 20px;
}

.cards-4{
  grid-template-columns: repeat(4, 1fr);
}

/* -----------------------------
   Service cards with images
------------------------------ */
.card{
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-2);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  border-color: rgba(212,175,55,.26);
}

.card-with-image{ padding: 0; }

.card-image{
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.card-image::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.48));
}

.card-with-image:hover .card-image img{
  transform: scale(1.08);
}

.card-body{
  padding: 18px;
}

.card-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
}

.card-body p{
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(12,15,20,.72);
}

.card-link{
  font-size: 13px;
  font-weight: 650;
  color: #b08a18;
  letter-spacing: .2px;
}

/* -----------------------------
   About mini points + panel
------------------------------ */
.mini-points{
  margin-top: 16px;
  display:grid;
  gap: 10px;
}

.mini-point{
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(12,15,20,.78);
  font-size: 14px;
}

.tick{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(212,175,55,.16);
  border: 1px solid rgba(212,175,55,.28);
  position: relative;
  flex: 0 0 18px;
}
.tick::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-right: 2px solid rgba(160,120,20,.95);
  border-bottom: 2px solid rgba(160,120,20,.95);
  transform: rotate(40deg);
}

.row-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.panel{
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.panel::before{
  content:"";
  position:absolute;
  inset: -60px auto auto -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,.18), transparent 60%);
  filter: blur(10px);
  opacity: .75;
}

.panel-badge{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(12,15,20,.84);
  background: rgba(12,15,20,.06);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}

.panel h3, .panel p, .panel a, .panel .panel-foot{
  position: relative;
  z-index: 1;
}

/* -----------------------------
   Booking mobile section (light)
------------------------------ */
.booking-mobile{
  display: none; /* only on mobile */
  padding-top: 28px;
}

.booking-wrap{
  max-width: 720px;
  margin: 0 auto;
}

.booking-head{
  margin-bottom: 14px;
}

.booking-card-light{
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

/* light form on white background */
.form-light label{ color: rgba(12,15,20,.82); }

.form-light input,
.form-light select,
.form-light textarea{
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(12,15,20,.14);
  color: #0c0f14;
}

.form-light input::placeholder,
.form-light textarea::placeholder{
  color: rgba(12,15,20,.45);
}

/* -----------------------------
   Footer (Black Glass to match header)
------------------------------ */
.footer{
  padding: 44px 0 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,.35));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.85);
}

.footer-inner{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}

.footer-logo{
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.35));
}

.footer-name{
  font-weight: 800;
  letter-spacing: .2px;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

.footer-links a{
  padding: 8px 10px;
  border-radius: 12px;
}
.footer-links a:hover{
  background: rgba(255,255,255,.08);
}

.footer-cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

.footer-bottom{
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer-dev{
  opacity: .75;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}
.footer-dev strong{ font-weight: 750; }

/* -----------------------------
   Mobile Menu (works with your JS)
------------------------------ */
@media (max-width: 900px){
  .logo{ height: 40px; }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:12px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor:pointer;
  }

  .nav-toggle .bars{
    position:relative;
    width:18px;
    height:2px;
    background: rgba(255,255,255,.92);
    border-radius: 2px;
    display:block;
  }
  .nav-toggle .bars::before,
  .nav-toggle .bars::after{
    content:"";
    position:absolute;
    left:0;
    width:18px;
    height:2px;
    background: rgba(255,255,255,.92);
    border-radius: 2px;
  }
  .nav-toggle .bars::before{ top:-6px; }
  .nav-toggle .bars::after{ top: 6px; }

  .nav{ position: relative; }

  .nav-menu{
    display:none;
    position:absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.62);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
  }

  .nav-menu.is-open{
    display:grid;
    gap: 10px;
  }

  .nav-link{
    padding: 12px 12px;
    border-radius: 14px;
  }

  .nav-cta{
    display:grid;
    gap: 10px;
    margin-top: 6px;
  }

  .btn{ width: 100%; }
}

/* -----------------------------
   Responsive layout
------------------------------ */
@media (max-width: 1100px){
  .cards-4{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero{ min-height: auto; padding: 26px 0 28px; }

  /* show booking section below hero */
  .hero-booking-desktop{ display: none; }
  .booking-mobile{ display: block; }
}

@media (max-width: 620px){
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .grid-2{ grid-template-columns: 1fr; }
  .lead{ font-size: 16px; }

  .trust-item{ width: 100%; }

  .cards-4{ grid-template-columns: 1fr; }

  .card-image{ height: 150px; }

  .footer-bottom{ justify-content: center; text-align: center; }
  .footer-logo{ height: 40px; }
}
/* ==============================
   Cards – 2 per row (Services)
============================== */
.cards-2{
  grid-template-columns: repeat(2, 1fr);
}

/* Mobile: 1 per row */
@media (max-width: 620px){
  .cards-2{
    grid-template-columns: 1fr;
  }
}
/* Dark sections ONLY */
.hero,
.hero *,
.site-header,
.site-header *,
.footer,
.footer *{
  color: rgba(255,255,255,.9);
}
/* =====================================
   FORCE DARK TEXT ON LIGHT PAGES
   (About, Services, Contact)
===================================== */

.section,
.page-hero,
.section.alt{
  color: #0c0f14;
}

/* paragraphs & common text */
.section p,
.page-hero p,
.section li,
.section span{
  color: rgba(12,15,20,.78);
}

/* muted text fix */
.section .muted,
.page-hero .muted{
  color: rgba(12,15,20,.65);
}

/* headings */
.section h1,
.section h2,
.section h3,
.section h4,
.page-hero h1,
.page-hero h2{
  color: #0c0f14;
}
/* =====================================
   Contact / Info Cards – text visibility fix
===================================== */

/* force dark text inside light cards */
.card,
.card *{
  color: #0c0f14;
}

/* secondary text */
.card p,
.card span,
.card small{
  color: rgba(12,15,20,.75);
}

/* links like phone & email */
.card a{
  color: #0c0f14;
  font-weight: 600;
}

/* hover effect (optional premium touch) */
.card a:hover{
  color: #b08a18; /* gold accent */
}
/* =====================================
   Contact Cards – force 2×2 grid
===================================== */

.contact-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* IMPORTANT: prevent any card from spanning full width */
.contact-cards .card{
  grid-column: span 1 !important;
}

/* Mobile */
@media (max-width: 720px){
  .contact-cards{
    grid-template-columns: 1fr;
  }
}
/* =====================================
   Contact Form: make inputs readable
===================================== */

/* Light form fields */
.form-light label{
  color: rgba(12,15,20,.85);
}

.form-light input,
.form-light select,
.form-light textarea{
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(12,15,20,.16) !important;
  color: #0c0f14 !important;
}

/* Placeholder visibility */
.form-light input::placeholder,
.form-light textarea::placeholder{
  color: rgba(12,15,20,.45) !important;
}

/* Select text (important on Safari) */
.form-light select{
  color: #0c0f14 !important;
}

/* Focus state */
.form-light input:focus,
.form-light select:focus,
.form-light textarea:focus{
  border-color: rgba(212,175,55,.65) !important;
  box-shadow: 0 0 0 4px rgba(212,175,55,.14);
}
/* =====================================
   Contact page – match Home booking form
===================================== */

.hero-card .form label{
  color: rgba(255,255,255,.86);
}

.hero-card .form input,
.hero-card .form select,
.hero-card .form textarea{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
}

.hero-card .form input::placeholder,
.hero-card .form textarea::placeholder{
  color: rgba(255,255,255,.55);
}

.hero-card .form input:focus,
.hero-card .form select:focus,
.hero-card .form textarea:focus{
  border-color: rgba(212,175,55,.65);
  background: rgba(0,0,0,.36);
}
.page-hero{
  padding-bottom: 24px;
}

.page-hero + .section{
  padding-top: 24px;
}
/* =====================================
   Services cards: text left / image right
===================================== */

.card-split{ padding: 0; }

.card-split-inner{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: stretch;
  gap: 0;
}

/* left content */
.card-content{
  padding: 20px;
}

/* right image */
.card-media{
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(12,15,20,.08);
  min-height: 220px;
}

.card-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.card-split:hover .card-media img{
  transform: scale(1.06);
}

/* keep your 2-in-row grid working */
.cards-2{
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1100px){
  .cards-2{
    grid-template-columns: 1fr;
  }
}

/* mobile: image on top */
@media (max-width: 820px){
  .card-split-inner{
    grid-template-columns: 1fr;
  }
  .card-media{
    order: -1;
    border-left: none;
    border-bottom: 1px solid rgba(12,15,20,.08);
    min-height: 170px;
  }

}

/* =========
   PREMIUM FOOTER (like screenshot)
   ========= */

.footer-pro{
  background: radial-gradient(1200px 700px at 20% 0%, rgba(212,175,55,.08), transparent 60%),
              radial-gradient(900px 600px at 80% 30%, rgba(255,255,255,.06), transparent 55%),
              linear-gradient(180deg, #050a14 0%, #030815 100%);
  color: rgba(255,255,255,.86);
  padding: 64px 24px 0;
}

.footer-pro__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

/* Brand */
.footer-pro__logo img{
  height: 54px;
  width: auto;
  display: block;
}

.footer-pro__text{
  margin: 18px 0 22px;
  line-height: 1.8;
  max-width: 380px;
  opacity: .9;
}

/* Titles */
.footer-pro__title{
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 6px 0 18px;
}

/* Links */
.footer-pro__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.footer-pro__links a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.footer-pro__links a:hover{
  color: #d4af37;
  transform: translateX(2px);
}

/* Social */
.footer-pro__social{
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(212,175,55,.55);
  background: rgba(212,175,55,.10);
}

/* Newsletter */
.footer-pro__sub{
  margin-top: -6px;
  margin-bottom: 18px;
  opacity: .85;
}

.newsletter-form{
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.newsletter-form input{
  height: 56px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 15px;
  outline: none;
}

.newsletter-form input::placeholder{
  color: rgba(255,255,255,.55);
}

.newsletter-form input:focus{
  border-color: rgba(212,175,55,.6);
  box-shadow: 0 0 0 4px rgba(212,175,55,.12);
}

.newsletter-form button{
  height: 56px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 15px;
  color: #0b0b0b;
  background: linear-gradient(135deg, #f2d36b, #d4af37);
  transition: transform .2s ease, box-shadow .2s ease;
}

.newsletter-form button:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(212,175,55,.20);
}

/* Bottom bar */
.footer-pro__bottom{
  max-width: 1200px;
  margin: 54px auto 0;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.footer-pro__credit{
  color: rgba(255,255,255,.65);
}

/* Responsive */
@media (max-width: 980px){
  .footer-pro__wrap{
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px){
  .footer-pro{
    padding: 54px 18px 0;
  }

  .footer-pro__wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-pro__bottom{
    flex-direction: column;
    text-align: center;
  }
}

