:root {
  --primary-red: #C41E3A;
  --primary-red-dark: #9A1829;
  --primary-red-light: #E63950;
  --navy: #1B2A4A;
  --navy-dark: #0F1A2E;
  --navy-light: #2D4066;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}


.section-badge {
  display: inline-block;
  background: rgba(196, 30, 58, 0.1);
  color: var(--primary-red);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-top {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-contact a:hover {
  color: var(--primary-red-light);
}

.header-social {
  display: flex;
  gap: 0.75rem;
}

.header-social a {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
}

.header-social a:hover {
  background: var(--primary-red);
}

.header-main {
  padding: 0.5rem 0;
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
}


.logo {
  display: flex;
  align-items: center;
  height: 50px;
  overflow: visible;
  position: relative;
  z-index: 10;
}


.logo img,
.logo svg {
  height: 120px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  position: relative;
  top: 0; /* Centered vertically */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}


@media (max-width: 1024px) {
  .logo img,
  .logo svg {
    height: 100px;
    max-width: 240px;
  }
}

@media (max-width: 768px) {
  .logo img,
  .logo svg {
    height: 80px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .logo img,
  .logo svg {
    height: 65px;
    max-width: 160px;
  }
}


.footer-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px 16px;
  border-radius: 8px;
}

.footer-logo img,
.footer-logo svg {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  position: static;
  top: 0;
  filter: none;
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav { display: flex; }
}

.nav a {
  font-weight: 500;
  color: var(--navy);
}

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

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--navy);
}

.mobile-menu a:hover {
  color: var(--primary-red);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: rgba(196, 30, 58, 0.2);
  border-radius: 50%;
  filter: blur(80px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content { grid-template-columns: 1fr 1fr; }
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  color: var(--primary-red);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
}

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

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-red);
}

@media (min-width: 768px) {
  .hero-stat-value { font-size: 2.5rem; }
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-image {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-image { display: block; }
}

.hero-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--primary-red);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-image-badge-value {
  font-size: 2rem;
  font-weight: 700;
}

.hero-image-badge-label {
  font-size: 0.875rem;
}


.trust-badges {
  background: var(--gray-50);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-badges-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .trust-badges-content { gap: 3rem; }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.875rem;
}

.trust-badge svg {
  color: var(--navy);
}


.services {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.5rem; }
}

.section-header h2 span {
  color: var(--primary-red);
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

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

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary-red);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-card-content {
  padding: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-red);
  font-weight: 600;
}

.service-card-link:hover {
  gap: 0.75rem;
}


.why-us {
  padding: 5rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1));
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .why-us-content { grid-template-columns: 1fr 1fr; }
}

.why-us-text {
  color: var(--white);
}

.why-us-text .section-badge {
  background: rgba(196, 30, 58, 0.3);
  color: var(--white);
}

.why-us-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .why-us-text h2 { font-size: 2.5rem; }
}

.why-us-text h2 span {
  color: var(--primary-red);
}

.why-us-text > p {
  color: var(--gray-300);
  margin-bottom: 2rem;
}

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

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-red);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.feature h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.why-us-image {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .why-us-image { display: block; }
}

.why-us-image img {
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.why-us-image-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--primary-red);
  color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.why-us-image-badge-value {
  font-size: 3rem;
  font-weight: 700;
}

.why-us-image-badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


.portfolio {
  padding: 5rem 0;
  background: var(--gray-50);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
}

.portfolio-item.large {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .portfolio-item.large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

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

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

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 42, 74, 0.9), rgba(27, 42, 74, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

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

.portfolio-item h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.portfolio-item p {
  color: var(--primary-red-light);
  font-size: 0.875rem;
}

.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}


.testimonials {
  padding: 5rem 0;
}

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

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: rgba(196, 30, 58, 0.2);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #FBBF24;
  color: #FBBF24;
}

.testimonial-text {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--navy);
}

.testimonial-author-info {
  font-size: 0.875rem;
  color: var(--gray-500);
}


.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
  position: relative;
  overflow: hidden;
}

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

@media (min-width: 1024px) {
  .cta-content { grid-template-columns: 1fr 1fr; }
}

.cta-text {
  color: var(--white);
}

.cta-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-text h2 { font-size: 2.5rem; }
}

.cta-text > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.cta-phone {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.cta-phone p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.cta-phone a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}


.quote-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.quote-form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.quote-form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.quote-form-header p {
  color: var(--gray-600);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-red);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-form .btn {
  width: 100%;
}


.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .footer-content { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-content { grid-template-columns: repeat(4, 1fr); }
}

.footer-brand img {
  height: 70px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-red);
  transform: translateY(-3px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--primary-red);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 0.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  color: var(--primary-red);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-contact-item a,
.footer-contact-item span {
  color: var(--gray-400);
}

.footer-contact-item a:hover {
  color: var(--primary-red);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-red);
}


.text-primary { color: var(--primary-red); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-600); }

.bg-primary { background-color: var(--primary-red); }
.bg-navy { background-color: var(--navy); }
.bg-gray { background-color: var(--gray-50); }

.hidden { display: none; }

@media (max-width: 767px) {
  .md-hidden { display: none; }
}

@media (min-width: 768px) {
  .md-show { display: block; }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}
