/* ==========================================================================
   NUR-TEKNİK Corporate Website Stylesheet
   Color Palette: Primary Red (#E50914), Clean White, Dark Text (#1A1A1A)
   ========================================================================== */

:root {
  --primary-red: #E50914;
  --primary-red-dark: #B20710;
  --primary-red-hover: #C80812;
  --primary-red-light: #FFF1F1;
  --primary-red-glow: rgba(229, 9, 20, 0.25);
  
  --dark-base: #0F172A;
  --dark-card: #1E293B;
  --text-dark: #1A1A1A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #F8FAFC;

  --bg-white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  
  --border-color: #E2E8F0;
  --border-focus: #E50914;

  --font-heading: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 8px 20px rgba(229, 9, 20, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  --container-max: 1240px;
  --header-height: 80px;
  --topbar-height: 40px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

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

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-red-dark);
}

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   Header & Navigation
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--dark-base);
  color: #94A3B8;
  font-size: 0.85rem;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-info a {
  color: #CBD5E1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info a:hover {
  color: #FFFFFF;
}

.top-bar-info i {
  color: var(--primary-red);
}

.top-bar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.top-bar-social a {
  color: #94A3B8;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.top-bar-social a:hover {
  color: var(--primary-red);
  transform: translateY(-2px);
}

/* Main Navbar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  height: var(--header-height);
  z-index: 1060;
  transition: all var(--transition-normal);
  border-bottom: 1px solid var(--border-color);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  height: 70px;
}

.site-header .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand-logo img {
  height: 48px;
  width: auto;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.02);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Hamburger Toggle */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1100;
}

.hamburger-line {
  width: 26px;
  height: 2.5px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background-color: var(--primary-red);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background-color: var(--primary-red);
}

/* Mobile Drawer (Hidden on Desktop) */
.mobile-drawer {
  display: none;
}

.mobile-drawer-backdrop {
  display: none;
}

/* --------------------------------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #FFFFFF;
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  background-color: var(--primary-red-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(229, 9, 20, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: #CBD5E1;
  color: var(--text-dark);
}

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

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary-red);
}

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

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(11, 15, 23, 0.94) 0%, rgba(15, 23, 42, 0.88) 55%, rgba(229, 9, 20, 0.28) 100%),
    url('../images/storefront.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  padding: 110px 0 100px;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background-color: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.4);
  color: #FF6B6B;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.hero-description {
  font-size: 1.15rem;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #E2E8F0;
  font-weight: 600;
}

.hero-feature-item i {
  color: var(--primary-red);
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
}

.hero-card-floating {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-stat-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-stat-item {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hero-stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(229, 9, 20, 0.4);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Section Headers & Common Layout
   -------------------------------------------------------------------------- */
.section {
  padding: 90px 0;
  position: relative;
}

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

.section-bg-dark {
  background-color: var(--dark-base);
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-bg-dark .section-title {
  color: #FFFFFF;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-bg-dark .section-description {
  color: #94A3B8;
}

/* --------------------------------------------------------------------------
   About Section & Teaser
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-content-block .lead-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-features-list {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-feature-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.about-feature-point i {
  color: var(--primary-red);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   Services Cards & Grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(229, 9, 20, 0.3);
}

.service-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--dark-base);
}

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

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

.service-card-icon {
  position: absolute;
  bottom: -22px;
  left: 24px;
  width: 52px;
  height: 52px;
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 3px solid var(--bg-white);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-card-icon {
  transform: rotate(6deg) scale(1.08);
  background-color: var(--primary-red-hover);
}

.service-card-body {
  padding: 36px 24px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--primary-red);
}

.service-card-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-red);
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-card-link i {
  transition: transform var(--transition-fast);
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Why Choose Us (Benefits)
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-box {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all var(--transition-normal);
  text-align: left;
}

.benefit-box:hover {
  border-color: var(--primary-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.benefit-box:hover .benefit-icon {
  background-color: var(--primary-red);
  color: #FFFFFF;
  transform: rotateY(180deg);
}

.benefit-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --------------------------------------------------------------------------
   Counters & Stats Bar
   -------------------------------------------------------------------------- */
.stats-section {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 70px 0;
  border-top: 3px solid var(--primary-red);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 20px;
}

.counter-icon {
  font-size: 2.2rem;
  color: var(--primary-red);
  margin-bottom: 12px;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-value::after {
  content: '+';
  color: var(--primary-red);
}

.counter-label {
  font-size: 0.95rem;
  color: #94A3B8;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Gallery Section & Lightbox
   -------------------------------------------------------------------------- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: var(--shadow-red);
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

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

.gallery-category-badge {
  align-self: flex-start;
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.gallery-item-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-item-desc {
  color: #CBD5E1;
  font-size: 0.85rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 15, 23, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 16px;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary-red);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--primary-red);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* --------------------------------------------------------------------------
   Contact Page & CTA Section
   -------------------------------------------------------------------------- */
.contact-cta-banner {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  box-shadow: var(--shadow-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.contact-cta-title {
  font-size: 2rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.contact-cta-subtitle {
  font-size: 1.05rem;
  color: #FFE4E6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--primary-red-light);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

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

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

.form-group {
  margin-bottom: 20px;
}

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg-light);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-red);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--primary-red-light);
}

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

.map-wrapper {
  margin-top: 50px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   Page Header (For Inner Pages)
   -------------------------------------------------------------------------- */
.page-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--primary-red);
}

.page-header-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #94A3B8;
}

.breadcrumb-nav a {
  color: #CBD5E1;
}

.breadcrumb-nav a:hover {
  color: var(--primary-red);
}

.breadcrumb-nav span {
  color: var(--primary-red);
}

/* --------------------------------------------------------------------------
   Service Detail Page
   -------------------------------------------------------------------------- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.service-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}

.service-rich-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.service-rich-content h2, .service-rich-content h3 {
  margin: 30px 0 16px;
  color: var(--text-dark);
}

.service-rich-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-rich-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.service-rich-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-red);
}

.service-sidebar-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.service-sidebar-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-red);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.sidebar-service-link:hover, .sidebar-service-link.active {
  background-color: var(--primary-red);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0B0F17;
  color: #94A3B8;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2.5px;
  background-color: var(--primary-red);
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 20px 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.footer-contact-item i {
  color: var(--primary-red);
  margin-top: 4px;
}

.footer-contact-item a {
  color: #CBD5E1;
}

.footer-contact-item a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  background-color: #06090E;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-developer-credit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-developer-credit p {
  margin: 0;
  letter-spacing: 0.3px;
}

/* --------------------------------------------------------------------------
   Alerts & Notifications
   -------------------------------------------------------------------------- */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.alert-success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
}

.alert-danger {
  background-color: #FDE8E8;
  color: #9B1C1C;
  border: 1px solid #FBD5D5;
}

/* Mobile Drawer CTA (Hidden on desktop) */
.mobile-drawer-cta {
  display: none;
}

/* --------------------------------------------------------------------------
   Subtle Scroll Animations
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(25px);
}

.js-enabled .reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
