/* ==========================================================================
   1Plus Painting and Coating - Master Stylesheet
   Design Palette: Dark Navy/Charcoal, Gold Yellow, Cyan, Hot Pink, Royal Blue
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

:root {
  /* Color Tokens */
  --bg-dark: #070a12;
  --bg-darker: #04060b;
  --bg-card: #0e1626;
  --bg-card-alt: #131c30;
  --bg-glass: rgba(15, 23, 42, 0.75);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);
  
  --accent-yellow: #ffc82c;
  --accent-yellow-hover: #e0ac1b;
  --accent-yellow-glow: rgba(255, 200, 44, 0.3);
  
  --accent-blue: #38bdf8;
  --accent-blue-bg: rgba(56, 189, 248, 0.15);
  
  --accent-pink: #ec4899;
  --accent-pink-bg: rgba(236, 72, 153, 0.15);
  
  --accent-cyan: #06b6d4;
  --accent-cyan-bg: rgba(6, 182, 212, 0.15);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px rgba(255, 200, 44, 0.2);
}

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

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

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

/* Background Ambient Lights */
body::before {
  content: '';
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Tag Badges */
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
}

/* Top Accent Bar */
.top-accent-bar {
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-yellow) 50%, var(--accent-pink) 100%);
  position: relative;
  z-index: 100;
}

/* Header & Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(7, 10, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
  transition: var(--transition);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transform: scale(1.2);
  transform-origin: left center;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: var(--transition);
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-yellow);
  border-radius: var(--radius-full);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
}

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

.dropdown-item a {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.dropdown-item a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-yellow);
}

/* Primary Yellow Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-yellow);
  color: #000000;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 200, 44, 0.35);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 200, 44, 0.5);
}

.btn-outline, .btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 26px;
  border-radius: 4px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-outline:hover, .btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section - Full Cover Background & Modern Overlay */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 90px 0 100px;
  background-image: 
    linear-gradient(
      90deg, 
      rgba(4, 7, 14, 0.97) 0%, 
      rgba(4, 7, 14, 0.92) 42%, 
      rgba(4, 7, 14, 0.72) 65%, 
      rgba(4, 7, 14, 0.3) 85%, 
      rgba(4, 7, 14, 0.05) 100%
    ),
    url('hero.png');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--accent-yellow);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-title .highlight {
  color: var(--accent-yellow);
}

.hero-subtitle {
  font-family: var(--font-script);
  font-size: 2rem;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 600;
  opacity: 0.95;
}

.hero-desc {
  font-size: 1rem;
  color: #d1d5db;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 35px;
}

/* Feature Circle Icon Badges arranged 2 in a row */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
  margin-bottom: 40px;
  max-width: 580px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon.blue { background: #0284c7; }
.feature-icon.pink { background: #ec4899; }
.feature-icon.yellow { background: #eab308; }
.feature-icon.cyan { background: #06b6d4; }

.feature-text {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Diagonal Multi-Color Brand Accent Stripes on Right Side */
.hero-brand-stripes {
  position: absolute;
  top: 0;
  right: -25px;
  bottom: 0;
  width: 100px;
  display: flex;
  transform: skewX(-14deg);
  transform-origin: top right;
  z-index: 3;
  pointer-events: none;
}

.hero-brand-stripes .stripe {
  height: 100%;
  width: 22px;
}

.hero-brand-stripes .stripe.blue { background: #0284c7; }
.hero-brand-stripes .stripe.pink { background: #ec4899; }
.hero-brand-stripes .stripe.yellow { background: #ffc82c; }
.hero-brand-stripes .stripe.black { background: #04070e; }

/* About Us Section - Full Height Picture Cover Left Side */
.about-section {
  padding: 0;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 520px;
  align-items: stretch;
}

.about-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--border-color);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.about-content {
  padding: 70px 50px 70px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content .section-tag {
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-content .section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.about-content p {
  color: #cbd5e1;
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 720px;
}

/* 4 Ring Icon Features arranged 2 in a row */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 32px;
  margin-top: 32px;
  max-width: 620px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0;
  border: none;
}

.about-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
  transform: scale(1.1);
}

.about-feature-icon.blue {
  border: 2px solid #0284c7;
  color: #0284c7;
}

.about-feature-icon.pink {
  border: 2px solid #ec4899;
  color: #ec4899;
}

.about-feature-icon.yellow {
  border: 2px solid #ffc82c;
  color: #ffc82c;
}

.about-feature-icon.cyan {
  border: 2px solid #06b6d4;
  color: #06b6d4;
}

.about-feature-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1.25;
}

.about-feature-text p {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.3;
}

/* Why Choose Us Section */
.why-section {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

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

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.why-card.blue::before { background: var(--accent-blue); }
.why-card.pink::before { background: var(--accent-pink); }
.why-card.yellow::before { background: var(--accent-yellow); }
.why-card.cyan::before { background: var(--accent-cyan); }

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border-color: var(--border-highlight);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.why-icon.blue { background: rgba(56, 189, 248, 0.15); color: var(--accent-blue); }
.why-icon.pink { background: rgba(236, 72, 153, 0.15); color: var(--accent-pink); }
.why-icon.yellow { background: rgba(255, 200, 44, 0.15); color: var(--accent-yellow); }
.why-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Services Section & Slideshow Carousel */
.services-section {
  padding: 80px 0;
  background: var(--bg-darker);
  position: relative;
}

.services-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 20px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--accent-yellow);
  color: var(--bg-darker);
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--accent-yellow-glow);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.services-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 4px 15px;
}

.services-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.services-slider-track .service-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .services-slider-track .service-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .services-slider-track .service-card {
    flex: 0 0 100%;
  }
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.service-img-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.service-badge-icon {
  position: absolute;
  bottom: 12px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.service-content {
  padding: 22px;
  flex: 1;
}

.service-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pagination Dots */
.carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.pagination-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.pagination-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--accent-yellow);
  box-shadow: 0 0 12px var(--accent-yellow-glow);
}

/* Process Section */
/* Projects Showcase Section */
.projects-section {
  padding: 80px 0;
  position: relative;
  text-align: center;
}

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

.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-yellow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.project-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 7, 14, 0.95) 100%);
  color: #ffffff;
  text-align: left;
}

.project-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.project-badge.blue { background: #0284c7; color: #fff; }
.project-badge.pink { background: #ec4899; color: #fff; }
.project-badge.cyan { background: #06b6d4; color: #fff; }

.project-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.project-overlay p {
  font-size: 0.85rem;
  color: var(--accent-yellow);
}

/* Our Process Section - Redesigned matching reference screenshot */
.process-section {
  padding: 85px 0;
  background: var(--bg-darker);
  position: relative;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
  position: relative;
}

.process-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.process-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.process-num.blue { background: #0084ff; }
.process-num.pink { background: #ec4899; }
.process-num.yellow { background: #ffc82c; color: #000000; }
.process-num.cyan { background: #00bcd4; }

.process-icon {
  font-size: 2.1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}

.process-icon.blue { color: #ffffff; }
.process-icon.pink { color: #ec4899; }
.process-icon.yellow { color: #ffc82c; }
.process-icon.cyan { color: #ffffff; }

.process-text {
  flex-grow: 1;
}

.process-text h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.process-text p {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.35;
  margin: 0;
}

/* Stepper Connecting Arrows between Cards */
.process-arrow {
  position: absolute;
  right: -21px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.process-arrow.blue { color: #0084ff; }
.process-arrow.pink { color: #ec4899; }
.process-arrow.cyan { color: #00bcd4; }

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-darker);
  text-align: center;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
}

.stars {
  color: var(--accent-yellow);
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-yellow);
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.author-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact & Map Section */
.contact-section {
  padding: 80px 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  width: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-2px);
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}

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

.form-control {
  width: 100%;
  background: rgba(7, 10, 18, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 10px rgba(255, 200, 44, 0.2);
}

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

.form-submit-btn {
  width: 100%;
  margin-top: 10px;
}

/* Map Card */
.map-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  min-height: 360px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: none;
  filter: grayscale(0.8) invert(0.92) contrast(1.2);
}

/* Footer Section */
.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 60px 0 20px;
  position: relative;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-corner-stripes {
  display: flex;
  gap: 4px;
}

.stripe-dot {
  width: 12px;
  height: 4px;
  border-radius: 2px;
}

.stripe-dot.blue { background: var(--accent-blue); }
.stripe-dot.yellow { background: var(--accent-yellow); }
.stripe-dot.pink { background: var(--accent-pink); }

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 11, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-main);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.modal-close:hover {
  background: var(--accent-pink);
}

/* Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .hero-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    min-height: 380px;
    height: 380px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .about-content {
    padding: 50px 30px;
  }
  
  .why-grid, .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .process-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar .btn-primary {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: var(--bg-darker);
    flex-direction: column;
    padding: 40px;
    gap: 20px;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: block;
  }
  
  .hero-section {
    min-height: auto;
    padding: 60px 0 70px;
    background-image: 
      linear-gradient(
        180deg, 
        rgba(4, 7, 14, 0.95) 0%, 
        rgba(4, 7, 14, 0.88) 60%, 
        rgba(4, 7, 14, 0.96) 100%
      ),
      url('hero.png');
    background-position: center center;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Hide diagonal brand stripes on mobile so they don't cover text or phone button */
  .hero-brand-stripes {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
  }

  .about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .services-grid, .testimonials-grid, .why-grid, .process-grid, .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
