/* Color scheme */
:root {
  --primary-bg: #0C2340;     /* Deep blue */
  --accent: #FF6F61;         /* Coral */
  --text: #F5F5F5;           /* Light gray */
  --secondary: #5DA9A4;      /* Turquoise */
  --button: #FFD700;         /* Metallic yellow */
  --dark-text: #333;
  --light-bg: #f9f9f9;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* Reset & Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--primary-bg);
  padding-top: 4.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 60px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--button);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent);
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-bg);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.nav {
  display: flex;
}

.nav-link {
  margin-left: 1rem;
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--button);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
  background-color: var(--primary-bg);
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s 0.3s ease both;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--button);
  color: var(--primary-bg);
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px var(--shadow);
}

.btn:hover {
  background-color: var(--accent);
  color: var(--text);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px var(--shadow);
}

/* About Section */
.about {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

/* Services Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-title {
  margin-bottom: 1rem;
}

.service-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* Benefits Section */
.benefits {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.benefit-item {
  flex: 1 1 250px;
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px var(--shadow);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--shadow);
}

.benefit-icon {
  color: var(--secondary);
  font-size: 1.8rem;
  margin-right: 1rem;
}

/* Form Section */
.form-section {
  background-color: var(--primary-bg);
  color: var(--text);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 5px 15px var(--shadow);
  transition: all 0.3s ease;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ca5050;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--secondary);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(93, 169, 164, 0.3);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.form-checkbox input {
  margin-right: 0.5rem;
  margin-top: 0.3rem;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--light-bg);
  color: var(--dark-text);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.testimonial-card {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 3px 10px var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  opacity: 0.1;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-role {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #081628;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-heading {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background-color: var(--accent);
}

.footer-link {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--button);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.contact-icon {
  margin-right: 0.8rem;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-bg);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 400px;
  width: 90%;
  z-index: 1001;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cookie-popup.show {
  display: block;
  opacity: 1;
}

.cookie-title {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.cookie-text {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.accept-cookies {
  background-color: var(--button);
  color: var(--primary-bg);
  border: none;
}

.accept-cookies:hover {
  background-color: var(--accent);
  color: var(--text);
}

.cookie-policy-link {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--text);
}

.cookie-policy-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 4rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 0.8rem;
    margin-left: 0.5rem;
  }

  .logo-img {
    height: 32px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 3.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 50vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .logo {
    font-size: 1rem;
  }

  .logo-img {
    height: 24px;
  }

  .nav-link {
    padding: 0.3rem;
    margin-left: 0.3rem;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer {
    padding: 2rem 0 1rem;
  }
} 