/* ================================================
   ASTROLOGER YOGI RAJ SHASTRI — RESPONSIVE CSS
   Mobile-first | Gold & Navy | Clean & Readable
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;500;600;700&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* ── Design Tokens ── */
:root {
    --navy:     #01095b;
    --navy-dk:  #000b3d;
    --navy-li:  #0a1870;
    --gold:     #ffa202;
    --gold-dk:  #d98400;
    --gold-li:  #ffe5a0;
    --cream:    #fdf8f0;
    --white:    #ffffff;
    --text:     #222222;
    --muted:    #555555;
    --red:      #c8000a;
    --green:    #25d366;

    --ff-display: 'Cinzel Decorative', serif;
    --ff-head:    'Cinzel', serif;
    --ff-body:    'Lato', sans-serif;

    --shadow-sm:   0 2px 12px rgba(1,9,91,0.08);
    --shadow-md:   0 6px 28px rgba(1,9,91,0.13);
    --shadow-gold: 0 6px 28px rgba(255,162,2,0.22);
    --r:  12px;
    --rs: 8px;
    --trans: 0.35s cubic-bezier(.4,0,.2,1);

    /* Section padding scales with screen */
    --sec-py: clamp(40px, 7vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
p { font-size: 14px; line-height: 1.8; color: var(--muted); }

/* Scoped to avoid conflict */
.astro-main-container {
  width: 100%;
  background: url("../images/bg.png") repeat center;
  background-attachment: fixed;
  font-family: "Quicksand", sans-serif;
}

/* Container */
.astro-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Top Header */
.astro-header-top {
  background: #01095b;
  color: #fff;
  padding: 8px 0;
}

.astro-header-top .astro-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Marquee Animation */
.astro-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 70%;
}

.astro-marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Phone Section */
.astro-phone {
  text-align: right;
}

.astro-phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
}

.astro-phone span {
  font-size: 14px;
}

/* Header */
.astro-header {
  background: #fff;
  padding: 15px 0;
}

.astro-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.astro-logo {
  flex: 1;
  text-align: center;
}

.astro-logo img {
  max-width: 100%;
  height: auto;
}

/* Banner */
.astro-banner img {
  width: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .astro-marquee {
    width: 100%;
    margin-bottom: 10px;
  }

  .astro-phone {
    width: 100%;
    text-align: center;
  }

  .astro-flex {
    flex-direction: column;
  }

  .astro-logo {
    margin-bottom: 15px;
  }
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 16px;
}


/* ===== TOP BAR ===== */
.astro-topbar {
    background: #0b1a6b;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    overflow: hidden;
}

.astro-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

/* ===== Smooth Scrolling Text ===== */
.astro-marquee {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.astro-marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 18s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== Right Contact Box ===== */
.astro-contact-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Call Button */
.call-btn {
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.call-btn i {
    margin-right: 6px;
}


/* Ask Question Button */
.ask-btn {
    background: #ffffff;
    color: #0b1a6b;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s ease;
}

.ask-btn:hover {
    background: #ffd700;
    color: #000;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {

    .astro-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .astro-marquee {
        width: 100%;
    }

    .astro-contact-box {
        justify-content: center;
    }
}


/* ── Section Utility ── */
.pg-section { padding: var(--sec-py) 0; }
.bg-white  { background: var(--white); }
.bg-cream  { background: var(--cream); }
.mt-16 { margin-top: 16px; }

/* ── Section Heading ── */
.sec-head { margin-bottom: clamp(28px, 5vw, 48px); }
.sec-head.center { text-align: center; }

.sub-label {
    display: block;
    font-family: var(--ff-head);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 8px;
}
.sub-label.light { color: var(--gold-li); }

.sec-title {
    font-family: var(--ff-display);
    font-size: clamp(20px, 4vw, 36px);
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 14px;
}

/* Ornament line */
.ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.ornament.left-orn { justify-content: flex-start; }
.ornament span {
    display: block;
    height: 2px;
    width: clamp(40px, 8vw, 80px);
    background: linear-gradient(90deg, transparent, var(--gold));
    flex-shrink: 0;
}
.ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament i { color: var(--gold); font-size: 14px; flex-shrink: 0; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--ff-head);
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--trans);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-gold {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); }
.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-dk); transform: translateY(-2px); }
.btn-call {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-call:hover { background: transparent; color: var(--white); }
.btn-wa {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover { background: #1aad55; border-color: #1aad55; }

/* ═══════════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════════ */
.ticker-bar {
    background: var(--navy-dk);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 40px;
}
.ticker-inner {
    display: flex;
    align-items: stretch;
    height: 100%;
    overflow: hidden;
}
.ticker-label {
    background: var(--gold);
    color: #000;
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-label i { font-size: 12px; }
.ticker-label-text { display: none; }
.ticker-track {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-width: 0;
}
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    color: rgba(255,255,255,0.85);
    font-family: var(--ff-head);
    font-size: 12px;
    letter-spacing: 0.3px;
    animation: ticker 38s linear infinite;
    padding-left: 20px;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-cta {
    background: var(--red);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--trans);
}
.ticker-cta:hover { background: #a00008; color: var(--white); }
.ticker-cta i { font-size: 12px; }
.ticker-cta-text { display: none; }

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    max-width: 1160px;
    margin: 0 auto;
    gap: 8px;
}
/* All logos responsive */
.hlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.hlogo img {
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    transition: var(--trans);
}
.hlogo:hover img { opacity: 0.85; }
.hlogo-center { flex: 1.4; }
.hlogo-side   { flex: 1; }

/* ═══════════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════════ */
.hero-banner {
    position: relative;
    line-height: 0;
    overflow: hidden;
}
.hero-link { display: block; }
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}
.hero-badge-wrap {
    position: absolute;
    bottom: clamp(10px, 3vw, 24px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.hero-badge {
    background: rgba(1,9,91,0.82);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 8px clamp(14px, 3vw, 28px);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    white-space: nowrap;
}
.hero-badge i { color: var(--gold); font-size: 13px; }
.hero-badge span {
    font-family: var(--ff-head);
    font-size: clamp(10px, 2.2vw, 14px);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-li);
}

/* ═══════════════════════════════════════════
   SERVICE CARDS (3-col grid)
═══════════════════════════════════════════ */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.svc-card {
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid #e8e0cc;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    opacity: 0;
    transform: translateY(24px);
    display: flex;
    flex-direction: column;
}
.svc-card.revealed { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); border-color: var(--gold); }

.svc-img {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.svc-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-badge {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--navy) 30%, var(--gold-dk) 100%);
    color: var(--white);
    font-family: var(--ff-head);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    text-align: center;
}
.svc-body {
    padding: 18px 18px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 14px;
    align-items: center;
}
.svc-body p { font-size: 13px; line-height: 1.75; color: var(--muted); }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
    background: linear-gradient(110deg, var(--navy-dk) 0%, var(--navy) 50%, var(--gold-dk) 100%);
    padding: clamp(30px, 5vw, 50px) 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.cta-text h3 {
    font-family: var(--ff-display);
    font-size: clamp(18px, 3vw, 30px);
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1.3;
}
.cta-text h3 em { color: var(--gold-li); font-style: normal; }
.cta-text p { font-size: 13px; color: rgba(255,255,255,0.75); }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(30px, 6vw, 64px);
    align-items: center;
}
.about-frame {
    position: relative;
    border-radius: var(--r);
    overflow: visible;
}
.about-frame img {
    width: 100%;
    border-radius: var(--r);
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
    display: block;
    transition: var(--trans);
}
.about-frame:hover img { transform: scale(1.02); }
.frame-deco {
    position: absolute;
    width: clamp(24px, 5vw, 48px);
    height: clamp(24px, 5vw, 48px);
    pointer-events: none;
}
.frame-tl { top: -8px; left: -8px; border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); border-radius: var(--r) 0 0 0; }
.frame-br { bottom: -8px; right: -8px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 0 var(--r) 0; }
.about-text-col .sec-head { margin-bottom: 16px; }
.about-text-col .sec-title { color: var(--navy); }
.about-text-col p { font-size: 14px; margin-bottom: 12px; }

/* ═══════════════════════════════════════════
   SERVICE BOXES (sbox)
═══════════════════════════════════════════ */
.sbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 0;
}
.sbox-grid-3 { grid-template-columns: repeat(3, 1fr); }

.sbox {
    border-radius: var(--rs);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    border: 2px solid transparent;
}
.sbox:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.sbox-img { position: relative; overflow: hidden; line-height: 0; }
.sbox-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.sbox:hover .sbox-img img { transform: scale(1.08); }
.sbox-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1,9,91,0.55) 0%, transparent 55%);
    transition: var(--trans);
}
.sbox:hover .sbox-ov { background: linear-gradient(to top, rgba(255,162,2,0.55) 0%, transparent 60%); }
.sbox-lbl {
    background: var(--navy);
    padding: 11px 10px;
    text-align: center;
    transition: var(--trans);
}
.sbox:hover .sbox-lbl { background: var(--gold); }
.sbox-lbl a {
    font-family: var(--ff-head);
    font-size: 12px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    transition: var(--trans);
}
.sbox:hover .sbox-lbl a { color: var(--navy-dk); }

/* ═══════════════════════════════════════════
   FULL BANNERS
═══════════════════════════════════════════ */
.full-banner {
    line-height: 0;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}
.full-banner img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-section {
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    line-height: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}
.g-item { overflow: hidden; aspect-ratio: 1; }
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.85);
}
.g-item:hover img { transform: scale(1.1); filter: saturate(1.2); }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.why-section {
    background: linear-gradient(130deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-li) 100%);
    padding: var(--sec-py) 0;
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '★';
    position: absolute;
    font-size: clamp(180px, 25vw, 300px);
    color: rgba(255,162,2,0.04);
    top: -30px; right: 30px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}
.why-title {
    font-family: var(--ff-display);
    font-size: clamp(18px, 3.2vw, 32px);
    color: var(--gold);
    line-height: 1.3;
    margin: 10px 0 24px;
}
.why-title em { color: var(--gold-li); font-style: normal; display: block; font-size: 0.82em; }
.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.85);
}
.why-list li i { color: var(--gold); font-size: 16px; flex-shrink: 0; }

.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,162,2,0.2);
    border-radius: var(--r);
    padding: 22px 16px 20px;
    text-align: center;
    transition: var(--trans);
    backdrop-filter: blur(4px);
}
.feat-card:hover {
    background: rgba(255,162,2,0.1);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}
.feat-icon {
    width: 60px; height: 60px;
    background: rgba(255,162,2,0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: var(--trans);
}
.feat-card:hover .feat-icon { background: var(--gold); }
.feat-icon i { font-size: 22px; color: var(--gold); transition: var(--trans); }
.feat-card:hover .feat-icon i { color: var(--navy); }
.feat-card h4 {
    font-family: var(--ff-head);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-li);
    margin-bottom: 10px;
}
.feat-card p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   VIDEOS
═══════════════════════════════════════════ */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 0;
}
.vid-wrap {
    border-radius: var(--rs);
    overflow: hidden;
    border: 2px solid var(--navy);
    box-shadow: var(--shadow-md);
    transition: var(--trans);
    line-height: 0;
}
.vid-wrap:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.vid-wrap video { width: 100%; display: block; background: #000; }

/* ═══════════════════════════════════════════
   AWARDS
═══════════════════════════════════════════ */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}
.award-item {
    border-radius: var(--r);
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
    transition: var(--trans);
}
.award-item:hover { transform: scale(1.02); }
.award-item img { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.testi-card {
    background: var(--white);
    border: 1px solid #e5ddcc;
    border-bottom: 3px solid var(--gold);
    border-radius: var(--r);
    padding: 32px 22px 22px;
    position: relative;
    transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.testi-q {
    position: absolute;
    top: -16px; left: 22px;
    width: 38px; height: 38px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-gold);
}
.testi-q i { color: var(--navy); font-size: 15px; }
.testi-card > p {
    font-size: 13px;
    line-height: 1.85;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}
.testi-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #e5ddcc;
    padding-top: 16px;
}
.testi-profile img {
    width: 50px; height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--navy);
    flex-shrink: 0;
    display: block;
}
.testi-profile div { display: flex; flex-direction: column; gap: 2px; }
.testi-profile strong {
    font-family: var(--ff-head);
    font-size: 13px;
    letter-spacing: 0.3px;
    color: var(--navy);
}
.testi-profile span {
    font-family: var(--ff-head);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dk);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--navy-dk); }
.footer-top {
    padding: clamp(36px, 6vw, 60px) 0 30px;
    border-bottom: 1px solid rgba(255,162,2,0.2);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}
.footer-brand {
    font-family: var(--ff-display);
    font-size: clamp(18px, 3vw, 26px);
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
    line-height: 1.3;
}
.footer-col > p { color: rgba(255,255,255,0.65); font-size: 13px; line-height: 1.8; }
.footer-mid h4 {
    font-family: var(--ff-head);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255,162,2,0.25);
}
.wa-img-link img { max-width: 130px; transition: var(--trans); }
.wa-img-link:hover img { transform: scale(1.05); }
.footer-call-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,162,2,0.08);
    border: 2px solid var(--gold);
    border-radius: var(--r);
    padding: 20px 16px;
    text-align: center;
    gap: 8px;
    transition: var(--trans);
}
.footer-call-card:hover { background: rgba(255,162,2,0.16); transform: translateY(-3px); }
.fcc-label {
    font-family: var(--ff-head);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-li);
}
.fcc-number {
    font-family: var(--ff-display);
    font-size: clamp(14px, 2.5vw, 20px);
    color: var(--white);
    letter-spacing: 0.5px;
}
.fcc-number i { color: var(--gold); margin-right: 4px; }
.footer-bottom { padding: 22px 0 16px; text-align: center; }
.disclaimer {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 8px;
}
.disclaimer strong { color: var(--gold-li); }
.disclaimer i { color: var(--gold); margin-right: 4px; }
.copyright {
    font-family: var(--ff-head);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════ */
.fab-btn {
    position: fixed;
    bottom: 24px;
    z-index: 9999;
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    transition: var(--trans);
    box-shadow: 0 4px 20px rgba(0,0,0,0.28);
}
.fab-btn:hover { transform: scale(1.1); color: var(--white); }
.fab-call { left: 18px; background: var(--red); animation: fab-pulse 1.8s infinite; }
.fab-wa   { right: 18px; background: var(--green); animation: fab-pulse 1.8s infinite 0.35s; }
@keyframes fab-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.28), 0 4px 20px rgba(0,0,0,0.28); }
    50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0), 0 4px 20px rgba(0,0,0,0.28); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .cards-3         { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid    { grid-template-columns: repeat(4, 1fr); }
    .about-grid      { grid-template-columns: 1fr; gap: 30px; }
    .about-img-col   { max-width: 480px; margin: 0 auto; }
    .why-grid        { grid-template-columns: 1fr; gap: 36px; }
    .feat-grid       { grid-template-columns: repeat(3, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .footer-cta      { grid-column: 1 / -1; display: flex; justify-content: center; }
    .footer-call-card { max-width: 280px; }
    .sbox-grid       { grid-template-columns: repeat(3, 1fr); }
    .sbox-grid-3     { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT (max 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    body { font-size: 14px; }

    /* Header */
    .header-inner { padding: 6px 12px; gap: 6px; }
    .hlogo img { max-height: 55px; }
    .hlogo-center { flex: 1.3; }

    /* Ticker */
    .ticker-label-text { display: inline; }
    .ticker-cta-text   { display: inline; }

    /* Hero badge */
    .hero-badge { padding: 7px 16px; }
    .hero-badge span { font-size: 10px; letter-spacing: 1.5px; }

    /* Services */
    .cards-3 { grid-template-columns: 1fr; }

    /* CTA */
    .cta-flex { flex-direction: column; text-align: center; }
    .cta-btns { justify-content: center; }

    /* About */
    .about-grid { grid-template-columns: 1fr; }
    .about-img-col { max-width: 400px; margin: 0 auto; }
    .ornament.left-orn { justify-content: center; }
    .about-text-col { text-align: center; }
    .about-text-col .btn { margin: 12px auto 0; }

    /* Sboxes */
    .sbox-grid, .sbox-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .sbox-img img { height: 160px; }
    .svc-img img  { height: 170px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }

    /* Why */
    .why-grid { grid-template-columns: 1fr; gap: 28px; }
    .why-left { text-align: center; }
    .why-list li { justify-content: center; }
    .feat-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

    /* Videos */
    .videos-grid { grid-template-columns: 1fr; gap: 14px; }

    /* Awards */
    .awards-grid { grid-template-columns: 1fr; }

    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-mid { display: flex; flex-direction: column; align-items: center; }
    .footer-cta { display: flex; justify-content: center; }
    .footer-call-card { max-width: 260px; }
    .footer-brand { font-size: 20px; }

    /* Section titles */
    .sec-title { font-size: clamp(18px, 5vw, 26px); }
    .why-title { font-size: clamp(18px, 5vw, 28px); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (max 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
    /* Header — stack logos on very small screens */
    .hlogo img { max-height: 44px; }
    .header-inner { padding: 6px 10px; gap: 4px; }

    /* Ticker */
    .ticker-label-text { display: none; }
    .ticker-cta-text   { display: none; }

    /* Hero */
    .hero-badge { padding: 6px 12px; gap: 6px; }
    .hero-badge i { font-size: 11px; }
    .hero-badge span { font-size: 9px; letter-spacing: 1px; }

    /* Section */
    .pg-section { padding: 32px 0; }
    .sec-head { margin-bottom: 22px; }
    .sec-title { font-size: 18px; }
    .sub-label { font-size: 10px; letter-spacing: 2px; }

    /* Cards */
    .cards-3 { grid-template-columns: 1fr; gap: 16px; }
    .svc-img img { height: 200px; }

    /* Sboxes - single column on mobile */
    .sbox-grid, .sbox-grid-3 { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sbox-img img { height: 130px; }
    .sbox-lbl a { font-size: 10px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* Why */
    .feat-grid { grid-template-columns: 1fr; gap: 12px; }

    /* CTA buttons */
    .cta-btns { flex-direction: column; width: 100%; }
    .btn-call, .btn-wa { justify-content: center; width: 100%; }

    /* Awards */
    .awards-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { gap: 24px; }

    /* Float buttons */
    .fab-btn { width: 48px; height: 48px; font-size: 20px; bottom: 18px; }
    .fab-call { left: 14px; }
    .fab-wa   { right: 14px; }

    /* Buttons */
    .btn { padding: 9px 18px; font-size: 11px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — VERY SMALL (max 360px)
═══════════════════════════════════════════ */
@media (max-width: 360px) {
    .header-inner { gap: 3px; }
    .hlogo img { max-height: 38px; }
    .sbox-grid, .sbox-grid-3 { grid-template-columns: 1fr; }
    .cards-3 { grid-template-columns: 1fr; }
    .hero-badge-wrap { display: none; }
}