:root {
  --primary: #fe240b; /* Vibrant red-orange */
  --primary-hover: #ff4d3a; /* Lighter red for hover */
  --background: #030305; /* Deep blue-black */
  --card: #0a0a0f; /* Slightly lighter than background */
  --border: #2a2a35; /* Dark blue-gray border */
  --text: #fdfdfd; /* Off-white text */
  --text-muted: #a0a0b0; /* Muted gray-blue */
}

/* ===== FORCE COLOR OVERRIDES ===== */
/* These will override any Tailwind cyan classes */

.text-cyan-500,
.text-cyan-400,
.text-cyan-300,
.text-cyan-600,
[class*="text-cyan-"] {
  color: var(--primary) !important;
}

.bg-cyan-500,
.bg-cyan-400,
.bg-cyan-600,
[class*="bg-cyan-"] {
  background-color: var(--primary) !important;
}

.border-cyan-500,
.border-cyan-400,
[class*="border-cyan-"] {
  border-color: var(--primary) !important;
}

.fill-cyan-400,
.fill-cyan-500,
[class*="fill-cyan-"] {
  fill: var(--primary) !important;
}

.from-cyan-500,
.via-cyan-500,
.to-cyan-500 {
  --tw-gradient-from: var(--primary) !important;
  --tw-gradient-via: var(--primary) !important;
  --tw-gradient-to: var(--primary) !important;
}

/* Selection color */
.selection\:bg-cyan-500::-moz-selection {
  background-color: var(--primary) !important;
}
.selection\:bg-cyan-500::selection {
  background-color: var(--primary) !important;
}
.selection\:text-black::-moz-selection {
  color: white !important;
}
.selection\:text-black::selection {
  color: white !important;
}

/* Text stroke */
.text-stroke-cyan {
  -webkit-text-stroke: 1px var(--primary) !important;
}

/* Kasi Shine logo span */
.logo .text-cyan-500 {
  color: var(--primary) !important;
}

/* Badge styles */
.badge {
  border-color: rgba(254, 36, 11, 0.3) !important;
  background: rgba(254, 36, 11, 0.1) !important;
}
.badge .text-cyan-500,
.badge .text-cyan-400 {
  color: var(--primary) !important;
}
.badge i {
  color: var(--primary) !important;
  fill: var(--primary) !important;
}

/* Gallery badge */
.gallery-badge.bg-cyan-500 {
  background-color: var(--primary) !important;
  color: white !important;
}

/* Border colors */
.border-cyan-500\/50 {
  border-color: rgba(254, 36, 11, 0.5) !important;
}

/* Background blur */
.bg-cyan-500\/5 {
  background: rgba(254, 36, 11, 0.05) !important;
}

/* Service prices - override any cyan */
.service-price,
.text-cyan-500.font-heading {
  color: var(--primary) !important;
}

/* Stat items icons */
.stat-item i {
  color: var(--primary) !important;
}

/* Info icons */
.info-icon i {
  color: var(--primary) !important;
}

/* Form success/error messages - keep as is but ensure overrides don't affect them */
#form-success:not(.hidden) {
  background: rgba(34, 197, 94, 0.2) !important;
  border-color: #22c55e !important;
  color: #22c55e !important;
}
#form-error:not(.hidden) {
  background: rgba(239, 68, 68, 0.2) !important;
  border-color: #ef4444 !important;
  color: #ef4444 !important;
}

/* ===== EXISTING STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--background);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.font-heading {
  font-family: "Anton", sans-serif;
}
.font-street {
  font-family: "Oswald", sans-serif;
}

/* Custom colors */
.text-primary {
  color: var(--primary) !important;
}
.text-primary-hover {
  color: var(--primary-hover) !important;
}
.text-muted {
  color: var(--text-muted) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--background) !important;
}
.bg-card {
  background-color: var(--card) !important;
}
.border-primary {
  border-color: var(--primary) !important;
}

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  font-family: "Anton", sans-serif;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  border-radius: 4px;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.skew-btn {
  transform: skewX(-10deg);
}
.skew-btn span {
  display: inline-block;
  transform: skewX(10deg);
}

/* Navbar */
#navbar {
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: rgba(3, 3, 5, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  transition: 0.3s;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero */
.text-stroke-primary {
  -webkit-text-stroke: 1px var(--primary);
  color: transparent;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--primary-hover),
    var(--primary),
    transparent
  );
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(254, 36, 11, 0.3);
  background: rgba(254, 36, 11, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 2px;
  color: var(--primary);
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--card);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px -15px var(--primary);
}

.stat-item i {
  color: var(--primary);
}

.stat-label {
  color: var(--text-muted);
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

/* Service Cards */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  height: 100%;
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -15px var(--primary);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  background: rgba(254, 36, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: 0.3s;
  border-radius: 8px;
}

.service-card:hover .icon-box {
  background: var(--primary);
  color: var(--background);
}

.service-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-price {
  font-family: "Anton", sans-serif;
  color: var(--primary);
  font-size: 1.125rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-family: "Anton", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  z-index: 20;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.gallery-badge.bg-primary {
  background: var(--primary) !important;
  color: white;
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(3, 3, 5, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.carbon-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjMDMwMzA1Ij48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiMyMjIiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
  opacity: 0.2;
  pointer-events: none;
}

/* Contact Section */
.contact-info {
  background: var(--card);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.info-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(254, 36, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border-radius: 8px;
}

.form-container {
  border-radius: 8px;
  background: var(--card);
  border: 1px solid var(--border);
}

.form-input {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: inherit;
  border-radius: 6px;
  transition: 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(254, 36, 11, 0.2);
}

.form-input::placeholder {
  color: #5a5a70;
}

/* Mobile Menu */
#mobile-menu {
  transition: all 0.3s ease;
  background: var(--background);
  border-bottom: 1px solid var(--primary);
}

#mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Floating WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25d366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1) rotate(5deg);
  background: #20ba5a;
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 36, 11, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(254, 36, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 36, 11, 0);
  }
}

/* Background Effects */
.bg-blur {
  background: rgba(254, 36, 11, 0.03) !important;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Text colors override */
.text-cyan-500,
.text-cyan-400 {
  color: var(--primary) !important;
}

.bg-cyan-500 {
  background: var(--primary) !important;
}

.border-cyan-500 {
  border-color: var(--primary) !important;
}

.text-stroke-cyan {
  -webkit-text-stroke: 1px var(--primary) !important;
}
