/* 
  Main stylesheet for domain website
  Color palette:
  - Primary: #0B3B5B (dark blue)
  - Secondary: #F5CF49 (golden yellow)
  - Tertiary: #F2F2F2 (light gray)
  - Accent: #D84315 (deep orange)
  - Text: #2D2D2D (charcoal)
  - Background: #FFFFFF (white)
*/

/* Base styles and reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2D2D2D;
  background-color: #FFFFFF;
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  width: 100%;
  position: relative;
  letter-spacing: 0.015rem;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0B3B5B;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #D84315;
}

ul, ol {
  list-style-position: inside;
  margin-left: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 5rem 0;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0B3B5B;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.primary-btn {
  background-color: #D84315;
  color: white;
  border-radius: 6px;
}

.primary-btn:hover {
  background-color: #c63812;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
  background-color: #0B3B5B;
  color: white;
  border-radius: 6px;
}

.secondary-btn:hover {
  background-color: #092c45;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Header styles */
.site-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B3B5B;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center; /* Align all items vertically */
  list-style: none;
  margin: 0;
  height: 100%;
}

.nav-links li {
  margin-left: 2rem;
  display: flex;
  align-items: center; /* Center items vertically */
  height: 100%;
}

.nav-links a {
  color: #333333;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a:hover {
  color: #FF5722;
}

.nav-btn {
  background-color: #0B3B5B;
  color: white !important;
}

.nav-btn:hover {
  background-color: #092c45;
  color: white !important;
}

/* Mobile menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #0B3B5B;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  width: 100%;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav-links li {
  margin: 1rem 0;
  text-align: center;
  width: 100%;
}

.mobile-nav-links a {
  font-size: 1.2rem;
  font-weight: 500;
  width: 100%;
  display: inline-block;
}

.mobile-nav-btn {
  display: inline-block;
  margin-top: 1rem;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, #0B3B5B, #155a8a);
  color: white;
  padding: 7rem 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(245, 207, 73, 0.15);
  border-radius: 50%;
  z-index: 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About section */
.about {
  background-color: #F2F2F2;
  position: relative;
}

.about:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #0B3B5B, transparent);
}

.about-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.benefits-list {
  margin: 2rem 0;
}

.benefits-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.benefits-list li:before {
  content: "✓";
  color: #D84315;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Services section */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-bottom: 3px solid #F5CF49;
}

.service-image {
  margin-bottom: 1.5rem;
  text-align: center;
  overflow: hidden;
  border-radius: 8px;
  height: 180px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-card h3 {
  text-align: center;
  color: #0B3B5B;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.service-card p {
  text-align: center;
  color: #444;
  line-height: 1.7;
}

/* Workflow section */
.workflow {
  background-color: #F2F2F2;
  background-image: linear-gradient(135deg, rgba(11, 59, 91, 0.03) 25%, transparent 25%, transparent 50%, rgba(11, 59, 91, 0.03) 50%, rgba(11, 59, 91, 0.03) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: step-counter;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  margin: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step-number {
  background-color: #0B3B5B;
  color: white;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(11, 59, 91, 0.2);
  position: relative;
}

.step-number:after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px dashed rgba(245, 207, 73, 0.7);
}

.step-content h3 {
  color: #0B3B5B;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.step-content p {
  color: #666;
}

/* Testimonials section */
.testimonials {
  background: linear-gradient(135deg, #0B3B5B, #155a8a);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials:before {
  content: '';
  position: absolute;
  left: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: rgba(245, 207, 73, 0.1);
  border-radius: 50%;
}

.testimonials h2 {
  color: white;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin: 1rem 0;
  flex: 1;
  min-width: 300px;
  backdrop-filter: blur(10px);
  border-left: 3px solid #F5CF49;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.client-name {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.client-position {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Contact form */
.contact {
  background-color: white;
  position: relative;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #F1F1F1;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #0D4B5D;
  outline: none;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: 10px;
}

.checkbox label {
  margin-bottom: 0;
}

/* FAQ section */
.faq {
  background-color: #F2F2F2;
  position: relative;
}

.faq:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to left, #0B3B5B, transparent);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
  background-color: white;
  padding: 1.5rem;
  cursor: pointer;
  position: relative;
  font-weight: 600;
}

.faq-plus-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.faq-plus-icon:before,
.faq-plus-icon:after {
  content: "";
  position: absolute;
  background-color: #0B3B5B;
  transition: all 0.3s ease;
}

.faq-plus-icon:before {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
}

.faq-plus-icon:after {
  width: 20px;
  height: 2px;
  top: 9px;
  left: 0;
}

.faq-question.active .faq-plus-icon:before {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Footer styles */
.site-footer {
  background-color: #072A45; /* Darker blue for the footer */
  color: white;
  padding: 5rem 0 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.site-footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #D84315, #F5CF49);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-info, 
.footer-contact,
.footer-links {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.company-description {
  opacity: 0.8;
}

.footer-links h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
  opacity: 0.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: rgba(11, 59, 91, 0.97);
  color: white;
  padding: 1.7rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: bottom 0.5s ease;
  border-top: 2px solid rgba(245, 207, 73, 0.5);
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 3;
  min-width: 300px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

.cookie-btn {
  background-color: #D84315;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 500;
}

.cookie-link {
  color: white;
  text-decoration: underline;
}

/* Thank you page styles */
.thank-you {
  background-color: white;
  text-align: center;
  padding: 6rem 0 3rem;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-frame {
  border: 2px solid #0B3B5B;
  border-radius: 12px;
  padding: 2.5rem;
  background-color: #f9f9f9;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.thank-you-frame:before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px dashed #F5CF49;
  border-radius: 8px;
  pointer-events: none;
}

.success-icon {
  margin: 2rem 0;
  color: #0D4B5D;
}

.thank-you-message {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.response-time {
  color: #666;
  margin-bottom: 2rem;
}

.additional-info {
  background-color: #F1F1F1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  margin-bottom: 1rem;
}

.info-card p {
  color: #666;
}

/* Policy pages */
.policy-page {
  padding: 5rem 0;
  background-color: white;
}

.policy-page h1 {
  text-align: center;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h2 {
  font-size: 1.8rem;
  text-align: left;
  margin-bottom: 1rem;
}

.policy-section h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-section ul, 
.policy-section ol {
  margin-bottom: 1.5rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.back-to-home {
  text-align: center;
}

/* Responsive design */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .about-content,
  .hero .container {
    flex-direction: column;
  }
  
  .hero-image,
  .about-image {
    margin-top: 2rem;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  
  section {
    padding: 3rem 0;
  }
  
  .steps {
    flex-direction: column;
  }
  
  /* Prevent horizontal scrolling on mobile */
  .container {
    width: 100%;
    padding: 0 15px;
    overflow-x: hidden;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  /* Ensure all content stays within viewport width */
  img, div, section, table {
    max-width: 100vw !important;
  }
} 