/* ========================================
    DNA Development Inc. - Main Stylesheet
    Bootstrap 5 Integrated
    Modern Design System
    ======================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap");

/* ========================================
    CSS VARIABLES & BRAND COLORS
    ======================================== */

:root {
  /* Brand Colors */
  --color-primary: #006097;
  --color-primary-dark: #003959;
  --color-primary-light: #0078bd;
  --color-accent: #fdb927;
  --color-accent-dark: #e8a820;
  --color-secondary: #a3a3a3;

  /* Modern Design Tokens */
  --color-background: #f8f9fa;
  --color-card: #ffffff;
  --color-card-foreground: #1a1a1a;
  --color-dark: #1a1a1a;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-muted: #6c757d;
  --color-muted-foreground: #6c757d;
  --color-gray: #999999;
  --color-light-gray: #f5f5f5;
  --color-white: #ffffff;
  --color-border: #dee2e6;

  /* Typography */
  --font-primary: "Inter", "Segoe UI", sans-serif;
  --font-heading: "Playfair Display", "Arial Black", sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --section-padding-sm: 4rem 0;

  /* Borders & Shadows */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Bootstrap Overrides */
  --bs-primary: #006097;
  --bs-primary-rgb: 0, 96, 151;
  --bs-secondary: #a3a3a3;
  --bs-warning: #fdb927;
  --bs-warning-rgb: 253, 185, 39;
}

/* ========================================
    SECTION COLOR VARIANTS
    ======================================== */

/* DNA Blue Background */
.bg-dna-primary {
  background-color: var(--color-primary) !important;
}

/* DNA Yellow Text */
.text-dna-accent {
  color: var(--color-accent) !important;
}

/* DNA Blue Text for Labels */
.text-dna-primary {
  color: var(--color-primary) !important;
}

/* ========================================
    CARD BORDER STYLES
    ======================================== */

/* Services Cards - Blue Border */
.service-card {
  border: 2px solid var(--color-primary) !important;
}

.service-card:hover {
  border-color: var(--color-accent) !important;
}

/* One-Stop Shop Cards - Blue Border */
.one-stop-card {
  border: 2px solid var(--color-primary) !important;
}

.one-stop-card:hover {
  border-color: var(--color-accent) !important;
}

/* Trust Signal Cards - Yellow Border */
.trust-item {
  border: 2px solid var(--color-accent) !important;
}

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

/* ========================================
    GLOBAL STYLES
    ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
}

ul,
ol {
  padding-left: 1rem;
}

.main-content {
  min-height: 60vh;
}

/* ========================================
    TYPOGRAPHY
    ======================================== */

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

/* Service Contact Section Headers - Yellow accent on blue background */
.service-contact-title {
  color: var(--color-accent) !important;
}

/* Section Label Component */
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

/* Company Name in Hero - Override default h2 styling */
.company-name {
  font-family: var(--font-primary);
  color: var(--color-accent);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: normal;
}

/* Hero Section Text - Text Shadow for Background Image Contrast */
.hero .section-label {
  color: var(--color-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero .company-name {
  color: var(--color-accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

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

/* ========================================
    BOOTSTRAP BUTTON OVERRIDES
    ======================================== */

/* Override Bootstrap btn-primary and btn-warning with brand accent (yellow) */
.btn-primary,
.btn-warning {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-width: 2px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.btn-primary:hover,
.btn-warning:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(253, 185, 39, 0.3);
}

/* Override Bootstrap btn-outline-light */
.btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
}

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

/* Button icon styling */
.btn-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

/* ========================================
    HERO SECTION - Bootstrap Jumbotron Style
    ======================================== */

.hero {
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
}

/* Hero with background image */
.hero-with-image {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/hero-construction.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

/* About page hero */
.hero-about {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../images/project-renovation.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

/* Contact page hero */
.hero-contact {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/project-repair.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: normal;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(253, 185, 39, 0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(253, 185, 39, 0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(253, 185, 39, 0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(253, 185, 39, 0.05) 75%);
  background-size: 60px 60px;
  background-position:
    0 0,
    0 30px,
    30px -30px,
    -30px 0px;
  opacity: 0.3;
  z-index: 0;
}

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

.hero h1 {
  color: var(--color-white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-description {
  color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
    HERO SECTION - Service Pages (Smaller)
    ======================================== */

.hero-services {
  min-height: 30vh;
  padding: 3rem 0;
}

/* ========================================
    SERVICE DETAIL CARD LISTS
    ======================================== */

/* Service detail card lists - Mobile first: full width */
.service-detail-card .list-unstyled > li {
  width: 100%;
}

/* Desktop: 2 columns (50% width each) */
@media (min-width: 768px) {
  .service-detail-card .list-unstyled > li {
    width: 50%;
  }
}

/* ========================================
    SECTION STYLES
    ======================================== */

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .subtitle {
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 700px;
  margin: 0 auto;
}

.about-section-header {
  margin-bottom: 0;
}

/* ========================================
    SERVICE CARDS - Bootstrap Card Component
    ======================================== */

.service-card {
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md) !important;
}

.service-card .card-body {
  padding: 2rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: var(--radius-md);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.dna-blue {
  stroke: #006097;
}

.dna-blue .accent {
  stroke: #fdb927;
  stroke-width: 2;
}

.service-card .card-title {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.service-card .card-text {
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

/* ========================================
    ONE-STOP SHOP SECTION
    ======================================== */

.one-stop-shop {
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-accent-dark) 100%
  );
}

.one-stop-shop .section-header h2 {
  color: var(--color-dark);
}

.one-stop-shop .section-header .subtitle {
  color: var(--color-dark);
  opacity: 0.9;
}

.one-stop-card {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.one-stop-card .card-body {
  padding: 2rem;
}

.one-stop-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: var(--radius-md);
}

.one-stop-card-icon svg {
  width: 100%;
  height: 100%;
}

.one-stop-card .card-title {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.one-stop-card .card-text {
  color: var(--color-muted);
  margin-bottom: 0;
}

/* ========================================
    TRUST SIGNALS SECTION
    ======================================== */

.trust-signals {
  background: linear-gradient(
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
}

.trust-signals h2 {
  color: var(--color-white);
}

.trust-item {
  border: none !important;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.trust-item .card-body {
  padding: 2rem;
}

.trust-item-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: var(--radius-md);
}

.trust-item-icon svg {
  width: 100%;
  height: 100%;
}

.trust-item .card-title {
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.trust-item .card-text {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.trust-signals .lead {
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
    NAVBAR OVERRIDES
    ======================================== */

.header,
.header-desktop,
.header-mobile {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.navbar-scrolled,
.header-desktop.navbar-scrolled,
.header-mobile.navbar-scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-md);
}

.header .navbar-brand,
.header .nav-link,
.header .dropdown-toggle {
  color: var(--color-text) !important;
}

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

.header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 96, 151, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-desktop .navbar,
.header-mobile .navbar {
  padding: 0;
}

.navbar-brand img {
  transition: transform var(--transition-fast);
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-accent);
}

.dropdown-item {
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-left: 1.5rem;
}

.navbar-toggler {
  border-color: var(--color-accent);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(253, 185, 39, 0.25);
}

/* ========================================
    DESKTOP NAVIGATION (≥769px)
    ======================================== */

.header-desktop .navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-end;
}

.header-desktop .nav-item {
  position: relative;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.header-desktop .nav-link {
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.75rem;
  color: var(--color-text) !important;
  transition: color var(--transition-fast);
}

.header-desktop .nav-link:hover {
  color: var(--color-accent) !important;
}

.header-desktop .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-top: 0;
  min-width: 250px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
}

.header-desktop .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-desktop .dropdown-item {
  white-space: nowrap;
}

/* ========================================
    MOBILE NAVIGATION (<769px)
    ======================================== */

.header-mobile .navbar-collapse {
  background-color: var(--color-white);
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
  max-height: 70vh;
  overflow-y: auto;
}

.header-mobile .nav-link {
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-text) !important;
  display: block;
}

.header-mobile .nav-link.active {
  color: var(--color-primary) !important;
  background-color: var(--color-light-gray);
}

.header-mobile .dropdown-menu {
  background-color: var(--color-light-gray);
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.header-mobile .dropdown-item {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.header-mobile .dropdown-item:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-left-color: var(--color-accent);
}

/* ========================================
    FOOTER OVERRIDES
    ======================================== */

.footer {
  background: linear-gradient(
    var(--color-primary) 0%,
    var(--color-primary-dark) 100%
  );
  border-top: 3px solid var(--color-accent);
  padding: 5rem 0 3rem;
}

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

.footer-brand {
  grid-column: 1 / -1;
}

.footer h3,
.footer h4,
.footer h3 strong {
  color: var(--color-white) !important;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(253, 185, 39, 0.8) !important;
  margin-bottom: 0.5rem;
}

.footer p:has(strong),
.footer .text-muted {
  color: var(--color-accent) !important;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer a {
  color: var(--color-accent) !important;
  transition: color var(--transition-fast);
  font-weight: 500;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--color-accent) !important;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}

/* ========================================
    PROCESS SECTION
    ======================================== */

.process-section {
  padding: var(--section-padding);
  background-color: var(--color-background);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: start;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.process-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.process-step:hover .process-icon-wrap {
  transform: scale(1.1);
}

.process-step-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step-title {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.process-step-desc {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Add arrows between steps on desktop */
.process-step:not(:last-child)::after {
  content: "➔";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-accent-dark);
  font-weight: bold;
}

/* ========================================
    ABOUT PAGE - Modern Components
    ======================================== */

/* Section Background */
.bg-secondary {
  background-color: #f8f9fa;
}

/* Hero Content Positioning */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 10rem 1.5rem 8rem;
}

.hero-text {
  max-width: 42rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1.15;
  color: var(--color-white);
  text-wrap: balance;
  margin-top: 1rem;
}

/* Section Component */
.section {
  padding: 6rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-top: 0.75rem;
  line-height: 1.2;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.375rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}

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

.about-badge {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  background-color: var(--color-accent);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}

.about-badge-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin: 0;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.75rem;
  color: var(--color-dark);
  margin: 0.25rem 0 0;
  line-height: 1.3;
}

@media (min-width: 992px) {
  .about-badge {
    right: -2rem;
  }
}

.about-content {
  padding-left: 0;
}

.about-content .section-label {
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
  margin-top: 1rem;
}

.about-text:first-of-type {
  margin-top: 1.5rem;
}

/* Values List */
.values-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.value-item span {
  font-size: 0.95rem;
  color: var(--color-text);
}

/* About section on blue background - white text */
.bg-dna-primary .about-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

.bg-dna-primary .value-item span {
  color: rgba(255, 255, 255, 0.8) !important;
}

.bg-dna-primary .section-title {
  color: var(--color-white) !important;
}

/* ========================================
    CONTACT PAGE - Modern Cards
    ======================================== */

.contact-card {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal);
}

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

.contact-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background-color: rgba(253, 185, 39, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
    RESPONSIVE ADJUSTMENTS
    ======================================== */

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    min-height: 60vh;
  }

  .hero-services {
    min-height: 20vh;
    padding: 2rem 0;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-content {
    padding: 8rem 1.5rem 6rem;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .service-card .card-body,
  .one-stop-card .card-body,
  .trust-item .card-body {
    padding: 1.5rem;
  }

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

  .process-step:not(:last-child)::after {
    display: none;
  }

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

  .about-badge {
    right: 0;
    bottom: -1rem;
    min-width: 100px;
    padding: 1rem;
  }

  .about-badge-value {
    font-size: 1.5rem;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

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

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* Service Gallery Images */
.service-gallery img {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ========================================
    GALLERY MODAL STYLES
    ======================================== */

/* Modal background */
.modal {
  display: none;
  /* position: fixed; */
  /* z-index: 1050; */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* overflow: auto; */
  background-color: rgba(0, 0, 0, 0.8);
}

/* Modal content (image) */
.modal-content {
  margin: auto;
  /* display: block; */
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 80vh;
  /* position: relative; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  animation: zoom 0.3s;
}

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

/* Close button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1051;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 1051;
}

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

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Modal body wrapper */
.modal-body {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Disable body scroll when modal is open */
.modal-open {
  overflow: hidden;
}

/* Gallery image hover effect */
.gallery-image {
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
