:root {
  --blue: #003f91;
  --amber: #ffb300;
  --gray: #2e2e2e;
  --light: #f2f2f2;
  --turquoise: #00c2cb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--gray);
  background-color: var(--light);
  line-height: 1.6;
}

/* Header & Navigation */
header {
  background-color: var(--blue);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s;
  position: relative;
  padding: 5px 15px;
  background-color: var(--amber);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-link:hover .logo-text {
  transform: scale(1.05);
}

nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin-left: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--amber);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  color: white;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  animation: fadeInDown 1s ease-out;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease-out;
}

.cta-button {
  background-color: var(--amber);
  color: var(--gray);
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 179, 0, 0.4);
  animation: fadeIn 1.5s ease-out;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.6);
}

/* About Section */
.about {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  color: var(--blue);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--amber);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 1s;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 80px 0;
  background-color: var(--light);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.8s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: var(--blue);
}

.service-title {
  color: var(--blue);
  margin-bottom: 15px;
}

.service-price {
  color: var(--amber);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 15px 0;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: var(--blue);
  color: white;
}

.features .section-title {
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--amber);
  margin-bottom: 15px;
}

.features-image {
  margin-top: 40px;
  text-align: center;
}

.features-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 5rem;
  color: var(--amber);
  opacity: 0.2;
  line-height: 1;
}

.client-name {
  color: var(--blue);
  margin-top: 20px;
  display: flex;
  align-items: center;
}

/* Contact Form */
.contact {
  padding: 80px 0;
  background-color: var(--light);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--gray);
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  color: var(--gray);
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 3px;
}

.submit-btn {
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 63, 145, 0.4);
  width: 100%;
}

.submit-btn:hover {
  background-color: #00347d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 63, 145, 0.6);
}

/* Thank You Page */
.thank-you {
  padding: 150px 0 100px;
  text-align: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('./img/t71AQG.jpg') no-repeat center/cover;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
  color: var(--blue);
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.thank-you p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  animation: fadeIn 1.5s ease-out;
}

.thank-you .cta-button {
  display: inline-block;
  margin-top: 20px;
  animation: fadeInUp 2s ease-out;
}

.thank-you-image {
  max-width: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.thank-you-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Policy Page */
.policy-page {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('./img/BQieL9.jpg') no-repeat center/cover;
}

.policy-page h1 {
  color: var(--blue);
  margin-bottom: 40px;
  text-align: center;
}

.policy-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  color: var(--blue);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.policy-content p {
  margin-bottom: 15px;
}

.policy-content ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.policy-content ul li {
  margin-bottom: 5px;
}

.policy-content a {
  color: var(--blue);
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--gray);
  color: white;
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: var(--amber);
  margin-bottom: 20px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--amber);
}

.footer-col p, .footer-col a {
  display: block;
  margin-bottom: 10px;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--amber);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: white;
  padding: 15px 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  transition: bottom 0.5s;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-accept {
  background-color: var(--blue);
  color: white;
  border: none;
}

.cookie-decline {
  background-color: transparent;
  border: 1px solid var(--gray);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  nav ul {
    position: absolute;
    flex-direction: column;
    background-color: var(--blue);
    width: 100%;
    top: 80px;
    left: 0;
    padding: 20px 0;
    text-align: center;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav ul.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav li {
    margin: 15px 0;
  }
  
  .hero {
    padding: 130px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .form-container {
    padding: 30px 20px;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .services-container,
  .features-grid,
  .testimonial-container,
  .footer-container {
    grid-template-columns: 1fr;
  }
} 