﻿:root {
  --primary-teal: #14b8a6;
  --dark-teal: #0f766e;
  --light-blue: #e0f7fa;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --white: #ffffff;
  --accent-orange: #f97316;
  --shadow: rgba(20, 184, 166, 0.1);
  --success-green: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  background: var(--light-blue);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  color: var(--text-dark);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  background: var(--white);
}

html.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Header Styles */
.header-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
  z-index: 1000;
  height: 80px;
  border-bottom: 3px solid var(--primary-teal);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle-btn span {
  width: 32px;
  height: 3px;
  background: var(--primary-teal);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.brand-name {
  font-family: "Inter", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-teal);
  text-transform: capitalize;
  letter-spacing: -0.5px;
}

.header-contact-btn {
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--dark-teal) 100%
  );
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.header-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.4);
}

.side-menu {
  position: fixed;
  left: -320px;
  top: 80px;
  width: 320px;
  height: calc(100vh - 80px);
  background: linear-gradient(
    180deg,
    var(--primary-teal) 0%,
    var(--dark-teal) 100%
  );
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.side-menu.active {
  left: 0;
}

.menu-items-wrapper {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-link {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 28px;
  color: var(--light-blue);
}

.main-wrapper {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  height: 75vh;
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--dark-teal) 100%
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05) 0px,
    rgba(255, 255, 255, 0.05) 10px,
    transparent 10px,
    transparent 20px
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 30px;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  opacity: 0.95;
}

.hero-text {
  font-size: 18px;
  line-height: 1.9;
  opacity: 0.92;
  max-width: 750px;
  margin: 0 auto;
}

/* Content Sections */
.content-sections {
  padding: 100px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 30px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(20, 184, 166, 0.15);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.25);
  border-color: var(--primary-teal);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--dark-teal) 100%
  );
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
}

.feature-title {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 18px;
  line-height: 1.3;
}

.feature-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: var(--text-gray);
  font-size: 15px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
  font-size: 18px;
}

/* Contact Form */
.contact-section {
  padding: 100px 30px;
  background: linear-gradient(
    to bottom,
    var(--light-blue) 0%,
    var(--white) 100%
  );
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 12px 50px rgba(20, 184, 166, 0.2);
}

.form-title {
  font-family: "Inter", sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark-teal);
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-v2 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-teal);
  text-transform: capitalize;
}

.form-input,
.form-textarea {
  padding: 16px 20px;
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  background: var(--light-blue);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-teal);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

.form-textarea {
  min-height: 160px;
  resize: vertical;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--dark-teal) 100%
  );
  color: var(--white);
  padding: 18px 48px;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 12px;
  transition: all 0.3s ease;
  align-self: center;
  min-width: 220px;
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

/* Footer */
.footer-modern {
  background: linear-gradient(135deg, var(--dark-teal) 0%, #0a5d57 100%);
  color: var(--white);
  padding: 60px 30px 40px;
  text-align: center;
}

.footer-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-link:hover {
  color: var(--light-blue);
}

.footer-copyright {
  opacity: 0.85;
  font-size: 15px;
  margin-top: 20px;
}

/* Cookie Notice */
.cookie-notice {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 700px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
  z-index: 999999;
  border: 3px solid var(--primary-teal);
}

.cookie-notice.show {
  display: block;
}

.cookie-text {
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary-teal);
  text-decoration: underline;
}

.cookie-accept {
  float: right;
  border-radius: 10px;
  background: var(--primary-teal);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  font-size: 15px;
}

.cookie-accept:hover {
  background: var(--dark-teal);
}

/* Contact Page Styles */
.contact-page-layout {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-block {
  padding: 32px 0;
  border-bottom: 2px solid var(--light-blue);
}

.info-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 16px;
}

.info-text {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-gray);
}

.info-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-teal);
  transition: all 0.3s ease;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 3px solid var(--primary-teal);
}

.info-link:hover {
  color: var(--dark-teal);
  border-color: var(--dark-teal);
}

.map-container {
  min-height: 550px;
  border: 3px solid var(--light-blue);
  background: var(--light-blue);
  border-radius: 16px;
  overflow: hidden;
}

/* Privacy & Terms Pages */
.content-page-layout {
  padding: 100px 30px;
  background: var(--light-blue);
}

.content-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.content-text {
  background: var(--white);
  padding: 70px;
  box-shadow: 0 10px 40px rgba(20, 184, 166, 0.15);
  border-radius: 20px;
}

.page-title-large {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-teal);
  margin: 32px 0;
}

.content-text p {
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dark);
}

.content-list {
  margin: 28px 0;
  padding-left: 32px;
  list-style: none;
}

.content-list li {
  margin-bottom: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  position: relative;
  padding-left: 28px;
}

.content-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-size: 24px;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .content-text {
    padding: 60px;
  }
}

@media (max-width: 968px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 36px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .form-container {
    padding: 50px 40px;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 450px;
  }

  .content-text {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
  }

  .brand-name {
    font-size: 22px;
  }

  .header-contact-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-section {
    height: 70vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text {
    font-size: 16px;
  }

  .content-sections {
    padding: 80px 0;
  }

  .feature-grid {
    padding: 0 20px;
    gap: 32px;
  }

  .feature-card {
    padding: 32px;
  }

  .contact-section {
    padding: 80px 20px;
  }

  .form-container {
    padding: 40px 30px;
  }

  .form-title {
    font-size: 32px;
  }

  .contact-page-layout {
    margin: 60px 20px;
    padding: 0;
  }

  .content-text {
    padding: 40px 30px;
  }

  .page-title-large {
    font-size: 32px;
  }

  .info-title {
    font-size: 28px;
  }

  .map-container {
    height: 400px;
  }

  .cookie-notice {
    padding: 24px;
  }
}
