/* Main Color Scheme */
:root {
  --primary: #003F88;    /* Cobalt blue */
  --accent: #FFA500;     /* Neon orange */
  --light: #FFE9D6;      /* Light almond */
  --dark: #1C1C1C;       /* Dark coal gray */
  --white: #ffffff;
  --light-gray: #f5f5f5;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  color: var(--white);
  background-color: var(--primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background-color: var(--accent);
  color: var(--dark);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--light);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background-color: var(--dark);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.logo a {
  color: var(--white);
}

/* Navigation Styles */
.nav-checkbox {
  display: none;
}

.nav-toggle {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 20px;
}

.main-nav ul li a {
  color: var(--white);
  font-weight: 500;
}

.main-nav ul li a:hover {
  color: var(--accent);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 63, 136, 0.8), rgba(0, 63, 136, 0.8)), url('img/ZVeCJ.jpg');
  background-size: cover;
  background-position: center;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--white);
  color: var(--dark);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--light);
  color: var(--dark);
  background: linear-gradient(rgba(255, 233, 214, 0.9), rgba(255, 233, 214, 0.9)), url('img/FPTHT.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: var(--primary);
}

/* Why Us Section */
.why-us {
  padding: 80px 0;
  background-color: var(--dark);
  color: var(--white);
  background: linear-gradient(rgba(28, 28, 28, 0.9), rgba(28, 28, 28, 0.9)), url('img/TY2o6.jpg');
  background-size: cover;
  background-position: center;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.why-us-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(5px);
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background-color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light);
  color: var(--dark);
  background: linear-gradient(rgba(255, 233, 214, 0.9), rgba(255, 233, 214, 0.9)), url('img/ePUgj.jpg');
  background-size: cover;
  background-position: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  font-weight: bold;
  color: var(--primary);
  margin-top: 20px;
}

/* Order Form Section */
.order-form {
  padding: 80px 0;
  background-color: var(--primary);
  background: linear-gradient(rgba(0, 63, 136, 0.95), rgba(0, 63, 136, 0.95)), url('img/ZVeCJ.jpg');
  background-size: cover;
  background-position: center;
}

.form-container {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--dark);
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
  background-color: #fff;
  color: var(--dark);
  font-size: 1rem;
}

.form-select {
  background-color: var(--light);
}

.form-select option {
  background-color: var(--white);
  color: var(--dark);
}

.form-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-checkbox input {
  margin-right: 10px;
}

.form-checkbox label {
  color: var(--dark);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--dark);
  background: linear-gradient(rgba(28, 28, 28, 0.9), rgba(28, 28, 28, 0.9)), url('img/FPTHT.jpg');
  background-size: cover;
  background-position: top center;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-info-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

/* Footer */
footer {
  background-color: var(--dark);
  padding: 60px 0 20px;
  color: var(--light-gray);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-links h4 {
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark);
  padding: 20px;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

/* Thank you page */
.thank-you {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(rgba(0, 63, 136, 0.9), rgba(0, 63, 136, 0.9)), url('img/TY2o6.jpg');
  background-size: cover;
  background-position: center;
}

.thank-you h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: var(--white);
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--dark);
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    z-index: 999;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li {
    margin-left: 0;
    margin-bottom: 20px;
  }
  
  .nav-checkbox:checked ~ .main-nav {
    left: 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
} 