/* ============================================================
   FIXKR TECHNOLOGIES — style.css
   Color Palette:
     Primary Blue   : #1842B6
     Accent Green   : #26D48C
     White          : #ffffff
     Dark           : #0d1b3e
     Light BG       : #f4f7ff
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --primary: #1842B6;
  --primary-dark: #1235a0;
  --primary-light: #2a58d4;
  --accent: #26D48C;
  --accent-dark: #1db87a;
  --dark: #0d1b3e;
  --dark-alt: #152040;
  --white: #ffffff;
  --light-bg: #f4f7ff;
  --mid-bg: #eaf0ff;
  --text-body: #3d4f6e;
  --text-muted: #7a8fb3;
  --border: #d8e2f8;
  --shadow-sm: 0 4px 15px rgba(24, 66, 182, 0.08);
  --shadow-md: 0 8px 30px rgba(24, 66, 182, 0.14);
  --shadow-lg: 0 16px 50px rgba(24, 66, 182, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

.container,
.container-fluid {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-padding {
  padding: 90px 0;
}

.bg-light-section {
  background: var(--light-bg);
}

/* ── SECTION LABELS & TITLES ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  background: rgba(38, 212, 140, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(38, 212, 140, 0.3);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-body {
  color: var(--text-body);
  margin-bottom: 16px;
}

.text-accent {
  color: var(--accent);
}

.text-accent-light {
  color: #7bf5c3;
}

/* ── BUTTONS ── */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(24, 66, 182, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(24, 66, 182, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark) !important;
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(38, 212, 140, 0.35);
  transition: var(--transition);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(38, 212, 140, 0.45);
  color: var(--dark) !important;
}

.btn-hero-primary {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(38, 212, 140, 0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--accent-dark);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(38, 212, 140, 0.5);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-light-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-light-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  padding: 9px 0;
  position: relative;
  z-index: 1050;
  border-bottom: 2px solid var(--primary);
}

.topbar-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.topbar-link i {
  color: var(--accent);
}

.topbar-link:hover {
  color: var(--accent);
}

.topbar-social {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.topbar-social:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── HEADER / NAVBAR ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(24, 66, 182, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(24, 66, 182, 0.18);
}

.navbar {
  padding: 14px 0;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* Custom toggler */
.custom-toggler {
  border: none;
  background: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.custom-toggler:hover .toggler-line {
  background: var(--accent);
}

.custom-toggler:focus {
  outline: none;
  box-shadow: none;
}

.nav-link {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* ── HERO CAROUSEL ── */
#hero {
  position: relative;
}

.carousel-item.hero-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-1 {
  background-image: url('../images/b2.jpg');
  min-height: 640px;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.carousel-inner .container {
  height: 640px;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 60px 0 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(38, 212, 140, 0.15);
  border: 1px solid rgba(38, 212, 140, 0.4);
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.7rem, 3.8vw, 2.9rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.highlight-text {
  color: var(--accent);
}

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  transition: var(--transition);
}

.carousel-indicators button.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── ABOUT ── */
.about-img-grid {
  position: relative;
  padding-bottom: 40px;
}

.about-img-main img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 400px;
}

.about-badge-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}

.badge-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.9;
  margin-top: 6px;
}

.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}

.about-feature-item p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── SERVICE DETAIL (single service layout) ── */
.service-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.service-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.service-img-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}
.service-img-badge i { font-size: 1.4rem; color: var(--accent); }

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-list li:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}
.sdl-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.service-detail-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 3px;
}
.service-detail-list p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .service-img-wrap img { height: 320px; }
  .service-img-badge { right: 10px; bottom: 14px; font-size: 0.88rem; padding: 12px 16px; }
}

/* ── WHY CHOOSE US ── */
.why-us-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.why-us-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(38, 212, 140, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-us-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.75);
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.why-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  margin: 0;
  line-height: 1.6;
}

/* ── COUNTER ── */
.counter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.counter-item {
  position: relative;
  z-index: 2;
}

.counter-icon {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.counter-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  max-width: 140px;
  margin: 0 auto;
}

/* ── GALLERY ── */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 66, 182, 0.85), rgba(24, 66, 182, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary) !important;
}

.faq-btn {
  font-family: var(--font-head);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--dark) !important;
  background: var(--white) !important;
  padding: 18px 20px;
  box-shadow: none !important;
}

.faq-btn::after {
  filter: brightness(0) saturate(100%) invert(27%) sepia(87%) saturate(1500%) hue-rotate(207deg) brightness(80%);
}

.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
  background: var(--light-bg) !important;
}

.faq-body {
  padding: 0 20px 20px;
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--white);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-card h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light-bg);
  transition: var(--transition);
}

.custom-input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(24, 66, 182, 0.08);
  outline: none;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 8px;
}

.form-message.success {
  background: rgba(38, 212, 140, 0.12);
  border: 1px solid var(--accent);
  color: #155724;
}

.form-message.error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid #dc3545;
  color: #721c24;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-logo-text {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-logo-tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact-list li i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.text-accent {
  color: var(--accent) !important;
}

/* ── FLOATING ICONS ── */
.float-whatsapp,
.float-call {
  position: fixed;
  bottom: 80px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-whatsapp {
  left: 20px;
  background: #25D366;
}

.float-call {
  right: 20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.float-whatsapp:hover,
.float-call:hover {
  transform: translateY(-5px) scale(1.08);
  color: var(--white);
}

.float-tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-whatsapp:hover .float-tooltip,
.float-call:hover .float-tooltip {
  opacity: 1;
  bottom: 120%;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: translateY(-3px);
}

/* ── SCROLL ANIMATIONS ── */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.85);
}

[data-aos].aos-animate {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-slide,
  .slide-1,
  .slide-2,
  .slide-3 {
    min-height: 520px;
  }

  .carousel-inner .container {
    height: 520px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .about-img-main img {
    height: 340px;
  }

  .about-badge-card {
    right: -10px;
  }

  .navbar-nav {
    padding: 16px 0;
    gap: 4px !important;
  }

  .nav-link {
    padding: 10px 16px !important;
  }

  .nav-link::after {
    display: none;
  }

  .ms-lg-3 {
    margin-left: 0 !important;
    margin-top: 8px;
  }

  .btn-cta {
    width: fit-content;
  }

  .contact-form-card {
    padding: 28px 22px;
  }
}

/* Mobile */
@media (max-width: 767px) {
	.cu-ds-nn{
		display:none!important
	}
  .section-padding {
    padding: 55px 0;
  }

  .hero-slide,
  .slide-1,
  .slide-2,
  .slide-3 {
    min-height: 500px;
  }

  .carousel-inner .container {
    height: 500px;
  }

  .hero-content {
    padding: 40px 0 20px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline {
    text-align: center;
    justify-content: center;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-img-main img {
    height: 300px;
  }

  .about-badge-card {
    position: static;
    margin-top: -30px;
    margin-left: auto;
    width: fit-content;
  }

  .gallery-item img {
    height: 190px;
  }

  .topbar .row {
    text-align: center;
  }

  .topbar-link {
    font-size: 0.75rem;
  }

  .contact-form-card {
    padding: 22px 16px;
  }

  .footer-top {
    padding: 50px 0 36px;
  }

  .float-whatsapp,
  .float-call {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .counter-number {
    font-size: 2.2rem;
  }

  .service-img {
    height: 220px;
  }
}