/* Sri Rajalakshmi Food Products Pvt. Ltd. — Main Stylesheet */

:root {
  --primary:       #C0392B;
  --primary-dk:    #922B21;
  --primary-lt:    #E74C3C;
  --accent:        #D4A017;
  --navy:          #0A1628;
  --navy2:         #111827;
  --text:          #2D3748;
  --text-lt:       #64748B;
  --bg:            #FFFFFF;
  --bg-alt:        #F8F9FA;
  --bg-red:        #FFF5F5;
  --border:        #E2E8F0;
  --white:         #FFFFFF;
  --shadow-sm:     0 1px 4px rgba(0,0,0,0.07);
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.13);
  --radius:        12px;
  --radius-lg:     20px;
  --tr:            all 0.30s ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Inter','Open Sans',sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family:'Poppins',sans-serif; color:var(--navy); font-weight:700; line-height:1.2; }
a { color:var(--primary); text-decoration:none; transition:var(--tr); }
a:hover { color:var(--primary-dk); }
img { max-width:100%; }

/* ── Preloader ──────────────────────────────── */
#preloader {
  position:fixed; inset:0; z-index:9999;
  background:var(--bg);
  display:flex; align-items:center; justify-content:center;
}
#preloader::before {
  content:''; width:50px; height:50px;
  border:3px solid var(--border);
  border-top-color:var(--primary);
  border-radius:50%;
  animation:spin .85s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ── Back to top ────────────────────────────── */
.back-to-top {
  position:fixed; right:20px; bottom:20px;
  width:44px; height:44px;
  background:var(--primary); color:#fff;
  border-radius:50%; font-size:22px;
  z-index:99; visibility:hidden; opacity:0;
  transition:var(--tr); box-shadow:var(--shadow);
}
.back-to-top i { line-height:0; }
.back-to-top.active { visibility:visible; opacity:1; }
.back-to-top:hover { background:var(--primary-dk); color:#fff; transform:translateY(-3px); }

/* suppress scrolled-offset gap since hero handles its own padding */
.scrolled-offset { margin-top:0 !important; }

/* AOS delay disable on mobile */
@media (max-width:768px) {
  [data-aos-delay] { transition-delay:0 !important; }
}

/* ── Header ─────────────────────────────────── */
#header {
  position:fixed; top:0; left:0; right:0;
  z-index:997; height:80px;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 20px rgba(0,0,0,0.06);
  transition:var(--tr);
  display:flex; align-items:center;
}
#header.fixed-top { height:68px; }
#header .logo { line-height:0; }
#header .logo img { height:66px; width:auto; transition:var(--tr); }
#header.fixed-top .logo img { height:64px; }
.logo{
    text-decoration:none;
    gap:12px;
}

.logo img{
    max-height:75px;
}


.logo-text h2{
    margin:0;
    font-family: Georgia, serif;
    font-size:32px;
    color:var(--primary);
    font-weight:500;
    line-height:1;
}


.logo-text h4{
    margin:4px 0 0;
    font-family: Georgia, serif;
    font-size:20px;
    color:var(--primary);
    font-weight:500;
}


.logo-text p{
    margin:2px 0 0;
    text-align:right;
    font-family: Georgia, serif;
    font-size:17px;
    color:var(--primary);
}


/* mobile */
@media(max-width:768px){

.logo img{
    max-height:55px;
}

.logo-text h2{
    font-size:20px;
}

.logo-text h4{
    font-size:13px;
}

.logo-text p{
    font-size:11px;
}

}
/* Navbar */
.navbar { padding:0; }
.navbar ul { margin:0; padding:0; list-style:none; display:flex; align-items:center; gap:4px; }
.navbar a, .navbar a:focus {
  display:inline-flex; align-items:center;
  padding:8px 14px;
  font-size:13.5px; font-weight:600;
  color:var(--navy); letter-spacing:.3px;
  border-radius:6px;
  transition:var(--tr);
}
.navbar a:hover, .navbar .active { color:var(--primary); background:var(--bg-red); }

/* CTA nav button */
.navbar a.nav-enquire {
  background:var(--primary); color:#fff !important;
  border-radius:50px; padding:9px 22px;
  font-weight:700; margin-left:8px;
}
.navbar a.nav-enquire:hover {
  background:var(--primary-dk); color:#fff;
  transform:translateY(-1px);
  box-shadow:0 6px 20px rgba(192,57,43,.30);
}

/* Mobile toggle */
.mobile-nav-toggle {
  display:none; font-size:26px;
  color:var(--navy); cursor:pointer; line-height:0;
  transition:var(--tr);
}
@media (max-width:991px) {
  .mobile-nav-toggle { display:block; }
  .navbar ul { display:none; }
}
.navbar-mobile {
  position:fixed; inset:0;
  background:rgba(10,22,40,.96);
  backdrop-filter:blur(8px); z-index:999;
}
.navbar-mobile .mobile-nav-toggle { position:absolute; top:20px; right:20px; color:#fff; }
.navbar-mobile ul {
  display:block; position:absolute;
  top:72px; left:15px; right:15px; bottom:15px;
  background:#fff; border-radius:20px;
  overflow-y:auto; padding:16px 0;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding:13px 24px; color:var(--navy);
  font-size:15px; display:block;
  border-radius:0; background:transparent;
}
.navbar-mobile a:hover, .navbar-mobile .active { color:var(--primary); background:var(--bg-red); }
.navbar-mobile a.nav-enquire {
  margin:12px 20px 0; border-radius:10px;
  text-align:center; justify-content:center;
  background:var(--primary); color:#fff !important;
}

/* ── Hero ───────────────────────────────────── */
#hero {
  position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}

/* Carousel */
.hero-bg-swiper {
  position:absolute; inset:0;
  z-index:0;
}
.hero-bg-swiper .swiper-wrapper { height:100%; }
.hero-slide {
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Arrows */
.hero-arrow {
  width:52px !important; height:52px !important;
  background:rgba(255,255,255,.15) !important;
  border:2px solid rgba(255,255,255,.35) !important;
  border-radius:50% !important;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  transition:var(--tr) !important;
  top:50% !important;
  margin-top:-26px !important;
}
.hero-arrow:hover {
  background:var(--primary) !important;
  border-color:var(--primary) !important;
}
.hero-prev { left:28px !important; }
.hero-next { right:28px !important; }
.hero-arrow::after {
  font-size:16px !important;
  color:#fff !important;
  font-weight:700 !important;
}

/* Pagination dots */
.hero-dots {
  bottom:96px !important;
  z-index:10;
}
.hero-dots .swiper-pagination-bullet {
  width:8px; height:8px;
  background:rgba(255,255,255,.45);
  opacity:1;
  transition:var(--tr);
}
.hero-dots .swiper-pagination-bullet-active {
  background:var(--primary);
  width:24px;
  border-radius:4px;
}

@media (max-width:768px) {
  .hero-prev { left:12px !important; }
  .hero-next { right:12px !important; }
  .hero-arrow { width:40px !important; height:40px !important; }
}
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.90) 0%,rgba(10,22,40,.60) 55%,rgba(192,57,43,.25) 100%);
}
.hero-body { position:relative; z-index:2; }

.hero-badge {
  display:inline-block;
  background:rgba(192,57,43,.18);
  border:1px solid rgba(192,57,43,.40);
  color:#F1948A; font-size:11.5px;
  font-weight:700; letter-spacing:2px;
  text-transform:uppercase;
  padding:8px 20px; border-radius:50px;
  margin-bottom:22px;
}

#hero h1 {
  font-size:clamp(40px,6vw,72px);
  font-weight:900; color:#fff;
  margin:0 0 22px; line-height:1.1;
}
#hero h1 span { color:var(--accent); }

#hero p {
  font-size:17px; color:rgba(255,255,255,.80);
  max-width:580px; margin:0 0 38px; line-height:1.8;
}

.hero-btns { display:flex; gap:14px; flex-wrap:wrap; align-items:center; }

.btn-hero-primary {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--primary); color:#fff;
  font-size:14px; font-weight:700;
  padding:15px 34px; border-radius:50px;
  box-shadow:0 8px 28px rgba(192,57,43,.40);
  transition:var(--tr);
}
.btn-hero-primary:hover {
  background:var(--primary-dk); color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(192,57,43,.50);
}
.btn-hero-primary i { transition:transform .3s; }
.btn-hero-primary:hover i { transform:translateX(4px); }

.btn-hero-ghost {
  display:inline-flex; align-items:center;
  color:#fff; font-size:14px; font-weight:600;
  padding:15px 34px; border-radius:50px;
  border:2px solid rgba(255,255,255,.40);
  transition:var(--tr);
  backdrop-filter:blur(8px);
}
.btn-hero-ghost:hover {
  color:#fff; border-color:rgba(255,255,255,.75);
  background:rgba(255,255,255,.12);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position:relative; z-index:2;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  border-top:1px solid rgba(255,255,255,.12);
}
.hero-stats-bar .stat-item {
  padding:22px 18px; text-align:center;
  border-right:1px solid rgba(255,255,255,.12);
}
.hero-stats-bar .stat-item:last-child { border-right:none; }
.hero-stats-bar .stat-item h3 {
  font-size:clamp(26px,3vw,38px);
  font-weight:900; color:var(--accent);
  margin:0 0 4px; line-height:1;
  font-family:'Poppins',sans-serif;
}
.hero-stats-bar .stat-item h3 span { color:var(--accent); font-size:.65em; }
.hero-stats-bar .stat-item p {
  color:rgba(255,255,255,.65); font-size:11px;
  text-transform:uppercase; letter-spacing:1.5px;
  margin:0; font-weight:600;
}

@media (max-width:768px) {
  #hero h1 { font-size:34px; }
  #hero p { font-size:15px; }
  .hero-stats-bar .stat-item { padding:16px 10px; }
  .hero-stats-bar .stat-item h3 { font-size:24px; }
}

/* ── Utility ─────────────────────────────────── */
.section-pad    { padding:100px 0; }
.section-pad-sm { padding:70px 0; }

.overline {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:800;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--primary); margin-bottom:14px;
}
.overline::before {
  content:''; display:inline-block;
  width:18px; height:2px; background:var(--primary);
}
.light-overline {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:800;
  letter-spacing:3px; text-transform:uppercase;
  color:var(--accent); margin-bottom:14px;
}
.light-overline::before {
  content:''; display:inline-block;
  width:18px; height:2px; background:var(--accent);
}

h2 span { color:var(--primary); }
.section-sub {
  font-size:16px; color:var(--text-lt);
  max-width:540px; margin:0 auto;
}

.btn-brand {
  display:inline-flex; align-items:center; gap:9px;
  background:var(--primary); color:#fff;
  font-size:14px; font-weight:700;
  padding:14px 32px; border-radius:50px;
  box-shadow:0 6px 22px rgba(192,57,43,.30);
  transition:var(--tr);
}
.btn-brand:hover {
  background:var(--primary-dk); color:#fff;
  transform:translateY(-2px);
  box-shadow:0 10px 32px rgba(192,57,43,.42);
}
.btn-brand i { transition:transform .3s; }
.btn-brand:hover i { transform:translateX(4px); }

.btn-outline {
  display:inline-flex; align-items:center; gap:9px;
  color:var(--primary); border:2px solid var(--primary);
  font-size:14px; font-weight:700;
  padding:12px 28px; border-radius:50px;
  transition:var(--tr);
}
.btn-outline:hover {
  background:var(--primary); color:#fff;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(192,57,43,.25);
}
.btn-outline i { transition:transform .3s; }
.btn-outline:hover i { transform:translateX(4px); }

.lead-text { font-size:17px; font-weight:500; color:var(--text); line-height:1.75; margin-bottom:14px; }
.body-text  { font-size:15px; color:var(--text-lt); line-height:1.85; }

/* ── About ──────────────────────────────────── */
.about { background:var(--bg); overflow:visible; }

.about-img-wrap { position:relative; border-radius:24px; overflow:hidden; }
.about-main-img {
  width:100%; height:520px; object-fit:cover;
  border-radius:24px; display:block;
}
.about-badge-est {
  position:absolute; top:28px; left:28px;
  background:var(--primary); color:#fff;
  padding:14px 18px; border-radius:14px;
  text-align:center; box-shadow:var(--shadow);
}
.about-badge-est .est-year {
  display:block; font-size:30px; font-weight:900;
  line-height:1; font-family:'Poppins',sans-serif;
}
.about-badge-est .est-label {
  display:block; font-size:10px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  opacity:.85;
}
.about-tag-exp {
  position:absolute; bottom:28px; right:28px;
  background:#fff; padding:14px 18px;
  border-radius:14px; box-shadow:var(--shadow-lg);
  display:flex; align-items:center; gap:12px;
}
.about-tag-exp i { font-size:26px; color:var(--accent); }
.about-tag-exp strong { display:block; font-size:17px; font-weight:800; color:var(--navy); }
.about-tag-exp span   { display:block; font-size:11px; color:var(--text-lt); }

.about-content { padding-left:10px; }
.about-content h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; margin:10px 0 18px; }

.about-feats { display:grid; gap:10px; margin:24px 0 32px; }
.feat-row { display:flex; gap:16px; flex-wrap:wrap; }
.feat-item {
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:600; color:var(--text);
  flex:1; min-width:200px;
}
.feat-item i { color:var(--primary); font-size:15px; flex-shrink:0; }

@media (max-width:991px) {
  .about-content { padding-left:0; }
  .about-main-img { height:360px; }
}

/* ── Services — Image + Description Cards (basicplus style) ── */
.services-section { background:var(--bg-alt); padding:80px 0 100px; }

.services-header {
  text-align:center; margin-bottom:52px;
}
.services-header h2 { font-size:clamp(28px,4vw,44px); font-weight:800; margin:10px 0 14px; }
.services-header p { font-size:16px; color:var(--text-lt); max-width:480px; margin:0 auto; }

/* Card */
.srv-card {
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--border);
  transition:transform .35s ease, box-shadow .35s ease;
  display:flex; flex-direction:column;
  position:relative;
}
.srv-card::before {
  content:''; position:absolute;
  top:-50px; right:-50px;
  width:140px; height:140px; border-radius:50%;
  background:rgba(192,57,43,.04);
  pointer-events:none; z-index:0;
}
.srv-card:hover {
  transform:translateY(-10px);
  box-shadow:0 20px 52px rgba(0,0,0,.14);
  border-color:rgba(192,57,43,.18);
}

/* Image */
.srv-img { overflow:hidden; flex-shrink:0; }
.srv-img img {
  width:100%; height:220px; object-fit:cover;
  display:block;
  transition:transform .55s cubic-bezier(.25,.46,.45,.94);
}
.srv-img-wide img { height:240px; }
.srv-card:hover .srv-img img { transform:scale(1.07); }

/* Body */
.srv-body {
  padding:26px 26px 28px;
  position:relative; z-index:1;
  flex:1; display:flex; flex-direction:column;
  border-top:3px solid transparent;
  transition:border-color .35s ease;
}
.srv-card:hover .srv-body { border-top-color:var(--primary); }

/* Icon */
.srv-icon {
  width:54px; height:54px;
  background:var(--bg-red);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:var(--primary);
  margin-bottom:14px;
  transition:var(--tr);
}
.srv-card:hover .srv-icon {
  background:var(--primary); color:#fff;
  transform:rotate(-8deg) scale(1.10);
}

.srv-body h4 { font-size:17px; font-weight:800; margin-bottom:10px; color:var(--navy); }
.srv-body p  { font-size:13.5px; color:var(--text-lt); line-height:1.78; margin:0; flex:1; }

/* ── Why Choose Us ──────────────────────────── */
.why-us { background:var(--bg); overflow:hidden; }

.why-us h2 { font-size:clamp(26px,3.5vw,40px); font-weight:800; margin:10px 0 18px; }

.why-card {
  background:var(--bg-alt);
  border:1px solid var(--border);
  border-radius:16px; padding:26px 22px;
  transition:var(--tr); height:100%;
  position:relative; overflow:hidden;
}
.why-card::after {
  content:''; position:absolute;
  bottom:0; left:0; width:0; height:3px;
  background:var(--primary); transition:width .40s ease;
}
.why-card:hover::after { width:100%; }
.why-card:hover {
  border-color:rgba(192,57,43,.20);
  box-shadow:var(--shadow-lg);
  transform:translateY(-4px); background:#fff;
}
.why-icon {
  width:52px; height:52px;
  background:linear-gradient(135deg,#FDECEA,#FFF5F5);
  border-radius:14px; display:flex;
  align-items:center; justify-content:center;
  font-size:22px; color:var(--primary);
  margin-bottom:14px; transition:var(--tr);
}
.why-card:hover .why-icon { background:var(--primary); color:#fff; }
.why-card h4 { font-size:15.5px; font-weight:700; margin-bottom:8px; }
.why-card p  { font-size:13.5px; color:var(--text-lt); line-height:1.75; margin:0; }

/* ── Counts ─────────────────────────────────── */
.counts-section {
  background:linear-gradient(135deg,var(--navy) 0%,#162035 100%);
  padding:32px 0;
}
.count-item {
  text-align:center; padding:14px 16px;
  border-right:1px solid rgba(255,255,255,.09);
  display:flex; align-items:center; justify-content:center; gap:14px;
}
.count-item.last { border-right:none; }
.count-item i { font-size:28px; color:var(--accent); flex-shrink:0; }
.count-num { line-height:1; }
.count-num span.purecounter {
  font-size:34px; font-weight:900; color:#fff;
  font-family:'Poppins',sans-serif;
}
.count-num .suf { font-size:18px; font-weight:700; color:var(--accent); }
.count-item p {
  font-size:10.5px; color:rgba(255,255,255,.50);
  text-transform:uppercase; letter-spacing:1.5px;
  font-weight:600; margin:4px 0 0; text-align:left;
}
@media (max-width:768px) {
  .count-item { border-right:none; border-bottom:1px solid rgba(255,255,255,.09); flex-direction:column; gap:6px; }
  .count-item.last { border-bottom:none; }
  .count-item p { text-align:center; }
  .count-num span.purecounter { font-size:30px; }
}

/* ── Speciality ─────────────────────────────── */
.speciality { background:var(--bg-alt); }
.speciality h2 { font-size:clamp(26px,4vw,40px); font-weight:800; margin:10px 0 10px; }

.spec-card {
  background:#fff; border-radius:18px;
  overflow:hidden; box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
  transition:var(--tr); height:100%;
  display:flex; flex-direction:column;
}
.spec-card:hover {
  transform:translateY(-6px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(192,57,43,.15);
}
.spec-img-wrap { position:relative; overflow:hidden; flex-shrink:0; }
.spec-img-wrap img {
  width:100%; height:210px; object-fit:cover;
  display:block; transition:transform .60s ease;
}
.spec-card:hover .spec-img-wrap img { transform:scale(1.06); }
.spec-tag {
  position:absolute; top:14px; right:14px;
  background:var(--primary); color:#fff;
  font-size:10px; font-weight:800;
  letter-spacing:1.5px; text-transform:uppercase;
  padding:4px 12px; border-radius:50px;
}
.spec-body { padding:22px; flex:1; }
.spec-body h4 { font-size:16px; font-weight:700; margin-bottom:9px; }
.spec-body p  { font-size:13.5px; color:var(--text-lt); line-height:1.75; margin:0; }

/* ── Clients ────────────────────────────────── */
.clients-section { background:var(--bg); }
.clients-section h2 { font-size:clamp(26px,4vw,40px); font-weight:800; margin:10px 0 0; }
.clients-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.client-logo-box {
  background:var(--bg-alt); border:1px solid var(--border);
  border-radius:12px; padding:18px;
  display:flex; align-items:center; justify-content:center;
  aspect-ratio:16/7; transition:var(--tr);
}
.client-logo-box:hover { border-color:var(--primary); box-shadow:var(--shadow); transform:translateY(-3px); }
.client-logo-box img {
  max-height:46px; max-width:100%; object-fit:contain;
  transition:transform .40s ease;
}
.client-logo-box:hover img { transform:scale(1.12); }
@media (max-width:991px) { .clients-grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width:575px) { .clients-grid { grid-template-columns:repeat(2,1fr); } }

/* ── Testimonials ───────────────────────────── */
.testimonials-section {
  position:relative; padding:100px 0; overflow:hidden;
}
.testi-bg-img {
  position:absolute; inset:0;
  background:url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80&fit=crop') center/cover;
}
.testi-overlay {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,22,40,.93) 0%,rgba(10,22,40,.87) 100%);
  z-index:1;
}
.testi-inner { position:relative; z-index:2; }
.testimonials-section h2 { font-size:clamp(26px,4vw,42px); font-weight:800; }

.testimonials-slider { overflow:hidden; }
.testimonials-slider .swiper-wrapper { padding-bottom:50px; }
.swiper-slide { width:540px; padding:0 12px; }

.testi-card {
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.11);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-radius:20px; padding:36px;
  transition:var(--tr);
}
.testi-card:hover {
  background:rgba(255,255,255,.09);
  border-color:rgba(192,57,43,.40);
  transform:translateY(-4px);
}
.testi-quote { font-size:34px; color:var(--primary); line-height:1; margin-bottom:18px; }
.testi-quote i { line-height:0; }
.testi-card > p {
  font-size:15px; color:rgba(255,255,255,.82);
  line-height:1.8; margin-bottom:26px; font-style:italic;
}
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-author img {
  width:50px; height:50px; border-radius:50%;
  object-fit:cover; border:2px solid rgba(255,255,255,.20);
}
.testi-author h5 { font-size:14px; font-weight:700; color:#fff; margin:0 0 2px; }
.testi-author span { font-size:11.5px; color:rgba(255,255,255,.50); }

.testimonials-section .swiper-pagination { bottom:0; }
.testimonials-section .swiper-pagination-bullet { background:rgba(255,255,255,.30); opacity:1; }
.testimonials-section .swiper-pagination-bullet-active { background:var(--primary); }

@media (max-width:768px) { .swiper-slide { width:300px; } }

/* ── Contact ─────────────────────────────────── */
.contact { background:#fff; }
.contact h2 { font-size:clamp(26px,4vw,42px); font-weight:800; }

.contact-cards { display:flex; flex-direction:column; gap:16px; }
.contact-info-card {
  display:flex; align-items:flex-start; gap:16px;
  background:var(--bg-alt); border:1px solid var(--border);
  border-radius:14px; padding:18px 22px;
  transition:var(--tr);
}
.contact-info-card:hover {
  border-color:rgba(192,57,43,.25);
  box-shadow:var(--shadow); transform:translateX(4px);
}
.ci-icon {
  width:44px; height:44px; flex-shrink:0;
  background:linear-gradient(135deg,#FDECEA,#FFF5F5);
  border-radius:12px; display:flex;
  align-items:center; justify-content:center;
  font-size:19px; color:var(--primary);
  transition:var(--tr);
}
.contact-info-card:hover .ci-icon { background:var(--primary); color:#fff; }
.contact-info-card h5 {
  font-size:11px; font-weight:700; color:var(--text-lt);
  text-transform:uppercase; letter-spacing:1px; margin:0 0 3px;
}
.contact-info-card p { font-size:15px; color:var(--text); margin:0; font-weight:500; }
.contact-info-card p a { color:var(--text); font-weight:500; }
.contact-info-card p a:hover { color:var(--primary); }

/* Enquiry form */
.form-field {
  width:100%; padding:13px 17px;
  background:var(--bg-alt); border:1.5px solid var(--border);
  border-radius:11px; font-size:14px;
  color:var(--text); font-family:'Inter',sans-serif;
  transition:var(--tr); outline:none;
  -webkit-appearance:none; appearance:none;
  display:block;
}
.form-field:focus {
  border-color:var(--primary); background:#fff;
  box-shadow:0 0 0 4px rgba(192,57,43,.08);
}
.form-field::placeholder { color:#A0AEC0; }
.form-field option { background:#fff; color:var(--text); }
.form-textarea { min-height:126px; resize:vertical; }
select.form-field { cursor:pointer; }

.btn-submit {
  display:inline-flex; align-items:center; gap:10px;
  background:var(--primary); color:#fff;
  font-size:15px; font-weight:700;
  padding:15px 40px; border-radius:50px;
  border:none; cursor:pointer;
  box-shadow:0 8px 24px rgba(192,57,43,.30);
  transition:var(--tr);
  font-family:'Poppins',sans-serif;
}
.btn-submit:hover {
  background:var(--primary-dk); transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(192,57,43,.42);
}

/* ── Footer ─────────────────────────────────── */
#footer { background:var(--navy); }
.footer-main { padding:80px 0 50px; }

.footer-logo {
  height:80px; width:auto; display:block;
  margin-bottom:18px;
  filter:drop-shadow(0 2px 8px rgba(0,0,0,0.40));
}
.footer-desc {
  font-size:14px; color:rgba(255,255,255,.50);
  line-height:1.8; margin-bottom:22px; max-width:290px;
}
.footer-socials { display:flex; gap:10px; }
.footer-socials a {
  width:36px; height:36px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:50%; display:flex;
  align-items:center; justify-content:center;
  color:rgba(255,255,255,.50); font-size:14px;
  transition:var(--tr);
}
.footer-socials a:hover {
  background:var(--primary); border-color:var(--primary);
  color:#fff; transform:translateY(-3px);
}

.footer-hdg {
  font-size:13px; font-weight:700; color:#fff;
  text-transform:uppercase; letter-spacing:1.5px;
  margin-bottom:18px; font-family:'Poppins',sans-serif;
  position:relative; padding-bottom:12px;
}
.footer-hdg::after {
  content:''; position:absolute;
  bottom:0; left:0; width:28px; height:2px;
  background:var(--primary);
}

.footer-nav { list-style:none; padding:0; margin:0; }
.footer-nav li { padding:5px 0; }
.footer-nav a {
  color:rgba(255,255,255,.45); font-size:13.5px;
  transition:var(--tr); display:inline-block;
}
.footer-nav a:hover { color:#fff; padding-left:6px; }

.footer-contact-list p {
  display:flex; align-items:flex-start; gap:10px;
  font-size:13.5px; color:rgba(255,255,255,.45); margin-bottom:10px;
}
.footer-contact-list p i { color:var(--accent); flex-shrink:0; margin-top:3px; }
.footer-contact-list p a { color:rgba(255,255,255,.45); }
.footer-contact-list p a:hover { color:#fff; }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding:22px 0;
}
.footer-bottom p {
  text-align:center; margin:0;
  font-size:12.5px; color:rgba(255,255,255,.28);
}
.footer-bottom strong { color:rgba(255,255,255,.50); }

/* ── Floating Buttons ───────────────────────── */
.floating-box {
  position:fixed; right:22px; bottom:80px;
  display:flex; flex-direction:column;
  gap:12px; z-index:9999;
}
.fab-btn {
  width:52px; height:52px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#fff;
  transition:var(--tr); text-decoration:none;
  box-shadow:0 4px 20px rgba(0,0,0,.22);
}
.fab-btn:hover { transform:scale(1.12); color:#fff; }
.fab-call {
  background:var(--primary);
  animation:pulseRed 2s infinite;
}
.fab-wa {
  background:#25D366;
  animation:pulseGreen 2s infinite;
}
@keyframes pulseRed {
  0%   { box-shadow:0 0 0 0 rgba(192,57,43,.60); }
  70%  { box-shadow:0 0 0 14px rgba(192,57,43,0); }
  100% { box-shadow:0 0 0 0 rgba(192,57,43,0); }
}
@keyframes pulseGreen {
  0%   { box-shadow:0 0 0 0 rgba(37,211,102,.60); }
  70%  { box-shadow:0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

/* ── Responsive adjustments ─────────────────── */
@media (max-width:991px) {
  .section-pad    { padding:70px 0; }
  .section-pad-sm { padding:50px 0; }
  .services-section { padding-top:60px; }
}
@media (max-width:768px) {
  .section-pad    { padding:56px 0; }
  .section-pad-sm { padding:40px 0; }
  .testimonials-section { padding:70px 0; }
}
