/* =========================================================
   NAMMA RO – Premium Landing Page CSS
   Colors: #01449d | #1779d9 | #69b5f6 | #fd7b01
           #62798c | #11263d
   ========================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@300;400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy:      #01449d;
  --blue:      #1779d9;
  --skyblue:   #69b5f6;
  --orange:    #fd7b01;
  --slate:     #62798c;
  --dark:      #11263d;
  --white:     #ffffff;
  --light-bg:  #f4f8ff;
  --card-bg:   #ffffff;
  --border:    #e2ecf8;
  --shadow:    0 4px 24px rgba(1, 68, 157, 0.10);
  --shadow-lg: 0 12px 48px rgba(1, 68, 157, 0.16);
  --radius:    16px;
  --radius-sm: 10px;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* Premium App Popup */
.app-popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.app-popup {
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    animation: popupScale 0.4s ease;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: #f5f5f5;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.popup-close:hover {
    background: #fd7b01;
    color: #fff;
}

.popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fd7b01, #ff9d42);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-icon i {
    font-size: 38px;
    color: #fff;
}

.app-popup h3 {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 700;
}

.app-popup p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.popup-store-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.popup-store-buttons img {
    height: 55px;
    width: auto;
    transition: 0.3s;
}

.popup-store-buttons img:hover {
    transform: translateY(-3px);
}

@keyframes popupScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* ---- client toast notifications ---- */
.booking-notification {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    z-index: 9999;
    animation: slideIn 0.6s ease;
    border-left: 4px solid #fd7b01;
}

.booking-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(253,123,1,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-icon i {
    color: #fd7b01;
    font-size: 22px;
}

.booking-content h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #222;
}

.booking-content p {
    margin: 4px 0;
    font-size: 14px;
    color: #555;
}

.booking-content span {
    font-size: 12px;
    color: #999;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media(max-width:768px){
    .booking-notification{
        width: calc(100% - 30px);
        left: 15px;
        bottom: 15px;
    }
}
/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--dark);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
}
.highlight { color: var(--orange); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(1,68,157,0.10), rgba(253,123,1,0.10));
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(1,68,157,0.15);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(1,68,157,0.30);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(1,68,157,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
  margin-top: 20px;
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp i { font-size: 1.2rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  padding: 14px 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(1,68,157,0.08);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
}
.logo-namma { color: var(--navy); }
.logo-ro { color: var(--orange); }
.logo-drop { display: flex; align-items: center; margin-left: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: rgba(1,68,157,0.06);
}
.nav-cta { font-size: 0.88rem; padding: 10px 22px; }

/* ---- Nav Dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.nav-dropdown-btn:hover { color: var(--navy); background: rgba(1,68,157,0.06); }
.nav-chevron {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(1,68,157,0.14);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  transition: var(--transition);
}
.nav-dropdown-item:hover {
  background: var(--light-bg);
  color: var(--navy);
}
.nav-dropdown-item i { color: var(--orange); font-size: 0.85rem; width: 16px; }

/* ============================================================
   LEGAL PAGES – Page Banner
   ============================================================ */
.legal-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #1779d9 100%);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.legal-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(253,123,1,0.12), transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
}
.legal-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(105,181,246,0.15), transparent 70%);
  bottom: -80px; left: -60px;
  border-radius: 50%;
}
.legal-banner-inner { position: relative; z-index: 2; }
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.legal-breadcrumb a { color: rgba(255,255,255,0.60); transition: color 0.2s; }
.legal-breadcrumb a:hover { color: var(--orange); }
.legal-breadcrumb i { font-size: 0.65rem; }
.legal-banner-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.legal-banner h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}
.legal-banner h1 span { color: var(--orange); }
.legal-banner-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 540px;
  line-height: 1.7;
}
.legal-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.legal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 7px 14px;
  border-radius: 50px;
}
.legal-meta-item i { color: var(--orange); font-size: 0.78rem; }

/* ============================================================
   LEGAL PAGES – Content Body
   ============================================================ */
.legal-body {
  padding: 72px 0 100px;
  background: var(--white);
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sticky Sidebar TOC */
.legal-sidebar {
  position: sticky;
  top: 90px;
}
.legal-toc {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.legal-toc-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-toc-title i { color: var(--orange); }
.legal-toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal-toc ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
  line-height: 1.4;
}
.legal-toc ul li a:hover,
.legal-toc ul li a.active {
  background: white;
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow);
}
.legal-toc ul li a::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.legal-toc ul li a:hover::before,
.legal-toc ul li a.active::before { opacity: 1; }

/* Contact card in sidebar */
.legal-contact-card {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
}
.legal-contact-card h4 { color: white; font-size: 0.95rem; margin-bottom: 8px; }
.legal-contact-card p { color: rgba(255,255,255,0.70); font-size: 0.80rem; margin-bottom: 16px; line-height: 1.55; }
.legal-contact-card .btn { font-size: 0.82rem; padding: 10px 18px; width: 100%; justify-content: center; }

/* Legal Content Area */
.legal-content { min-width: 0; }
.legal-section {
  margin-bottom: 52px;
  scroll-margin-top: 100px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.legal-section.visible { opacity: 1; transform: translateY(0); }
.legal-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--light-bg);
}
.legal-section-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-head);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(1,68,157,0.25);
}
.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
}

.para-bold {
    font-weight: bold;
} 
.legal-placeholder {
  background: var(--light-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
}
.legal-placeholder-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 12px;
  opacity: 0.70;
}
.legal-placeholder-label i { color: var(--orange); }
.legal-placeholder p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.75;
  
}

/* Highlight boxes */
.legal-highlight {
  background: linear-gradient(135deg, rgba(1,68,157,0.05), rgba(253,123,1,0.04));
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin: 20px 0;
}
.legal-highlight p {
  font-size: 0.90rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}
.legal-highlight strong { color: var(--navy); }

/* Active page in dropdown */
.nav-dropdown-item.active-page {
  background: var(--light-bg);
  color: var(--navy);
  font-weight: 700;
}
.nav-dropdown-item.active-page::before { opacity: 1 !important; }

/* Contact inline buttons */
.legal-contact-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================================
   LEGAL PAGES – Responsive
   ============================================================ */
@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .legal-toc { display: none; }
}
@media (max-width: 640px) {
  .legal-banner { padding: 100px 0 56px; }
  .legal-banner h1 { font-size: 1.7rem; }
  .legal-body { padding: 48px 0 72px; }
  .legal-section { margin-bottom: 36px; }
}

/* Mobile nav dropdown */
@media (max-width: 640px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: transparent;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: flex; flex-direction: column; }
  .nav-dropdown-item { font-size: 1rem; color: var(--slate); padding: 10px 14px; }
  .nav-dropdown-btn { font-size: 1.1rem; padding: 12px 24px; }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(140deg, #eaf3ff 0%, #f4f8ff 50%, #fff8f0 100%);
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #69b5f6, transparent 70%);
  top: -100px; right: -80px;
}
.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(253,123,1,0.4), transparent 70%);
  bottom: 100px; left: -80px;
}
.shape-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(1,68,157,0.3), transparent 70%);
  top: 40%; right: 30%;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 600;
  color: var(--navy);
  padding: 7px 18px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  animation: slideDown 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.10); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
  animation: slideUp 0.7s 0.1s ease both;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 480px;
  animation: slideUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideUp 0.7s 0.3s ease both;
}
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 0.7s 0.4s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--slate);
}
.trust-badge i {
  width: 32px; height: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--orange);
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

/* ---- Hero Visual – Photo ---- */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideUp 0.8s 0.2s ease both;
}
.hero-photo-wrap {
  position: relative;
  width: 420px;
  height: 500px;
  flex-shrink: 0;
}
.hero-photo-glow {
  position: absolute;
  width: 380px; height: 440px;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(135deg, rgba(1,68,157,0.18), rgba(105,181,246,0.22), rgba(253,123,1,0.12));
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: blur(30px);
  animation: morphBlob 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes morphBlob {
  0%   { border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%; }
  50%  { border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%; }
  100% { border-radius: 45% 55% 60% 40% / 55% 40% 60% 45%; }
}
.hero-photo-ring {
  position: absolute;
  width: 360px; height: 420px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 30px;
  border: 2px dashed rgba(1,68,157,0.15);
  animation: rotateSlow 25s linear infinite;
  z-index: 1;
}
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
.hero-photo-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 320px;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(1,68,157,0.28), 0 8px 32px rgba(0,0,0,0.15);
  border: 3px solid rgba(255,255,255,0.90);
  z-index: 2;
}
.hero-tech-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.hero-photo-frame:hover .hero-tech-img { transform: scale(1.04); }
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(1,68,157,0.45) 100%
  );
  pointer-events: none;
}

/* Hero Photo Badge */
.hero-photo-badge {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: linear-gradient(135deg, var(--orange), #ffa040);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 28px rgba(253,123,1,0.45);
  z-index: 4;
  animation: float 3s 0.3s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-photo-badge i {
  font-size: 1.3rem;
  color: white;
}
.hpb-title {
  font-size: 0.78rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  font-family: var(--font-head);
}
.hpb-sub {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Floating tags */
.floating-tag {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  border: 1px solid var(--border);
  z-index: 5;
}
.floating-tag i { color: var(--orange); font-size: 0.85rem; }
.tag-1 { top: 60px; left: -20px; animation: float 3s ease-in-out infinite; }
.tag-2 { top: 40px; right: -20px; animation: float 3s 1s ease-in-out infinite; }
.tag-3 { bottom: 100px; left: -30px; animation: float 3s 0.5s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Hero Stats */
.hero-stats {
  background: var(--navy);
  padding: 28px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 12px 40px;
  flex: 1;
  min-width: 140px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--light-bg);
  padding: 100px 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}
.service-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(1,68,157,0.20);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(1,68,157,0.08), rgba(253,123,1,0.06));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
  border: 1px solid rgba(1,68,157,0.10);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  transform: scale(1.08);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.service-link:hover { color: var(--orange); gap: 10px; }
.service-link i { font-size: 0.75rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 72px;
}
/* ---- About Visual – Real Photo ---- */
.about-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}
.about-img-wrap {
  position: relative;
  width: 380px;
  height: 440px;
}
.about-photo-bg {
  position: absolute;
  width: 320px; height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--skyblue) 100%);
  border-radius: 36px;
  top: 30px; left: 24px;
  transform: rotate(-5deg);
  box-shadow: 0 20px 60px rgba(1,68,157,0.30);
  z-index: 0;
}
.about-photo-frame {
  position: absolute;
  top: 0; left: 0;
  width: 310px;
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(1,68,157,0.22), 0 4px 16px rgba(0,0,0,0.12);
  border: 3px solid rgba(255,255,255,0.95);
  z-index: 2;
}
.about-tech-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.about-photo-frame:hover .about-tech-img { transform: scale(1.04); }
.about-photo-shine {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
}

/* Tech card overlay */
.about-team-card {
  position: absolute;
  bottom: 0; right: 0;
  background: white;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 220px;
  z-index: 4;
}
.tech-avatars {
  display: flex;
  align-items: center;
}
.tech-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid white;
  overflow: hidden;
  margin-left: -10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.tech-avatar:first-child { margin-left: 0; }
.tech-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.av1 { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.av2 { background: linear-gradient(135deg, var(--blue), var(--skyblue)); }
.av3 { background: linear-gradient(135deg, var(--orange), #ffa040); }
.tech-avatar-more {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-left: -10px;
  flex-shrink: 0;
}
.tech-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.tech-sub {
  font-size: 0.76rem;
  color: var(--slate);
}
.exp-badge {
  position: absolute;
  top: 10px; right: 0;
  background: linear-gradient(135deg, var(--orange), #ffa040);
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(253,123,1,0.40);
  z-index: 4;
  border: 2px solid rgba(255,255,255,0.30);
}
.exp-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.exp-label { font-size: 0.72rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-top: 2px; }

.about-content { flex: 1; }
.about-desc {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 32px;
  line-height: 1.75;
}
.about-features { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(16px);
}
.about-feature.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease;
}
.about-feature:hover { background: var(--light-bg); }
.feature-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(1,68,157,0.25);
}
.about-feature h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.about-feature p { font-size: 0.86rem; color: var(--slate); }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(253,123,1,0.12), transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.why-us .section-tag {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}
.why-us .section-title { color: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}
.why-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, background 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(253,123,1,0.40);
  transform: translateY(-4px);
}
.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), #ffa040);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(253,123,1,0.35);
  transition: var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.86rem; color: rgba(255,255,255,0.60); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--light-bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}
.testimonial-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-color: transparent;
  color: white;
}
.testimonial-card.featured .review-text { color: rgba(255,255,255,0.85); }
.testimonial-card.featured .reviewer-name { color: white; }
.testimonial-card.featured .reviewer-loc { color: rgba(255,255,255,0.60); }
.testimonial-card.featured .stars { color: #fd7b01; }
.stars {
  color: #fd7b01;
  font-size: 1.05rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-card.featured .reviewer { border-top-color: rgba(255,255,255,0.15); }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-card.featured .reviewer-avatar {
  background: rgba(255,255,255,0.20);
}
.reviewer-name { font-size: 0.90rem; font-weight: 700; color: var(--dark); }
.reviewer-loc { font-size: 0.78rem; color: var(--slate); margin-top: 2px; }
.reviewer-loc i { font-size: 0.70rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-info { flex: 1; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(1,68,157,0.25);
}
.contact-label { font-size: 0.78rem; color: var(--slate); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 2px; }
.contact-value { font-size: 0.92rem; color: var(--dark); font-weight: 600; }
a.contact-value:hover { color: var(--orange); }
.map-wrap { margin-top: 28px; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }

/* Contact Form */
.contact-form-wrap { flex: 1; }
.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.contact-form-card > p {
  font-size: 0.88rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: white;
  box-shadow: 0 0 0 3px rgba(1,68,157,0.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab8c8; }
select { appearance: none; cursor: pointer; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 16px;
}
.form-success i {
  font-size: 3rem;
  color: #22c55e;
  animation: popIn 0.4s ease;
}
.form-success p { font-size: 1rem; font-weight: 600; color: var(--dark); }
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand { max-width: 280px; }
.footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.60); margin-bottom: 24px; }
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover, .social-icon.whatsapp:hover { background: var(--orange); border-color: var(--orange); color: white; }
.social-icon.whatsapp { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.25); color: #25D366; }

.footer-col h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.60);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.contact-list { display: flex; flex-direction: column; gap: 12px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
}
.contact-list li i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.50);
  z-index: 999;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.60); }

.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 18px rgba(1,68,157,0.35);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px); }

/* App Download Buttons */
/* App Download Buttons */
.app-downloads {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    flex-wrap: nowrap; /* prevents stacking */
}

.app-downloads a {
    display: inline-block;
}

.app-downloads img {
    height: 45px;
    width: auto;
    display: block;
}

.app-downloads a:hover {
    transform: translateY(-3px);
}



@media (max-width: 768px) {
    .app-downloads {
        justify-content: center;
    }

    .app-downloads img {
        height: 48px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .app-downloads {
        flex-direction: column;
        align-items: stretch;
    }

    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE – TABLET (max-width: 992px)
   ============================================================ */
@media (max-width: 992px) {
  .hero-inner { flex-direction: column; text-align: center; padding-top: 40px; }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .trust-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-photo-wrap { width: 300px; height: 380px; }
  .hero-photo-frame { width: 240px; height: 310px; }
  .hero-photo-ring { width: 280px; height: 340px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { flex-direction: column; gap: 48px; }
  .about-visual { width: 100%; }
  .about-img-wrap { width: 320px; height: 380px; margin: 0 auto; }
  .about-photo-frame { width: 280px; height: 340px; }
  .about-photo-bg { width: 280px; height: 340px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 12px 20px; }
  .stat-divider { display: none; }
}

/* ============================================================
   RESPONSIVE – MOBILE (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  .navbar { padding: 12px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 12px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; z-index: 1000; }
  .hero-inner { padding-top: 20px; gap: 32px; }
  .hero-title { font-size: 2.1rem; }
  .hero-photo-wrap { width: 260px; height: 330px; }
  .hero-photo-frame { width: 210px; height: 270px; }
  .hero-photo-ring { width: 240px; height: 300px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-img-wrap { width: 280px; height: 320px; }
  .about-img-bg { width: 250px; height: 250px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form-card { padding: 28px 20px; }
  .stats-row { gap: 4px; }
  .stat-item { min-width: 80px; padding: 10px 12px; }
  .stat-num { font-size: 1.5rem; }
  .tag-1, .tag-2, .tag-3 { font-size: 0.70rem; padding: 6px 12px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .hero-photo-wrap { width: 230px; height: 300px; }
  .hero-photo-frame { width: 190px; height: 250px; }
  .why-grid { grid-template-columns: 1fr; }
}
