/* 
  Website Styles for domain.com
  Color Palette:
  - Primary: Midnight Blue (#132C44)
  - Secondary: Sunlit Coral (#F56B5C)
  - Accent: Pistachio Green (#9DC88D)
  - Background: Pale Sand (#F4F1E1)
  - Text: Deep Charcoal (#2B2B2B)
  - Hover: Vibrant Turquoise (#40E0D0)
*/

:root {
  --primary: #132C44;
  --secondary: #F56B5C;
  --accent: #9DC88D;
  --background: #F4F1E1;
  --text: #2B2B2B;
  --hover: #40E0D0;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #F56B5C, #40E0D0);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--hover);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Animation Classes - Removed per client request */
.fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  /* Animation removed per client request */
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu ul {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--gradient);
  bottom: -5px;
  left: 0;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1002;
  }

  .menu-icon {
    position: relative;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    display: block;
    top: 14px;
    transition: var(--transition);
  }

  .menu-icon::before,
  .menu-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    transition: var(--transition);
  }

  .menu-icon::before {
    top: -10px;
  }

  .menu-icon::after {
    top: 10px;
  }

  .menu-icon.open {
    background-color: transparent;
  }

  .menu-icon.open::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-icon.open::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    padding: 80px 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1001;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
  }

  .nav-menu li {
    margin: 15px 0;
  }
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(19, 44, 68, 0.7), rgba(19, 44, 68, 0.7)), url('./img/A5N0MF.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero-content {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Animation keyframes removed per client request */

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-content {
  /* Animation removed per client request */
}

/* Animation keyframes removed per client request */

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 0 0 30px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient);
  z-index: -1;
}

.service-card h3,
.service-card p,
.service-card ul {
  padding: 0 30px;
}

.service-card:hover {
  /* Animation removed per client request */
}

.service-card:hover::before {
  /* Animation removed per client request */
}

.service-icon {
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 35px 25px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--accent);
}

.feature-box:hover {
  /* Animation removed per client request */
}

.feature-box h3 {
  font-size: 1.4rem;
  margin: 15px 0;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: var(--gradient);
  opacity: 0.05;
  transition: var(--transition);
  z-index: 0;
}

.pricing-card:hover {
  /* Animation removed per client request */
}

.pricing-card:hover::before {
  /* Animation removed per client request */
}

.pricing-card * {
  position: relative;
  z-index: 1;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--secondary);
  opacity: 0.1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
}

.testimonial-role {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-map {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form Styles */
.contact-form {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(157, 200, 141, 0.2);
  outline: none;
}

.form-floating {
  position: relative;
}

.form-floating label {
  position: absolute;
  top: 15px;
  left: 20px;
  color: rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  pointer-events: none;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  background-color: var(--white);
  padding: 0 5px;
  color: var(--accent);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  margin-top: 5px;
  margin-right: 10px;
}

/* Footer Styles */
.main-footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info h3,
.footer-contact h3,
.footer-links h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--hover);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none; /* Hidden by default, shown via JS */
}

.cookie-banner p {
  margin: 0;
  padding-right: 20px;
}

.cookie-banner a {
  color: var(--hover);
}

#accept-cookies {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

#accept-cookies:hover {
  background-color: var(--hover);
}

/* Legal Pages Styles */
.legal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-top: 100px;
  margin-bottom: 50px;
}

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* FAQ Section Styles */
.faq-container {
  margin-top: 30px;
}

.faq-item {
  background-color: var(--white);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-question.open::after {
  content: '−';
}

/* Thank You Page Styles */
.thank-you {
  text-align: center;
  padding: 100px 20px;
}

.thank-you h1 {
  margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner p {
    padding-right: 0;
    margin-bottom: 10px;
  }
}
