/* ===================================
   SSP ENTERPRISES - GLOBAL STYLESHEET
   Color Palette: Deep Teal + Warm Gold + Off-White + Charcoal
   Fonts: Playfair Display + DM Sans
=================================== */

:root {
  --teal:      #0a5c6b;
  --teal-dark: #073f4a;
  --teal-light:#0e7a8f;
  --gold:      #c9943a;
  --gold-light:#dba94f;
  --cream:     #f8f3ec;
  --charcoal:  #1c2b2f;
  --text:      #3a4a4d;
  --light-text:#6c8287;
  --white:     #ffffff;
  --border:    #d9e4e6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--charcoal);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar a {
  color: #b0c4c8;
  text-decoration: none;
  transition: color .2s;
}
.top-bar a:hover { color: var(--gold); }

/* ---- NAVBAR ---- */
.main-navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 0px 0;
}
.logo-img { height: 110px; object-fit: contain; }
.main-navbar .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: bold;
  font-size: 0.92rem;
  letter-spacing: .5px;
  color: var(--charcoal) !important;
  padding: 8px 14px !important;
  transition: color .2s;
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .3s;
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { width: calc(100% - 28px); }
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--teal) !important; }

/* ---- BTN BRAND ---- */
.btn-brand {
  background: var(--gold);
  color: var(--white) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: .5px;
  padding: 10px 26px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background .25s, transform .2s;
}
.btn-brand:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-white {
  background: var(--white);
  color: var(--teal-dark) !important;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.btn-white:hover { background: var(--cream); }

/* ---- HERO SLIDER ---- */
.hero-slide {
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.slide-1 {
  background-image: url('images/banner/new-banner-1.jpg');
  background-color: var(--teal-dark);
}
.slide-2 {
  background-image: url('images/banner/new-banner-2.jpg');
  background-color: var(--charcoal);
}
.slide-3 {
  background-image: url('images/banner/banner-4.jpg');
  background-color: var(--teal);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7,63,74,.88) 40%, rgba(7,63,74,.35) 100%);
}
.hero-content { position: relative; z-index: 2; }
.min-vh-85 { min-height: 85vh; }
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-title {
/*  font-size: clamp(2.4rem, 5vw, 4.2rem);*/
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.carousel-indicators [data-bs-target] {
  width: 32px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  border: none;
}
.carousel-indicators .active { background: var(--gold); width: 50px; }

/* ---- STATS ---- */
.stats-section { background: var(--teal); padding: 0; }
.stats-row { border-top: 4px solid var(--gold); }
.stat-item {
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ---- SECTIONS ---- */
.section-pad { padding: 60px 0; }
.bg-light-cream { background: var(--cream); }
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold); }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title span { color: var(--teal); }
.section-title.light, .section-title.light span { color: var(--white); }
.section-title.light span { color: var(--gold); }
.section-desc { color: var(--light-text); line-height: 1.8; margin-bottom: 14px;text-align:justify; }

/* ---- WELCOME ---- */
.welcome-img-wrap { position: relative; display: inline-block; }
.main-img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.12); }
.floating-badge {
  position: absolute;
  bottom: 30px; left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(201,148,58,.35);
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; }
.feature-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.feature-chip i { color: var(--gold); margin-right: 8px; }

/* ---- PRODUCT TABS ---- */
.product-tabs { gap: 8px; border: none; }
.prod-tab-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .25s;
}
.prod-tab-btn.active, .prod-tab-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.prod-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.13); }
.prod-card img { width: 100%; 
/*  height: 220px; */
  object-fit: cover; 
  display: block; }

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(201,148,58,.15);
  border-radius: 50%;
}
.cta-title { font-size: 2.2rem; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-desc { color: rgba(255,255,255,.8); margin-bottom: 32px; font-size: 1rem; position: relative; }

/* ---- CHAIR CARDS ---- */
.chair-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s;
}
.chair-card:hover { transform: translateY(-6px); }
.chair-img img { 
  width: 100%; 
/*  height: 200px; */
  object-fit: cover; 
  display: block; }
.chair-body { padding: 14px 16px; }
.chair-body h6 { font-family: 'Playfair Display', serif; color: var(--charcoal); margin-bottom: 8px; }
.chair-link { font-size: 0.82rem; font-weight: 600; color: var(--teal); text-decoration: none; }
.chair-link:hover { color: var(--gold); }
.chair-link i { font-size: 0.75rem; margin-left: 4px; }

/* ---- WHY SECTION ---- */
.bg-dark-section { background: var(--charcoal); }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: background .3s, border .3s;
}
.why-card:hover { background: rgba(201,148,58,.1); border-color: var(--gold); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--white);
}
.why-card h5 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.6); font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ---- FOOTER ---- */
.main-footer { background: #101c1f; padding-top: 30px; }
.footer-logo { object-fit: contain;width:80%;background:white;border-radius:10px;  }
.footer-about { color: #8a9fa3; font-size: 0.88rem; line-height: 1.7; }
.footer-heading { color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #8a9fa3; text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { color: #8a9fa3; font-size: 0.85rem; margin-bottom: 12px; display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: #8a9fa3; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .2s;
}
.social-links a:hover { background: var(--gold); }
.footer-top { padding-bottom: 50px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: #556b70; font-size: 0.82rem; margin: 0; }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 28px;
  width: 54px; height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  z-index: 9999;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(100deg, var(--teal-dark), var(--teal));
/*  padding: 80px 0 60px;*/
      padding: 30px 0 30px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 280px; height: 280px;
  background: rgba(201,148,58,.12);
  border-radius: 50%;
}
.page-hero-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.breadcrumb-custom { display: flex; gap: 8px; font-size: 0.85rem; }
.breadcrumb-custom a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: var(--gold); }

/* ---- ABOUT PAGE ---- */
.about-img { border-radius: 14px; width: 100%; box-shadow: 0 16px 50px rgba(0,0,0,.12); }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: box-shadow .3s, border .3s;
}
.value-card:hover { box-shadow: 0 10px 35px rgba(0,0,0,.1); border-color: var(--gold); }
.value-icon { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.value-card h5 { font-size: 1rem; color: var(--charcoal); margin-bottom: 8px; }
.value-card p { color: var(--light-text); font-size: 0.87rem; margin: 0; line-height: 1.7; }

/* ---- PRODUCTS PAGE ---- */
.filter-tabs { gap: 8px; border: none; flex-wrap: wrap; }
.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.84rem;
  padding: 8px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .25s;
}
.filter-btn.active, .filter-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
.product-grid-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
}
.product-grid-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(0,0,0,.12); }
.product-grid-card img { width: 100%; height: 230px; object-fit: cover; }
.product-grid-card .card-body { padding: 16px; }
.product-grid-card h6 { color: var(--charcoal); margin-bottom: 4px; }
.product-grid-card .cat-tag { font-size: 0.75rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ---- REPAIR PAGE ---- */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: border .3s, box-shadow .3s;
}
.service-item:hover { border-color: var(--gold); box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.service-dot {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.service-item h6 { color: var(--charcoal); margin-bottom: 4px; }
.service-item p { color: var(--light-text); font-size: 0.85rem; margin: 0; }

/* ---- GALLERY PAGE ---- */
.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .35s, box-shadow .35s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 12px 35px rgba(0,0,0,.18); }
.gallery-overlay-wrap { position: relative; overflow: hidden; border-radius: 10px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(7,63,74,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  border-radius: 10px;
}
.gallery-overlay-wrap:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* ---- CONTACT PAGE ---- */
.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 8px 35px rgba(0,0,0,.08);
}
.contact-info-item {
  display: flex; gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-info-item h6 { color: var(--charcoal); margin-bottom: 4px; font-size: 0.9rem; }
.contact-info-item p { color: var(--light-text); font-size: 0.88rem; margin: 0; line-height: 1.6; }
.contact-info-item a { color: var(--teal); text-decoration: none; }
.contact-info-item a:hover { color: var(--gold); }
.form-label { font-weight: 600; font-size: 0.85rem; color: var(--charcoal); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.88rem;
  transition: border .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,92,107,.1);
}
.map-iframe { border-radius: 14px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,.1); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .floating-badge { right: 0; bottom: -20px; }
  .hero-slide { min-height: 70vh; }
  .min-vh-85 { min-height: 70vh; }
  .hero-title { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
}


 .floating-contact{
    position: fixed;
    right: 25px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

.contact-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.contact-btn i{
    font-size: 20px;
}

/* WhatsApp */
.whatsapp{
    background: linear-gradient(135deg,#25D366,#128C7E);
}

/* Call */
.call{
    background: linear-gradient(135deg,#007bff,#0056d2);
}

/* Hover effect */
.contact-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.floating-contact span{
  font-weight: bold;
}