/* ===================================================
   CHILAKAMMA ENTERPRISES - MASTER STYLESHEET
   Theme: Sky Blue (#1565C0) + Orange (#FF6B35)
   Version: 1.0 | 2025
   =================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #1565C0;
  --primary-light: #1E90FF;
  --primary-dark: #0D47A1;
  --secondary: #FF6B35;
  --secondary-light: #FF8C5A;
  --secondary-dark: #E65100;
  --accent: #00B4D8;
  --dark: #0A1628;
  --dark-card: #0F1E35;
  --dark-mid: #152035;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --light-grey: #EEF2FF;
  --text-dark: #1A1A2E;
  --text-mid: #3D4466;
  --text-light: #8892B0;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-bg-light: rgba(255, 255, 255, 0.85);
  --gradient-main: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #0077B6 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(21, 101, 192, 0.6) 100%);
  --gradient-orange: linear-gradient(135deg, #E65100 0%, #FF6B35 100%);
  --gradient-card: linear-gradient(145deg, rgba(21, 101, 192, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
  --shadow-sm: 0 2px 10px rgba(21, 101, 192, 0.15);
  --shadow-md: 0 8px 30px rgba(21, 101, 192, 0.2);
  --shadow-lg: 0 20px 60px rgba(21, 101, 192, 0.25);
  --shadow-orange: 0 8px 30px rgba(255, 107, 53, 0.3);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Poppins', 'Inter', sans-serif;
  --nav-height: 120px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Utility Classes ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-pad-sm {
  padding: 60px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  border: 1px solid rgba(21, 101, 192, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-title .orange {
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

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

.btn-blue {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  transition: var(--transition);
}

#header.transparent {
  background: transparent;
}

#header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#header.light-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(21, 101, 192, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 10px 0;
}

.nav-logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
}

#header.light-header .nav-link {
  color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  background: rgba(255, 255, 255, 0.1);
}

#header.light-header .nav-link:hover {
  background: rgba(21, 101, 192, 0.08);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 680px;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: rgba(255, 107, 53, 0.12);
  color: var(--secondary);
}

.dropdown-link::before {
  content: '→';
  color: var(--secondary);
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.dropdown-link:hover::before {
  opacity: 1;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.88rem;
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

#header.light-header .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 100vw);
  height: 100vh;
  background: var(--dark);
  z-index: 10050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 90px 24px 40px;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10040;
  backdrop-filter: blur(4px);
}

.mobile-overlay.open {
  display: block;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 4px;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--secondary);
}

.mobile-dropdown {
  display: none;
  padding: 8px 0 8px 16px;
}

.mobile-dropdown.open {
  display: block;
}

.mobile-dropdown-link {
  display: block;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
  margin-bottom: 2px;
}

.mobile-dropdown-link:hover {
  color: var(--secondary);
  background: rgba(255, 107, 53, 0.08);
}

.mobile-contact-info {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 10px 0;
}

.mobile-contact-info a:hover {
  color: var(--secondary);
}

/* ===================================================
   HERO SLIDER
   =================================================== */
#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.hero-slider {
  position: relative;
  width: 100%;
  /* 16:9 on desktop */
  aspect-ratio: 16/9;
  max-height: 100vh;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 22, 40, 0.85) 0%,
      rgba(21, 101, 192, 0.45) 50%,
      rgba(10, 22, 40, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--secondary-light);
  margin-bottom: 20px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.7s 0.2s;
}

.hero-slide.active .hero-badge {
  transform: translateY(0);
  opacity: 1;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.7s 0.35s;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-slide.active .hero-title {
  transform: translateY(0);
  opacity: 1;
}

.hero-title span {
  color: var(--secondary);
}

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 32px;
  line-height: 1.8;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.7s 0.5s;
}

.hero-slide.active .hero-desc {
  transform: translateY(0);
  opacity: 1;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.7s 0.65s;
}

.hero-slide.active .hero-cta {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--secondary);
  width: 28px;
  border-radius: 4px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
}

.hero-arrow:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

/* ===================================================
   QUICK CONTACT FORM STRIP
   =================================================== */
#quick-contact {
  background: var(--gradient-main);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

#quick-contact::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.03'%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");
}

.quick-contact-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.quick-contact-text {
  flex: 1;
  min-width: 200px;
}

.quick-contact-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.quick-contact-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.quick-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex: 2;
  align-items: center;
}

.quick-form .form-group {
  flex: 1;
  min-width: 180px;
}

.quick-form input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.quick-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.quick-form input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.18);
}

.quick-form .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.form-success-msg {
  display: none;
  background: rgba(0, 200, 100, 0.15);
  border: 1px solid rgba(0, 200, 100, 0.4);
  color: #00e676;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 10px;
  width: 100%;
}

/* ===================================================
   ABOUT SECTION (HOME)
   =================================================== */
#about-home {
  background: var(--white);
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
}

.about-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-float .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.about-badge-float .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
}

.about-exp-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: var(--gradient-orange);
  border-radius: var(--border-radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-orange);
  color: var(--white);
  text-align: center;
}

.about-exp-badge .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-exp-badge .label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.9;
}

.about-content {
  padding-right: 10px;
}

.about-content p {
  color: var(--text-mid);
  font-size: 0.97rem;
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-grey);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-dark);
  border-left: 3px solid var(--primary);
}

.feature-pill svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ===================================================
   STATS / HIGHLIGHTS
   =================================================== */
#stats {
  background: var(--gradient-main);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

#stats::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.12);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span {
  color: var(--secondary);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
#why-us {
  background: var(--off-white);
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21, 101, 192, 0.07);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.1), rgba(255, 107, 53, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-main);
  transform: scale(1.1) rotate(5deg);
}

.why-icon svg,
.why-icon span {
  color: var(--primary);
  font-size: 1.8rem;
}

.why-card:hover .why-icon svg,
.why-card:hover .why-icon span {
  color: var(--white);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===================================================
   SERVICES GRID
   =================================================== */
#services-grid {
  background: var(--dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#services-grid::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

#services-grid .section-title {
  color: var(--white);
}

#services-grid .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 22px 20px;
  flex: 1;
}

.service-card-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 10px;
}

/* ===================================================
   SUCCESS STORY
   =================================================== */
#success {
  background: var(--white);
  padding: 90px 0;
}

.success-timeline {
  position: relative;
  padding-left: 40px;
}

.success-timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.3);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===================================================
   OUR SPECIALISATION
   =================================================== */
#specialisation {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  padding: 90px 0;
}

#specialisation .section-title {
  color: var(--white);
}

#specialisation .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.spec-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-orange);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.spec-card:hover {
  transform: translateY(-6px);
}

.spec-card:hover::after {
  opacity: 0.08;
}

.spec-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.spec-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.spec-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===================================================
   REVIEWS
   =================================================== */
#reviews {
  background: var(--off-white);
  padding: 90px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21, 101, 192, 0.06);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: rgba(21, 101, 192, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--light-grey);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===================================================
   FAQ
   =================================================== */
#faq {
  background: var(--white);
  padding: 90px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(21, 101, 192, 0.12);
  border-radius: var(--border-radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  gap: 16px;
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ===================================================
   CALL TO ACTION
   =================================================== */
#cta {
  background: var(--gradient-main);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-contact-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.cta-contact-item a {
  color: var(--white);
  font-weight: 600;
}

/* ===================================================
   FOOTER
   =================================================== */
#footer {
  background: var(--dark);
  color: var(--white);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-brand img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  margin-top: 8px;
  border-radius: 1px;
}

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--secondary);
  opacity: 0;
  transition: var(--transition);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
  align-items: flex-start;
}

.footer-contact-item .icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item a:hover {
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 50px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--secondary-light);
}

/* ===================================================
   FLOATING CONTACT
   =================================================== */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--white);
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.float-phone {
  background: var(--gradient-main);
}

.float-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: float-pulse 2.5s ease-in-out infinite;
  opacity: 0.5;
  z-index: -1;
}

@keyframes float-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.float-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* ===================================================
   SERVICE PAGE HERO (Inner Pages)
   =================================================== */
.page-hero {
  min-height: 280px;
  padding: 80px 0 60px;
  background: var(--gradient-main);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.8) 0%, rgba(21, 101, 192, 0.5) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--secondary);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ===================================================
   SERVICE DETAIL CONTENT
   =================================================== */
.service-detail {
  padding: 80px 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

.service-detail-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-detail-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 14px;
}

.service-detail-content p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.service-bullets {
  margin: 16px 0 24px;
}

.service-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  border-bottom: 1px solid var(--light-grey);
}

.service-bullets li:last-child {
  border-bottom: none;
}

.bullet-icon {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-contact-card {
  background: var(--gradient-main);
  border-radius: var(--border-radius);
  padding: 30px 26px;
  color: var(--white);
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.sidebar-contact-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar-form input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.88rem;
  margin-bottom: 12px;
  outline: none;
  transition: var(--transition);
}

.sidebar-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.sidebar-form input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.18);
}

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

.sidebar-quick-links {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(21, 101, 192, 0.08);
}

.sidebar-quick-links h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.sidebar-quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  transition: var(--transition);
  border-bottom: 1px solid var(--light-grey);
}

.sidebar-quick-links a:last-child {
  border-bottom: none;
}

.sidebar-quick-links a:hover {
  background: rgba(21, 101, 192, 0.06);
  color: var(--primary);
  padding-left: 18px;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

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

.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
}

.contact-form-full {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form-full h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-full .sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(21, 101, 192, 0.12);
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  outline: none;
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-sidebar .info-card {
  background: var(--gradient-main);
  border-radius: var(--border-radius);
  padding: 32px;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.8);
}

.map-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-embed iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* ===================================================
   HIGHLIGHTS (Company Highlights)
   =================================================== */
#highlights {
  background: var(--white);
  padding: 90px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--border-radius);
  background: var(--gradient-card);
  border: 1px solid rgba(21, 101, 192, 0.1);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

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

.highlight-card p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===================================================
   ABOUT PAGE FULL
   =================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-card-img {
  height: 200px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.team-card-body {
  padding: 20px 16px;
}

.team-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.team-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 30px;
  border-radius: var(--border-radius);
  background: var(--white);
  border: 1px solid rgba(21, 101, 192, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.value-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(21, 101, 192, 0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

[data-delay="100"] {
  transition-delay: 0.1s;
}

[data-delay="200"] {
  transition-delay: 0.2s;
}

[data-delay="300"] {
  transition-delay: 0.3s;
}

[data-delay="400"] {
  transition-delay: 0.4s;
}

[data-delay="500"] {
  transition-delay: 0.5s;
}

[data-delay="600"] {
  transition-delay: 0.6s;
}

/* ===================================================
   BACK TO TOP
   =================================================== */
#back-top {
  position: fixed;
  bottom: 30px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 850;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  font-size: 1.1rem;
  border: none;
}

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

#back-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}



/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 90px;
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: 560px;
    margin: 0 auto;
  }

  .about-badge-float {
    left: 10px;
  }

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

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 66px;
  }

  .nav-logo img {
    height: 80px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .section-pad-sm {
    padding: 40px 0;
  }

  /* Hero: 1:1 on mobile */
  .hero-slider {
    aspect-ratio: 1/1;
    max-height: 92vw;
    min-height: 300px;
  }

  .hero-title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }

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

  .hero-arrow {
    display: none;
  }

  .hero-cta .btn {
    padding: 12px 22px;
    font-size: 0.85rem;
  }

  .quick-contact-inner {
    flex-direction: column;
    text-align: center;
  }

  .quick-form {
    flex-direction: column;
  }

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 200px;
    height: auto;
    padding: 50px 0 40px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

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

/* ===================================================
   GLOSSY / GLASS EFFECTS
   =================================================== */
.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(21, 101, 192, 0.1);
}

.glossy-btn {
  position: relative;
  overflow: hidden;
}

.glossy-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.glossy-btn:hover::before {
  left: 150%;
}

/* Shimmer effect on cards */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: rotate(15deg);
  transition: left 0.8s ease;
}

.shimmer:hover::after {
  left: 125%;
}

/* ===================================================
   FORM SUCCESS / ERROR MESSAGES
   =================================================== */
.form-success-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  margin-top: 12px;
  border: 1px solid transparent;
  line-height: 1.5;
}

/* ===================================================
   HERO BADGE (inner pages - static display)
   =================================================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

/* ===================================================
   LOGO TEXT FALLBACK
   =================================================== */
.logo-text-fallback {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
  white-space: nowrap;
}

#header.transparent .logo-text-fallback,
#header.home-header .logo-text-fallback {
  color: var(--white);
}



/* ===================================================
   MISSING FORM-GROUP STYLES (quick contact)
   =================================================== */
.form-group {
  flex: 1;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.18);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

/* ===================================================
   TOP BAR (Ticker & Quick Contact)
   =================================================== */
.top-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  z-index: 1001;
  position: relative;
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-bar-left {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-bar-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.ticker-label {
  font-weight: 800;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  white-space: nowrap;
  background: rgba(255, 107, 53, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.ticker-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

.ticker-content {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  animation: ticker-slide 30s linear infinite;
  padding-left: 20px;
}

.ticker-content span {
  font-weight: 500;
  color: var(--white);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ticker-content span::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 900;
}

@keyframes ticker-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.top-bar-link:hover {
  color: var(--secondary);
}

.top-bar-link.whatsapp-link:hover {
  color: #25D366;
}

.top-bar-link svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.top-bar-link.whatsapp-link svg {
  color: #25D366;
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .top-bar-right {
    justify-content: center;
    width: 100%;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 6px;
  }
  .top-bar-left {
    width: 100%;
  }
  .ticker-content {
    animation: ticker-slide 20s linear infinite;
  }
}