/* 
   Shekhawati Printers Custom Premium Stylesheet
   CMYK Theme: Navy Blue (K) + Cyan (C) + Magenta (M) + Yellow (Y)
*/

:root {
  /* Colors */
  --cmyk-c: #00e5ff; /* Cyan */
  --cmyk-m: #ff007f; /* Magenta */
  --cmyk-y: #ffea00; /* Yellow */
  --cmyk-k: #0b132b; /* Navy Dark (Key) */
  --cmyk-k-medium: #1c2541; /* Navy Medium */
  --cmyk-k-light: #3a506b; /* Navy Light */
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f1f5f9;
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --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-glow: 0 0 15px rgba(0, 229, 255, 0.35);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  --font-primary: 'Plus Jakarta Sans', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--cmyk-k);
}
::-webkit-scrollbar-thumb {
  background: var(--cmyk-m);
  border: 2px solid var(--cmyk-k);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--cmyk-c);
}

/* Utility Layout Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

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

.bg-dark {
  background-color: var(--cmyk-k);
  color: var(--text-light);
}

.text-white {
  color: var(--text-light) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--cmyk-c);
  display: inline-block;
  margin-bottom: 12px;
  position: relative;
}

.section-tagline::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--cmyk-m);
  margin: 6px auto 0;
}

.tagline-magenta {
  color: var(--cmyk-m);
}
.tagline-magenta::after {
  background-color: var(--cmyk-y);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--cmyk-k);
  margin-bottom: 16px;
}

.bg-dark .section-title {
  color: var(--text-light);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--cmyk-c);
  color: var(--cmyk-k);
}
.btn-primary:hover {
  background-color: #00c7e0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.btn-magenta {
  background-color: var(--cmyk-m);
  color: var(--text-light);
}
.btn-magenta:hover {
  background-color: #e60072;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 127, 0.3);
}

.btn-outline-cyan {
  background-color: transparent;
  border-color: var(--cmyk-c);
  color: var(--cmyk-c);
}
.btn-outline-cyan:hover {
  background-color: var(--cmyk-c);
  color: var(--cmyk-k);
  transform: translateY(-2px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Top bar styles */
.top-bar {
  background-color: #050a16;
  color: var(--text-light);
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.contact-info a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-info a:hover {
  color: var(--cmyk-c);
}

.location-info {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CMYK Calibration Bar */
.cmyk-calibration-bar {
  display: flex;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
}

.cmyk-bar-c { background-color: var(--cmyk-c); flex: 1; }
.cmyk-bar-m { background-color: var(--cmyk-m); flex: 1; }
.cmyk-bar-y { background-color: var(--cmyk-y); flex: 1; }
.cmyk-bar-k { background-color: var(--cmyk-k); flex: 1; }

/* Header & Navigation */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 19, 43, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: 15px 0;
  transition: padding var(--transition-normal);
}

.main-header.scrolled {
  padding: 10px 0;
  background-color: var(--cmyk-k);
  box-shadow: var(--shadow-md);
}

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

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
}

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

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

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

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform var(--transition-normal), top var(--transition-normal);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  top: 6px;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('../assets/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  color: var(--text-light);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.95) 0%, rgba(28, 37, 65, 0.8) 100%);
  z-index: 1;
}

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

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

.cmyk-pills {
  display: inline-flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  gap: 4px;
  flex-wrap: wrap;
}

.cmyk-pills span[class^="pill-"]:not(.pill-text) {
  font-weight: 900;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.pill-c { background-color: var(--cmyk-c); color: var(--cmyk-k); }
.pill-m { background-color: var(--cmyk-m); color: var(--text-light); }
.pill-y { background-color: var(--cmyk-y); color: var(--cmyk-k); }
.pill-k { background-color: var(--cmyk-k); color: var(--text-light); border: 1px solid rgba(255, 255, 255, 0.2); }
.pill-text {
  font-size: 13px;
  font-weight: 700;
  margin-left: 8px;
  color: var(--cmyk-c);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 45%, var(--cmyk-c) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 36px;
  color: #a5b4fc;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--cmyk-y);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 36px;
  border-radius: var(--border-radius-md);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 229, 255, 0.08);
  color: var(--cmyk-c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cmyk-k);
  margin-bottom: 12px;
}

.service-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cmyk-k);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

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

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

/* Service Card Hover Colors by Order (CMYK Pattern rotation) */
.service-card:nth-child(3n+1):hover {
  transform: translateY(-8px);
  border-color: var(--cmyk-c);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.15);
}
.service-card:nth-child(3n+1):hover .service-icon {
  background-color: var(--cmyk-c);
  color: var(--cmyk-k);
}
.service-card:nth-child(3n+1):hover .service-link {
  color: var(--cmyk-c);
}

.service-card:nth-child(3n+2) .service-icon {
  background-color: rgba(255, 0, 127, 0.08);
  color: var(--cmyk-m);
}
.service-card:nth-child(3n+2):hover {
  transform: translateY(-8px);
  border-color: var(--cmyk-m);
  box-shadow: 0 12px 30px rgba(255, 0, 127, 0.15);
}
.service-card:nth-child(3n+2):hover .service-icon {
  background-color: var(--cmyk-m);
  color: var(--text-light);
}
.service-card:nth-child(3n+2):hover .service-link {
  color: var(--cmyk-m);
}

.service-card:nth-child(3n+3) .service-icon {
  background-color: rgba(255, 234, 0, 0.08);
  color: #c9ab00;
}
.service-card:nth-child(3n+3):hover {
  transform: translateY(-8px);
  border-color: var(--cmyk-y);
  box-shadow: 0 12px 30px rgba(255, 234, 0, 0.15);
}
.service-card:nth-child(3n+3):hover .service-icon {
  background-color: var(--cmyk-y);
  color: var(--cmyk-k);
}
.service-card:nth-child(3n+3):hover .service-link {
  color: #c9ab00;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-bullets {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.bullet-item {
  display: flex;
  gap: 20px;
}

.bullet-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 234, 0, 0.1);
  color: var(--cmyk-y);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bullet-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.bullet-text {
  font-size: 14px;
  color: #94a3b8;
}

/* Why Choose Us Illustration */
.why-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

.cmyk-box {
  width: 280px;
  height: 280px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cmyk-ring {
  position: absolute;
  border: 4px solid transparent;
  border-radius: 50%;
  animation: rotateRings 20s linear infinite;
}

.ring-c {
  width: 280px;
  height: 280px;
  border-color: var(--cmyk-c) rgba(0,229,255,0.1) rgba(0,229,255,0.1);
  animation-duration: 15s;
}

.ring-m {
  width: 240px;
  height: 240px;
  border-color: transparent var(--cmyk-m) rgba(255,0,127,0.1) rgba(255,0,127,0.1);
  animation-duration: 12s;
  animation-direction: reverse;
}

.ring-y {
  width: 200px;
  height: 200px;
  border-color: rgba(255,234,0,0.1) rgba(255,234,0,0.1) var(--cmyk-y) transparent;
  animation-duration: 9s;
}

.ring-k {
  width: 160px;
  height: 160px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  animation: none;
}

.cmyk-center {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(5, 10, 22, 0.85);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.cmyk-inside-logo {
  width: 70%;
  height: auto;
}

.crosshair {
  position: absolute;
  width: 140px;
  height: 140px;
  pointer-events: none;
}
.crosshair::before,
.crosshair::after {
  content: '';
  position: absolute;
  background-color: rgba(255, 255, 255, 0.25);
}
.crosshair::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}
.crosshair::after {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: linear-gradient(135deg, var(--cmyk-m) 0%, #b30059 100%);
  padding: 16px 24px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  animation: floatBadge 6s ease-in-out infinite;
}

.badge-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
}

.badge-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes rotateRings {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Industries Served */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.industry-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  border: 1px solid transparent;
}

.industry-card:hover {
  background-color: var(--bg-white);
  border-color: #e2e8f0;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.industry-icon {
  font-size: 32px;
  color: var(--cmyk-k-light);
  margin-bottom: 16px;
  transition: color var(--transition-fast);
}

.industry-card:hover .industry-icon {
  color: var(--cmyk-m);
}

.industry-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--cmyk-k);
  margin-bottom: 8px;
}

.industry-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.portfolio-tab-btn {
  background-color: var(--bg-white);
  border: 1px solid #cbd5e1;
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.portfolio-tab-btn:hover {
  color: var(--cmyk-k);
  border-color: var(--cmyk-k);
}

.portfolio-tab-btn.active {
  background-color: var(--cmyk-k);
  border-color: var(--cmyk-k);
  color: var(--text-light);
}

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

.portfolio-item {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  position: relative;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: opacity 0.3s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 19, 43, 0.95) 0%, rgba(11, 19, 43, 0.4) 60%, transparent 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-light);
  transition: opacity var(--transition-normal);
  z-index: 2;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

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

.portfolio-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cmyk-c);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.portfolio-item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.portfolio-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.4;
}

/* Customer Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 80px;
  line-height: 1;
  color: rgba(11, 19, 43, 0.05);
  font-family: Georgia, serif;
}

.stars {
  color: var(--cmyk-y);
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--cmyk-k);
}

.author-title {
  font-size: 13px;
  color: var(--text-muted);
}

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

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.faq-question-btn {
  width: 100%;
  background-color: transparent;
  border: none;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--cmyk-k);
  padding: 20px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.faq-question-btn:hover {
  background-color: rgba(0, 229, 255, 0.03);
}

.faq-icon {
  font-size: 14px;
  color: var(--cmyk-c);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

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

/* Contact & Google Maps */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: flex-start;
}

/* Form Styles */
.contact-form-container {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
  border: 1px solid #e2e8f0;
  position: relative;
}

.form-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--cmyk-k);
  margin-bottom: 8px;
}

.form-subheading {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--cmyk-k-light);
}

.required {
  color: var(--cmyk-m);
}

.form-control {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid #cbd5e1;
  outline: none;
  background-color: var(--bg-light);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--cmyk-c);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}

textarea.form-control {
  resize: vertical;
}

/* Form Validation Errors */
.form-group.invalid .form-control {
  border-color: var(--cmyk-m);
}

.error-msg {
  font-size: 12px;
  color: var(--cmyk-m);
  font-weight: 600;
  display: none;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Button Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: var(--text-light);
  animation: spin 1s ease-in-out infinite;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Success Modal */
.overlay-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.95);
  z-index: 100;
  border-radius: var(--border-radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-md);
  text-align: center;
  max-width: 400px;
  box-shadow: var(--shadow-lg);
  transform: scale(1);
  transition: transform 0.3s ease;
}

.modal-icon {
  font-size: 60px;
  color: var(--cmyk-c);
  margin-bottom: 20px;
}

.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--cmyk-k);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Contact Details Info Col */
.contact-info-container {
  display: flex;
  flex-direction: column;
}

.info-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--cmyk-k);
  margin-bottom: 8px;
}

.info-subheading {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.info-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.info-detail-item {
  display: flex;
  gap: 16px;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 0, 127, 0.08);
  color: var(--cmyk-m);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.detail-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--cmyk-k);
  margin-bottom: 4px;
}

.detail-text p {
  font-size: 14px;
  color: var(--text-muted);
}

.detail-text a:hover {
  color: var(--cmyk-m);
}

.map-wrapper {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

/* Footer styling */
.main-footer {
  background-color: #050a16;
  color: #94a3b8;
  padding-top: 80px;
}

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

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background-color: var(--cmyk-c);
  color: var(--cmyk-k);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--cmyk-m);
  margin-top: 8px;
}

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

.footer-links a {
  font-size: 14px;
}

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

.footer-col p {
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-col p i {
  margin-top: 4px;
  color: var(--cmyk-y);
}

.footer-col p a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  font-size: 13px;
}

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

.footer-bottom a {
  color: var(--cmyk-c);
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating WhatsApp Button */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-fast);
}

.whatsapp-floating:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--cmyk-k);
  color: var(--text-light);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-floating:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Media Queries (Mobile-first design) */

@media (max-width: 992px) {
  .header-container {
    position: relative;
  }
  
  .mobile-nav-toggle {
    display: block;
  }

  .primary-navigation {
    position: fixed;
    top: 75px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--cmyk-k);
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    transition: left var(--transition-normal);
    overflow-y: auto;
  }

  .primary-navigation.open {
    left: 0;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 24px;
  }

  .nav-cta-group {
    width: 100%;
    max-width: 300px;
  }
  
  .nav-cta-group .btn {
    width: 100%;
  }

  /* Hamburger transform when open */
  .mobile-nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }
  .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* Why Grid */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Footer Grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }

  /* Hero adjustments */
  .hero-section {
    padding: 80px 0;
    min-height: auto;
    text-align: center;
  }
  
  .hero-content {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .top-bar {
    display: none; /* Hide on tablets and mobile to save vertical space */
  }

  /* Form layouts */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

@media (max-width: 576px) {
  .cmyk-pills {
    padding: 4px 12px;
    margin-bottom: 16px;
    justify-content: center;
  }

  .cmyk-pills span[class^="pill-"]:not(.pill-text) {
    width: 18px;
    height: 18px;
    font-size: 10px;
  }

  .pill-text {
    font-size: 11px;
    margin-left: 4px;
    letter-spacing: 0.5px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 30px;
  }

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

  .contact-form-container {
    padding: 24px;
  }
}
