/* ========================================
   DESTINY BUILDERS - Main Stylesheet
   Professional Construction Company Website
   ======================================== */

/* ========== CSS Variables ========== */
:root {
  /* Primary Colors */
  --primary: #0f172a;
  --primary-light: #1e293b;
  --primary-dark: #020617;

  /* Accent Colors */
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Effects */
  --glass: rgba(255, 255, 255, 0.7);
  --glass-dark: rgba(15, 23, 42, 0.8);
  --blur: 12px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px) 0;
  --container-width: 1240px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-premium: 0 20px 40px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
}

/* ========== Animations ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease forwards;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--gray-600);
  font-size: 1.1rem;
}

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

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

ul,
ol {
  list-style: none;
}

/* ========== Utility Classes ========== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.bg-light {
  background-color: var(--gray-50);
}

.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

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

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

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  user-select: none;
  touch-action: manipulation;
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

/* ========== Projects Filter ========== */
.filter-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.filter-wrapper::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for cleaner look */
}

.filter-nav {
  display: inline-flex;
  background: var(--gray-100);
  padding: 0.5rem;
  border-radius: var(--radius-full);
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  font-family: var(--font-heading);
}

.filter-btn:hover {
  color: var(--primary);
}

.filter-btn.active {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

/* ========== Header & Navigation ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 1.25rem 0;
}

.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
}

.header.scrolled .logo-text {
  color: var(--primary);
}

.logo-text span {
  color: var(--accent);
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  position: relative;
  font-size: 1.05rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.header.scrolled .nav-link {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.mobile-toggle {
  display: none;
  cursor: pointer;
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-color: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleSlow 20s linear infinite alternate;
}

@keyframes scaleSlow {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(2, 6, 23, 0.95) 0%,
      rgba(2, 6, 23, 0.85) 50%,
      rgba(2, 6, 23, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 80px;
  /* Prevent overlap with fixed header */
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero p {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.8;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ========== Stats Cards ========== */
/* ========== Stats Cards ========== */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-around;
  transform: translateY(20px);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(to bottom, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
  color: var(--gray-300);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

/* ========== Service Cards ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-premium);
  border-color: transparent;
}

.service-img {
  height: 250px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.service-info {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-flex;
  background: var(--gray-50);
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--accent);
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  flex-grow: 1;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.service-link:hover {
  color: var(--accent-dark);
  gap: 0.75rem;
}

/* ========== About Section Refined ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  height: 600px;
  width: 100%;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 85%;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 45%;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 4px solid var(--white);
}

.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-badge-float {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  text-align: center;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.experience-badge-float .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.experience-badge-float .text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

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

.lead-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--accent);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

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

.experience-badge .number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
}

/* ========== Projects Grid ========== */
.masonry-grid {
  column-count: 3;
  column-gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  break-inside: avoid;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.project-category {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  transform: translateY(-10px);
  opacity: 0;
  transition: 0.4s ease 0.1s;
}

.project-card:hover .project-category {
  transform: translateY(0);
  opacity: 1;
}

.project-info h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s ease 0.15s;
}

.project-card:hover h4 {
  transform: translateY(0);
  opacity: 1;
}

.project-info p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s ease 0.2s;
}

.project-card:hover p {
  transform: translateY(0);
  opacity: 1;
}

.btn-case-study {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transform: translateY(10px);
  opacity: 0;
  transition: 0.4s ease 0.25s;
}

.btn-case-study:hover {
  color: var(--accent);
}

.project-card:hover .btn-case-study {
  transform: translateY(0);
  opacity: 1;
}

.project-info h4 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.project-info p {
  color: var(--gray-300);
  margin-bottom: 0;
  font-size: 1rem;
}

/* ========== Why Choose Us Section ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: var(--transition-normal);
}

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

.why-card:hover::before {
  height: 100%;
}

.why-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.why-card:hover .why-icon {
  transform: scale(1.1);
}

.why-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.why-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ========== Testimonials Section ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  position: relative;
  border: 1px solid var(--gray-50);
}

.testimonial-card::after {
  content: '\f10d';
  /* FontAwesome Quote Icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 3rem;
  color: var(--gray-100);
  z-index: 0;
}

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

.testimonial-text {
  position: relative;
  z-index: 1;
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary);
}

.author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.testimonial-rating {
  margin-top: 1rem;
  color: #fbbf24;
  /* Star color */
}

/* ========== FAQ Accordion ========== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-item.active {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.faq-btn,
.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  font-family: var(--font-heading);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content,
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease-out;
  padding: 0 2rem;
  background: var(--white);
}

.faq-answer-content {
  overflow: hidden;
  color: var(--gray-600);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.faq-item.active .faq-content,
.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 2rem;
}

.faq-item.active .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('../img/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-content p {
  color: var(--gray-300);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ========== Contact Form ========== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  background: var(--white);
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 1.5rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-normal);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
}

/* ========== Footer ========== */
.footer {
  background: var(--primary-dark);
  color: var(--gray-400);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: block;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 2rem;
}

.footer-links li {
  margin-bottom: 1rem;
}

/* ========== Footer Refined ========== */
.footer {
  background: #1A1A1A;
  color: var(--gray-400);
  padding: 0;
  border-top: 4px solid var(--accent);
}

.footer .container {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
}



.footer-about {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition-normal);
}

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

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: var(--gray-400);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 5px;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
}

.footer-newsletter h5 {
  color: var(--white);
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding-right: 3rem;
  border-radius: var(--radius-sm);
}

.newsletter-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  background: #111;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--gray-500);
}

.footer-legal a:hover {
  color: var(--white);
}

/* ========== Page Header ========== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, rgba(15, 23, 42, 0.9) 100%), url('../img/hero.png');
  background-size: cover;
  background-position: center;
  padding: 180px 0 80px;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--gray-300);
}

.breadcrumb a {
  color: var(--white);
  font-weight: 500;
}

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

.breadcrumb i {
  font-size: 0.75rem;
  color: var(--accent);
}

/* ========== Timeline (Journey) ========== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 39px;
  height: 100%;
  width: 2px;
  background: var(--accent);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 1);
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition-normal);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 30px;
  width: 20px;
  height: 20px;
  background: var(--white);
  transform: rotate(45deg);
  border-left: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.timeline-item:hover .timeline-year {
  background: var(--accent);
  color: var(--white);
}

/* ========== Team Section ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.team-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  text-align: center;
  border: 1px solid var(--gray-100);
}

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

.team-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--gray-100);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-img {
  transform: scale(1.1);
}

.team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  gap: 1rem;
  transition: var(--transition-normal);
}

.team-card:hover .team-social {
  bottom: 0;
}

.team-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.team-social a:hover {
  background: var(--accent);
}

.team-info {
  padding: 2rem;
}

.team-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}

/* ========== Responsive Tweaks ========== */
@media (max-width: 1024px) {

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

  .about-images-wrapper {
    height: clamp(350px, 60vw, 500px);
    margin-bottom: 2rem;
  }

  .contact-container,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 868px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    overflow-y: auto;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.8rem;
    align-items: center;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    z-index: 1002;
    box-shadow: var(--shadow-xl);
    border-bottom: 2px solid var(--accent);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-link,
  .header.scrolled .nav-link {
    font-size: 1.25rem;
    color: var(--white);
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--accent);
  }

  .nav-cta {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav-cta .btn {
    width: 100%;
  }

  .mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
  }

  .mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .header.scrolled .mobile-toggle span {
    background: var(--primary);
  }

  /* Typography Adjustments */
  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .hero {
    min-height: 600px;
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-content {
    padding-top: 0;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 1.5rem;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding-top: 0;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  /* Global Space Adjustments */
  .section {
    padding: var(--section-padding);
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Timeline Mobile */
  .timeline::before {
    left: 20px;
  }

  .timeline-year {
    width: 40px;
    height: 40px;
    left: 0;
    font-size: 0.9rem;
  }

  .timeline-item {
    padding-left: 60px;
  }
}

/* ========== Services Page Redesign ========== */
.service-feature-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.service-feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-feature-img {
  flex: 1;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

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

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

.service-feature-content {
  flex: 1;
}

.service-feature-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-feature-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

.service-list li i {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ========== Process Flow ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  transition: transform 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.process-step {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}

.process-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.process-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .service-feature-row {
    flex-direction: column;
    gap: 2rem;
  }

  .service-feature-row:nth-child(even) {
    flex-direction: column;
  }

  .service-feature-img {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
  }
}

/* ========== New Unified Footer ========== */
.footer {
  background-color: #1A1A1A;
  color: #e2e8f0;
  padding: 80px 0 0;
  font-size: 0.95rem;
  border-top: 4px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-about {
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  color: var(--white);
}

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

.footer h4 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col-links ul,
.footer-col-services ul,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col-links li,
.footer-col-services li {
  margin-bottom: 0.8rem;
}

.footer-col-links a,
.footer-col-services a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-col-links a:hover,
.footer-col-services a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-contact-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 5px;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
}

.footer-newsletter h5 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-newsletter p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.newsletter-form button {
  padding: 0 15px;
  background: var(--accent);
  border: none;
  color: var(--white);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #d97706;
}

.footer-bottom {
  background: #111;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #64748b;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

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

  .newsletter-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    border-radius: 4px;
    width: 100%;
    padding: 12px;
  }
}

/* ========== Page Specific Mobile Styles ========== */

@media (max-width: 900px) {

  /* Contact Page Split Fix */
  .contact-hero-wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
  }

  .contact-info-panel,
  .contact-form-panel {
    width: 100%;
    max-width: 100%;
    padding: clamp(20px, 5vw, 40px);
  }

  /* Comparison Table Scroll Fix */
  .comparison-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: calc(100% + 2rem);
  }

  .comparison-table-modern {
    min-width: 700px;
    /* Force horizontal scroll */
  }

  /* Services Zig-Zag */
  .service-feature-row {
    flex-direction: column !important;
    /* Force stack */
    text-align: center;
    gap: 2rem;
  }

  .service-feature-row:nth-child(even) {
    flex-direction: column !important;
  }

  .service-list {
    text-align: left;
    /* Keep list aligned */
  }
}

@media (max-width: 768px) {

  /* Restoring missing styles */
  .page-header {
    padding: 130px 0 50px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .masonry-grid {
    column-count: 1;
  }

  /* Projects Page */
  .filter-container {
    gap: 8px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .filter-wrapper {
    justify-content: flex-start;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
  }

  /* About Page */
  .about-grid {
    gap: 3rem;
  }

  .about-images-wrapper {
    height: clamp(300px, 80vw, 400px);
    margin: 0 auto 3rem;
    max-width: 450px;
  }

  .about-img-sub {
    width: 60%;
    height: 50%;
    right: -10px;
  }

  .experience-badge-float {
    padding: 1rem 1.5rem;
    right: -5px;
    bottom: 10px;
  }

  .experience-badge-float .number {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {

  /* Grids to single column */
  .services-grid,
  .projects-gallery,
  .features-grid,
  .team-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Hero Stats */
  .hero-stats {
    flex-direction: column;
    gap: 2rem;
    padding: 1.5rem;
  }

  /* Contact Quick Actions */
  .quick-action-bar {
    grid-template-columns: 1fr;
  }

  /* Why Choose Us Guarantees */
  .guarantee-badges-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Stats Cards (Projects Page) */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

/* ========== Projects Page Styles ========== */
.projects-hero {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.projects-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../img/hero.png') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.projects-hero .container {
  position: relative;
  z-index: 1;
}

.projects-hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.projects-hero p {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Buttons */
.filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .filter-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-container::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 768px) {
  .filter-container {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-container::-webkit-scrollbar {
    display: none;
  }
}

.filter-btn {
  padding: 12px 30px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  font-weight: 600;
  font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Projects Grid */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card-modern {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card-modern:hover .card-image img {
  transform: scale(1.1);
}

.card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.card-details {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-category {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.card-location {
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

.project-stat i {
  color: var(--accent);
}

.view-project-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-fast);
}

.project-card-modern:hover .view-project-btn {
  background: var(--primary);
  color: var(--white);
}



/* ========== Why Choose Us Page Styles ========== */

/* Glass Intro Card */
.glass-intro-card {
  background: rgba(255, 255, 255, 0.95);
  /* More opaque for contrast */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin-top: -80px;
  /* Increased overlap */
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.glass-intro-card h2 {
  color: var(--primary);
  /* Dark text */
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.glass-intro-card p {
  color: var(--gray-600);
  /* Dark text */
  font-size: 1.1rem;
}

/* Features Grid Refinements */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(234, 179, 8, 0.3);
}

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

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(234, 179, 8, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 25px;
  transition: transform 0.4s ease;
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.1);
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg) scale(1.1);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.feature-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Premium Comparison Table - Pop Out Effect */
.comparison-wrapper {
  background: transparent;
  box-shadow: none;
  border: none;
  overflow-x: auto;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.comparison-wrapper::-webkit-scrollbar {
  height: 6px;
}

.comparison-wrapper::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: var(--radius-full);
}

.comparison-table-modern {
  width: 100%;
  border-collapse: separate;
  /* Required for border-radius on columns */
  border-spacing: 0;
}

.comparison-table-modern th,
.comparison-table-modern td {
  padding: 25px 30px;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

/* First Column Styling */
.comparison-table-modern tr td:first-child,
.comparison-table-modern tr th:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: transparent;
}

.comparison-table-modern tr td:first-child {
  font-weight: 600;
  color: var(--primary);
}

/* Destiny Builders Column - The "Pop Out" */
.comparison-table-modern th.highlight-col,
.comparison-table-modern td.highlight-col {
  background: var(--white);
  border-color: rgba(234, 179, 8, 0.1);
  position: relative;
  z-index: 10;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(234, 179, 8, 0.2);
  border-right: 1px solid rgba(234, 179, 8, 0.2);
}

.comparison-table-modern th.highlight-col {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding-top: 35px;
  /* Extra space for potential 'Best Choice' tag */
}

.comparison-table-modern tr:last-child td.highlight-col {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border-bottom: 1px solid rgba(234, 179, 8, 0.2);
}

/* Label above the highlighted column */
.comparison-table-modern th.highlight-col::after {
  content: 'BEST CHOICE';
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(234, 179, 8, 0.4);
  letter-spacing: 1px;
}

.comparison-table-modern tr {
  border-bottom: 1px solid var(--gray-100);
}

.comparison-table-modern tr:last-child {
  border-bottom: none;
}

.comparison-table-modern td.highlight-col {
  background: rgba(2, 6, 23, 0.02);
  /* Very subtle tint */
  font-weight: 600;
  color: var(--primary);
  border-left: 2px solid rgba(234, 179, 8, 0.2);
  border-right: 2px solid rgba(234, 179, 8, 0.2);
}

.comparison-table-modern .fa-check-circle {
  color: var(--success);
  margin-right: 8px;
  font-size: 1.1rem;
}

.comparison-table-modern .fa-times-circle {
  color: var(--gray-400);
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Seal Badges for Guarantees */
.guarantee-badges-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.guarantee-seal {
  width: 280px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.guarantee-seal:hover {
  transform: translateY(-10px);
}

.seal-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #f8fafc);
  border: 4px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(234, 179, 8, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.seal-icon-wrapper i {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Decorative ribbon or text around seal could go here */

.guarantee-seal h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.guarantee-seal p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Guarantee Section */
.guarantee-box {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition-normal);
}

.guarantee-box:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guarantee-icon-lg {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ========== Contact Page Styles ========== */

/* Floating Contact Wrapper */
.contact-hero-wrapper {
  margin-top: -100px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  background: var(--white);
  overflow: hidden;
  display: grid;
  grid-template-columns: 4fr 6fr;
  /* 40/60 Split */
}

/* Left Panel: Info */
.contact-info-panel {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.contact-info-header p {
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-detail-row {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.contact-detail-text h5 {
  color: var(--gray-400);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-detail-text p,
.contact-detail-text a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
}

/* Social Bar */
.contact-social-bar {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

.contact-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

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

/* Right Panel: Form */
.contact-form-panel {
  padding: 60px;
  background: var(--white);
}

.contact-form-panel h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.form-floating-group {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Enhanced Input Styles (High Contrast) */
.form-floating-group input,
.form-floating-group textarea,
.form-floating-group select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--gray-300);
  /* Thicker border */
  background: var(--gray-50);
  /* Filled background */
  font-size: 1rem;
  color: var(--primary);
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.form-floating-group input:focus,
.form-floating-group textarea:focus,
.form-floating-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Floating Label Logic */
.form-floating-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--gray-500);
  pointer-events: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  background: transparent;
  padding: 0 5px;
}

.form-floating-group input:focus~label,
.form-floating-group input:not(:placeholder-shown)~label,
.form-floating-group textarea:focus~label,
.form-floating-group textarea:not(:placeholder-shown)~label,
.form-floating-group select:focus~label,
.form-floating-group select:valid~label {
  top: -10px;
  left: 15px;
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--white);
  /* Hide border line behind label */
  font-weight: 600;
}

/* Quick Actions - Card Style */
.quick-action-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.quick-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  padding: 40px 20px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.quick-action-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(234, 179, 8, 0.3);
}

.quick-action-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background: rgba(234, 179, 8, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotateY(180deg);
}

.quick-action-card h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.quick-action-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Map Frame - Full Width Style */
.map-full-width {
  width: 100%;
  height: 450px;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.map-full-width:hover {
  filter: grayscale(0);
}

/* FAQ Enhancements */
.faq-item {
  margin-bottom: 1.5rem;
  /* Increased spacing */
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
}

.faq-icon {
  font-size: 1.5rem;
  /* Larger icon */
  color: var(--accent);
}

/* ========== Gallery Section ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  font-size: 2rem;
}

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

/* ========== Lightbox ========== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  animation: zoom 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--accent);
  text-decoration: none;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 100px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 50px;
  transition: 0.6s ease;
  user-select: none;
  -webkit-user-select: none;
  z-index: 2005;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 3px 3px 0;
}

.lightbox-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.lightbox-prev {
  left: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--accent);
}

@media (max-width: 900px) {

  .lightbox-prev,
  .lightbox-next {
    font-size: 35px;
    padding: 12px;
  }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }

  .gallery-item {
    height: 280px;
  }

  .lightbox-content {
    width: 95%;
    max-height: 70vh;
  }

  .lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 35px;
  }
}

@media (max-width: 900px) {
  .contact-hero-wrapper {
    grid-template-columns: 1fr;
    margin-top: -50px;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 30px;
  }
}

/* ========================================
   MOBILE S OPTIMIZATION (320px)
   ======================================== */
@media (max-width: 360px) {
  :root {
    --section-padding: 40px 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  /* Header Refinement */
  header {
    padding: 0.75rem 0;
  }

  .logo img {
    height: 36px;
  }

  .logo-text {
    font-size: 1.05rem;
    letter-spacing: -0.5px;
  }

  .logo-text span {
    font-size: 0.65rem;
  }

  .mobile-toggle span {
    width: 24px;
    height: 2px;
  }

  /* Typography Refinement */
  h1 {
    font-size: clamp(1.75rem, 8vw, 2rem);
    /* Slightly reduced for better fit */
    line-height: 1.25;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 1.8rem);
    line-height: 1.35;
  }

  h3 {
    font-size: clamp(1.2rem, 5vw, 1.35rem);
  }

  /* Hero Section Refinement */
  .hero {
    min-height: auto;
    padding: 90px 0 40px;
    /* Slight reduction in top padding */
  }

  .hero-badge {
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    /* Improved readability */
    margin-bottom: 0.75rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .btn {
    padding: 0.85rem 1.1rem;
    font-size: 0.9rem;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  /* Stats Refinement */
  .hero-stats {
    margin-top: 2rem;
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .stat-item {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  /* About Section Refinement */
  .about-images-wrapper {
    height: 240px;
    margin-bottom: 1.5rem;
  }

  .experience-badge-float {
    padding: 0.5rem 0.8rem;
    right: 0;
    bottom: 0;
    transform: none;
    border-radius: 8px 0 0 0;
  }

  .experience-badge-float .number {
    font-size: 1.3rem;
  }

  .experience-badge-float .text {
    font-size: 0.65rem;
  }

  .lead-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Service Lists Refinement */
  .service-features {
    display: grid;
    grid-template-columns: 1fr;
    /* Stack on very small screens */
    gap: 0.5rem;
  }

  .service-info {
    padding: 1.5rem !important;
    /* Force smaller padding for narrow screens */
  }

  .service-icon {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  /* Projects Filter Refinement */
  .filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }

  /* WhatsApp Float Position */
  .whatsapp-float {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
    bottom: 1rem;
    right: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  }

  /* Comparison Table Scroll Hint */
  .comparison-wrapper::after {
    content: 'Scroll \2192';
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-top: 5px;
    font-weight: 600;
  }
}