/* Colors */
:root {
  --primary: #13293D;    /* Deep Navy */
  --accent: #FEC601;     /* Bright Mustard Yellow */
  --secondary: #EA526F;  /* Vivid Coral Red */
  --background: #F7F9FA; /* Soft Cool Gray */
  --text: #1C1C1C;       /* Carbon Black */
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, var(--primary), #1D4160);
  --gradient-accent: linear-gradient(135deg, var(--accent), #FFD84D);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  color: var(--text);
  background-color: var(--background);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  padding-bottom: 15px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 20px;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--white);
}

.btn-accent {
  background: var(--gradient-accent);
  color: var(--primary);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    padding-top: 30px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-item {
    margin: 15px 0;
  }
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
  height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 30px;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, var(--background), transparent);
}

/* About Section */
.about {
  background-color: var(--white);
}

.about h2 {
  text-align: center;
  margin-bottom: 40px;
}

.about h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Services Section */
.services {
  background-color: var(--background);
}

.service-title {
  text-align: center;
  margin-bottom: 50px;
}

.service-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-img {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
  transition: var(--transition);
}

.service-card:hover::before {
  height: 10px;
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 2rem;
}

/* Why Choose Us */
.why-us {
  background-color: var(--white);
}

.why-us h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.why-us h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.why-us p.mb-40 {
  text-align: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: 20px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border-radius: 50%;
  color: var(--primary);
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--accent);
  color: var(--white);
}

/* Process Section */
.process {
  background-color: var(--background);
}

.process-title {
  text-align: center;
  margin-bottom: 50px;
}

.process-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.process-steps {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
}

.step-content {
  background: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  flex: 1;
}

.step:not(:last-child):after {
  content: '';
  position: absolute;
  top: 50px;
  left: 25px;
  width: 2px;
  height: calc(100% - 10px);
  background-color: var(--primary);
}

/* Testimonials */
.testimonials {
  background-color: var(--white);
  text-align: center;
}

.testimonial-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background-color: var(--background);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 20px 0;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 30px;
}

.testimonial-content:before,
.testimonial-content:after {
  content: '"';
  font-size: 3rem;
  color: var(--accent);
  position: absolute;
}

.testimonial-content:before {
  top: -20px;
  left: 0;
}

.testimonial-content:after {
  bottom: -40px;
  right: 0;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary);
}

.testimonial-company {
  font-size: 0.9rem;
  color: var(--secondary);
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary);
  margin: 0 5px;
  opacity: 0.3;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  opacity: 1;
}

/* FAQ Section */
.faq {
  background-color: var(--background);
}

.faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  position: relative;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--accent);
  color: var(--primary);
}

.faq-answer {
  background-color: var(--white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

/* Form Section */
.order-form {
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
}

.form-title {
  text-align: center;
  margin-bottom: 40px;
}

.form-title h2 {
  color: var(--white);
}

.form-title h2:after {
  background-color: var(--accent);
  left: 50%;
  transform: translateX(-50%);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  position: absolute;
  left: 15px;
  top: 15px;
  color: #999;
  transition: var(--transition);
  pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 10px;
  font-size: 0.8rem;
  background-color: var(--white);
  padding: 0 5px;
  color: var(--primary);
}

.form-input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(254, 198, 1, 0.2);
}

.form-select {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  color: var(--text);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-checkbox {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-label {
  font-size: 0.9rem;
  color: var(--text);
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--gradient-accent);
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  color: var(--accent);
}

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  margin-right: 15px;
  color: var(--accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--white);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Policy Pages */
.policy-header {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.policy-header h1 {
  color: var(--white);
}

.policy-content {
  background-color: var(--white);
  padding: 50px 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Thank You Page */
.thank-you {
  background-color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.thank-you-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--accent);
}

.thank-you h1 {
  margin-bottom: 30px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--accent);
  margin-bottom: 30px;
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-fade {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Helper Classes */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Responsive adjustments */
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .btn {
    padding: 10px 20px;
  }
}
