/* Variables */
:root {
  --color-cobalt: #2A2D7C;
  --color-snow: #E6F2F5;
  --color-moss: #5DA58A;
  --color-saffron: #FF9F45;
  --font-primary: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --radius: 8px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-snow);
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-cobalt);
  margin-bottom: 1rem;
}

a {
  color: var(--color-cobalt);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-moss);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  background-color: var(--color-saffron);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  background-color: #e68f38;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-cobalt);
  color: var(--color-cobalt);
}

.btn-outline:hover {
  background-color: var(--color-cobalt);
  color: white;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background-color: var(--color-moss);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
.header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  height: 50px;
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 30px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(42, 45, 124, 0.8) 0%, rgba(58, 61, 140, 0.8) 100%), url('../img/0fFtF7.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 160px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Cards */
.card {
  background-color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card h3 {
  margin: 20px 0;
}

.service-price {
  font-size: 1.8rem;
  color: var(--color-cobalt);
  font-weight: bold;
  margin: 10px 0;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 15px;
}

/* Approach */
.approach-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  counter-reset: step;
}

.step {
  flex: 0 0 calc(33.333% - 40px);
  margin: 20px;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  position: absolute;
  top: -15px;
  left: -15px;
  width: 40px;
  height: 40px;
  background-color: var(--color-saffron);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  text-align: center;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 3px solid var(--color-moss);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(to right, rgba(230, 242, 245, 0.8), rgba(230, 242, 245, 0.8)), url('../img/svCIkX.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.testimonial {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* Form */
.form-section {
  background: linear-gradient(135deg, rgba(230, 242, 245, 0.9) 0%, rgba(216, 232, 236, 0.9) 100%), url('../img/w6CvPj.jpg');
  background-size: cover;
  background-position: center;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

/* Image Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Office Section */
.office-section {
  position: relative;
  background-color: var(--color-snow);
  overflow: hidden;
}

.office-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.office-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.office-text {
  flex: 1 1 400px;
}

.office-image-container {
  flex: 1 1 500px;
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(42, 45, 124, 0.9);
  color: white;
  padding: 15px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-notice p {
  margin-right: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, rgba(42, 45, 124, 0.9) 0%, rgba(42, 45, 124, 0.9) 100%), url('../img/hD8DsM.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0 20px;
}

.footer a {
  color: #ccc;
}

.footer a:hover {
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
  .header-content {
    height: 70px;
  }
  
  .step {
    flex: 0 0 calc(50% - 40px);
  }
  
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-cobalt);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .step {
    flex: 0 0 100%;
  }
  
  .gallery-item {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .gallery-item {
    height: 220px;
  }
} 