:root {
  --primary-red: #dc2626;
  --dark-red: #b91c1c;
  --light-red: #ef4444;
  --pure-black: #000000;
  --dark-gray: #1f1f1f;
  --medium-gray: #4a4a4a;
  --light-gray: #f5f5f5;
  --pure-white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.25);
  --shadow-heavy: rgba(0, 0, 0, 0.4);
  --gradient-red: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--dark-red) 100%
  );
  --gradient-dark: linear-gradient(
    135deg,
    var(--pure-black) 0%,
    var(--dark-gray) 100%
  );
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--pure-black);
  background: var(--pure-white);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--pure-white);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px var(--shadow-light);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 1rem 20px; */
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-red);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  color: var(--dark-red);
}

.logo-highlight {
  color: var(--pure-black);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--pure-black);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-red);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  margin-left: 5px !important;
  font-size: 2rem;
  color: var(--pure-black);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(255, 0, 0, 0.6) 0%,
      rgba(128, 0, 128, 0.6) 100%
    ),
    url("images/hero.webp")
      center/cover no-repeat;

  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23DC2626" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--pure-white);
  max-width: 800px;
  animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  background: linear-gradient(
    135deg,
    var(--pure-white) 0%,
    var(--primary-red) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: slideInUp 1s ease-out 0.6s both;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-red);
  color: var(--pure-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid var(--primary-red);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.btn-outline:hover {
  background: var(--pure-white);
  color: var(--pure-black);
}

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

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--pure-black);
  margin-bottom: 1rem;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-red);
  border-radius: 2px;
}

/* About Section */
.about {
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--pure-black);
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
  line-height: 1.8;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--pure-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 30px var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-red);
  transition: left 0.5s ease;
  opacity: 0.05;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px var(--shadow-medium);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: var(--pure-white);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.service-content p {
  color: var(--medium-gray);
  line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose {
  background: var(--dark-gray);
  color: var(--pure-white);
}

.why-choose .section-title h2 {
  color: var(--pure-white);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--pure-white);
}

.feature:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

.feature h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* States Section */
.states {
  background: var(--light-gray);
}

.states-container {
  text-align: center;
}

.states-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--pure-black);
}

.states-container p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.state {
  background: var(--pure-white);
  padding: 1.5rem;
  border-radius: 15px;
  font-weight: 600;
  color: var(--pure-black);
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.state::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.state:hover::before {
  transform: scaleX(1);
}

.state:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
  color: var(--primary-red);
}

/* CTA Section */
.cta {
  background: var(--gradient-red);
  color: var(--pure-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.05) 2px,
    rgba(255, 255, 255, 0.05) 4px
  );
  animation: move 20s linear infinite;
}

@keyframes move {
  0% {
    transform: translateX(-50px) translateY(-50px);
  }
  100% {
    transform: translateX(50px) translateY(50px);
  }
}

.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cta .btn {
  background: var(--pure-white);
  color: var(--primary-red);
  border: 2px solid var(--pure-white);
}

.cta .btn:hover {
  background: transparent;
  color: var(--pure-white);
}

.cta .btn-outline {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--pure-white);
}

.cta .btn-outline:hover {
  background: var(--pure-white);
  color: var(--primary-red);
}

/* Footer */
footer {
  background: var(--pure-black); /* typically #000000 */
  color: var(--pure-white);      /* typically #ffffff */
  padding: 4rem 0 2rem;
}

/* Footer grid layout */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Column titles */
.footer-column h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-red);
}

/* Paragraph text - replaced opacity with lighter color */
.footer-column p {
  margin-bottom: 1rem;
  color: #cccccc; /* Accessible contrast against black */
  line-height: 1.6;
}

/* Unordered list reset */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List items */
.footer-column ul li {
  margin-bottom: 0.8rem;
}

/* Links - removed opacity, used lighter color directly */
.footer-column ul li a {
  color: #e0e0e0; /* Better contrast */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

/* Social media icons */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--gradient-red); /* should be accessible */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 30px var(--shadow-heavy);
}

/* Footer bottom - replaced opacity with accessible color */
.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding-top: 2rem;
  text-align: center;
  color: #aaaaaa; /* Instead of opacity: 0.6 */
  font-size: 0.875rem;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--pure-white);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 1rem;
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-text {
    order: 2;
  }

  .about-image {
    order: 1;
  }

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

  .features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .states-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 4rem 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .service-card {
    padding: 1.5rem;
  }

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

.logoc {
  max-height: 60px;
  margin: 0% !important;
  margin-top: 10px !important;
  margin-left: -10px !important;
} 
