/* FONT FACE DECLARATIONS */
@font-face {
  font-family: "Bookman JF Pro";
  src: url("Bookman JF Pro/BookmanJFPro-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Bookman JF Pro";
  src: url("Bookman JF Pro/BookmanJFPro-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

/* CSS RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* VARIABLES */
:root {
  --primary: #006d77;
  --accent: #83c5be;
  --background: #edf6f9;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --border-color: #e5e5e5;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
  --font-title: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-bookman: "Bookman JF Pro", serif;
  --border-radius: 12px;
  --border-radius-large: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE STYLES */
body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, var(--primary) 1px, transparent 0),
    radial-gradient(circle at 11px 11px, var(--accent) 0.5px, transparent 0);
  background-size:
    20px 20px,
    20px 20px;
  background-position:
    0 0,
    10px 10px;
  opacity: 0.1;
}

main,
header,
footer,
.main-header,
.container,
.glass {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* HEADER & NAVIGATION */
.header {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 950px;
  margin: 0 auto;
  padding: 1rem 2.5rem;
  background: #ffffff !important;
  border-radius: 2.5rem;
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.15);
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: none;
  position: relative;
  z-index: 10001;
}

.nav-link:hover {
  color: var(--primary);
  cursor: none;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
  padding: 0.8rem 2rem;
  font-weight: 600;
  background-color: var(--primary);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 16px 0 rgba(0, 109, 119, 0.2);
}

.cta-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(0, 109, 119, 0.3);
}

.mobile-menu-btn {
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  border: none;
  background: transparent;
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(131, 197, 190, 0.3);
}

.mobile-nav-link {
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 1rem;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover {
  color: var(--primary);
  font-weight: 600;
}

/* MAIN CONTENT */
main {
  padding-top: 3.5rem; /* Reduced for floating header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* SECTION STYLES */
.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary);
  font-weight: 700;
}

/* HERO SECTION */
.hero-convert {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 4rem 0 2rem 0;
  background: none;
}

.hero-convert-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-convert-title {
  font-size: 4.2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.2;
}

.title-line-1,
.title-line-2 {
  display: block;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 2rem;
  background: #ffffff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.location-icon {
  font-size: 1.2rem;
  color: var(--primary);
}

.location-text {
  color: var(--primary);
  font-family: var(--font-body), "Poppins", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
}

.hero-convert-sub {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-convert-cta, .hero-portfolio-btn {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
  min-width: 220px;
  border-radius: 2rem;
  text-align: center;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.hero-portfolio-btn {
  display: none;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-top: 1rem;
}

.scroll-indicator {
  display: none;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--primary);
  margin: 0 auto;
  position: relative;
  animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary);
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* TRUSTED BY SECTION */
.trusted-by-section {
  padding: 3rem 0;
  background: none;
}

.trusted-by-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 2rem;
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.why-choose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.why-choose-item i {
  font-size: 1.5rem;
  color: var(--primary);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 4rem 0;
  background: none;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  padding: 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.13);
}

.testimonial p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-style: italic;
}

.testimonial span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
}

/* BENEFITS SECTION */
.benefits-section {
  padding: 4rem 0;
  background: none;
}

.benefits-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  padding: 2.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
  transition: var(--transition);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.13);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.benefit-icon i {
  color: var(--primary);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.benefit-card p {
  color: var(--primary);
  line-height: 1.6;
}

/* HOW IT WORKS */
.how-it-works-section {
  padding: 4rem 0;
  background: none;
}

.how-it-works-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.how-it-works-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--accent);
  padding: 3rem 2rem;
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.how-step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.how-step > strong, .how-step div > strong {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}
.how-step-desc {
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}

/* FEATURED WORK */
.featured-work-section {
  padding: 4rem 0;
  background: none;
}

.featured-work-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius-large);
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.13);
}

.portfolio-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.portfolio-card-content {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.card-description {
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.portfolio-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

.portfolio-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius-large);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.13);
}

.card-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.card-features {
  list-style: none;
  margin-bottom: 2rem;
}

.card-features li {
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* EXTRA SERVICES */
.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.extra-service {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.extra-service h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.extra-service p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
}

/* PORTFOLIO GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* CONTACT FORM */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius-large);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
  padding: 3rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.contact-form label {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  background: rgba(131, 197, 190, 0.08);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 109, 119, 0.1);
}

.contact-form button.full-width {
  grid-column: 1 / -1;
}

/* PREDICTION BUTTONS */
.prediction-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.category-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background: rgba(131, 197, 190, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--accent);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.category-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.13);
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.category-btn:hover .category-title {
  color: white;
}

.category-subtitle {
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 0.8;
}

.category-btn:hover .category-subtitle {
  color: white;
  opacity: 0.9;
}

.back-btn {
  display: block;
  width: 100%;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.back-btn:hover {
  background: var(--primary);
  color: white;
}

.prediction-btn {
  background: rgba(131, 197, 190, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 0.8rem 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
}

.prediction-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 109, 119, 0.1);
  background: rgba(131, 197, 190, 0.25);
}

.prediction-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.prediction-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Modern Footer Styles */
.main-footer-content {
  background: var(--primary);
  color: #fff;
  padding: 0;
  border-top: none;
  min-height: unset;
  display: block;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  gap: 2rem;
}
.footer-col {
  flex: 1 1 0;
  min-width: 220px;
}
.footer-col h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 700;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-col p {
  color: #e0f7fa;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  color: #e0f7fa;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li i {
  font-size: 1.1rem;
  color: var(--accent);
}
.footer-bottom-bar {
  background: linear-gradient(90deg, var(--accent) 0%, #b2dfdb 100%);
  padding: 1.1rem 0 1rem 0;
  text-align: center;
}
.footer-bottom-text {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    padding: 2.5rem 1.2rem 1.5rem 1.2rem;
    gap: 1.5rem;
  }
  .footer-col {
    min-width: 0;
  }
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .main-footer-content {
    min-height: auto;
    display: block;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .header {
    top: 1rem;
    padding: 0.7rem 1rem;
    width: calc(100% - 1rem);
    border-radius: 1.5rem;
    flex-direction: column;
    align-items: stretch;
  }
  .logo-img {
    height: 48px;
  }
  .nav-links {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
    z-index: 3003;
    position: relative;
    align-self: center;
    margin-top: 0;
  }
  .mobile-menu {
    display: none;
    width: 100%;
    background: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    position: static;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0 0.5rem 0;
    align-items: flex-start;
  }
  .mobile-menu.open {
    display: flex;
  }
  .mobile-nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    width: 100%;
    color: var(--primary);
    text-align: left;
    background: transparent;
    border: none;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-nav-link:hover {
    background: var(--accent);
    color: var(--primary);
    border-radius: 0.7rem;
  }
  
  .hero-convert-title {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  
  .title-line-1,
  .title-line-2 {
    display: block;
  }
  
  .hero-convert-sub {
    font-size: 1.3rem;
  }
  
  .hero-convert-cta {
    font-size: 1.1rem;
    padding: 1.1rem 2.2rem;
  }
  
  .hero-portfolio-btn {
    display: inline-block;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    margin-top: 1rem;
  }
  
  .location-badge {
    padding: 0.9rem 1.8rem;
    margin-bottom: 2rem;
  }
  
  .location-text {
    font-size: 1rem;
  }
  
  .trusted-by-bar {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .how-it-works-grid {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .featured-work-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .benefits-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .how-it-works-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .featured-work-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-container {
    padding: 2rem 1.5rem;
    margin: 0 auto;
    max-width: calc(100% - 2rem);
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .mobile-menu-btn {
    align-self: center;
    margin-top: 0;
  }
}

@media (max-width: 800px) {
  .header {
    width: calc(100% - 1rem);
    padding: 0.7rem 1rem;
    z-index: 3002;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff !important;
    box-shadow: 0 8px 32px 0 rgba(0, 109, 119, 0.15);
  }
  
  .nav-links {
    display: none !important;
  }
  
  .mobile-menu-btn {
    display: block !important;
    z-index: 3003;
    position: relative;
  }
}

@media (max-width: 600px) {
  .header {
    width: calc(100% - 0.5rem);
    padding: 0.5rem 0.8rem;
    top: 0.5rem;
  }
  
  .hero-convert {
    min-height: 85vh;
    padding: 3rem 0 2rem 0;
  }
  
  .hero-convert-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }
  
  .title-line-1,
  .title-line-2 {
    display: block;
  }
  
  .hero-convert-sub {
    font-size: 1.2rem;
  }
  
  .hero-convert-cta {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
  
  .testimonials-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .benefits-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .how-it-works-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .featured-work-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .hero-portfolio-btn {
    display: inline-block;
    font-size: 0.95rem;
    padding: 0.9rem 1.8rem;
    margin-top: 1rem;
  }
  
  .location-badge {
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.8rem;
  }
  
  .location-text {
    font-size: 1rem;
  }
  
  .contact-form-container {
    box-sizing: border-box;
    width: 100%;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-convert {
    min-height: 80vh;
    padding: 2.5rem 0 1.5rem 0;
  }
  
  .hero-convert-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }
  
  .title-line-1,
  .title-line-2 {
    display: block;
  }
  
  .hero-convert-sub {
    font-size: 1.1rem;
  }
  
  .hero-convert-cta {
    font-size: 1rem;
    padding: 1rem 1.8rem;
  }
  
  .testimonials-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .benefits-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .how-it-works-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .featured-work-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  
  .hero-portfolio-btn {
    display: inline-block;
    font-size: 0.9rem;
    padding: 0.8rem 1.6rem;
    margin-top: 1rem;
  }
  
  .location-badge {
    padding: 0.8rem 1.4rem;
    margin-bottom: 1.8rem;
  }
  
  .location-text {
    font-size: 0.95rem;
  }
  
  .benefit-card {
    padding: 2rem 1.5rem;
  }
  
  .portfolio-card-content {
    padding: 1.5rem;
  }
  
  .contact-form-container {
    padding: 1.5rem 1rem;
    margin: 0 auto;
    max-width: calc(100% - 1rem);
  }
  
  .contact-form label {
    font-size: 0.85rem;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 430px) {
  .header {
    width: calc(100% - 0.5rem);
    padding: 0.5rem 0.8rem;
    top: 0.5rem;
  }
  
  .hero-convert-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }
  
  .title-line-1,
  .title-line-2 {
    display: block;
  }
  
  .hero-convert-sub {
    font-size: 1rem;
  }
  
  .hero-convert-cta {
    font-size: 0.95rem;
    padding: 0.9rem 1.6rem;
  }
  
  .testimonials-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  
  .benefits-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  
  .how-it-works-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  
  .featured-work-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  
  .hero-portfolio-btn {
    display: inline-block;
    font-size: 0.85rem;
    padding: 0.8rem 1.4rem;
    margin-top: 1rem;
  }
  
  .location-badge {
    padding: 0.7rem 1.3rem;
    margin-bottom: 1.6rem;
  }
  
  .location-text {
    font-size: 0.9rem;
  }
}

/* UTILITY CLASSES */
.glass {
  background: #ffffff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 4px 24px 0 rgba(0, 109, 119, 0.08);
}

.squiggly-separator {
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, #005a63 100%);
  position: relative;
  overflow: hidden;
}

.squiggly-separator svg {
  width: 100%;
  height: 100%;
}

.squiggly-separator svg path {
  stroke: white;
  stroke-width: 3;
  fill: none;
}

/* Simple Horizontal List for Web Design Process */
.web-design-process-section .how-it-works-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5rem;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 0 2.5rem 0;
  position: relative;
  flex-wrap: wrap;
}
.web-design-process-section .how-it-works-grid::before {
  display: none;
}
.web-design-process-section .how-step {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  width: 180px;
  max-width: 220px;
  box-shadow: none;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}
.web-design-process-section .how-step-num {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.web-design-process-section .how-step strong {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.web-design-process-section .how-step-desc {
  color: var(--primary);
  font-size: 0.98rem;
  margin-top: 0.3rem;
}
@media (max-width: 900px) {
  .web-design-process-section .how-it-works-grid {
    gap: 1.2rem;
  }
  .web-design-process-section .how-step {
    width: 140px;
    max-width: 180px;
  }
}
@media (max-width: 700px) {
  .web-design-process-section .how-it-works-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .web-design-process-section .how-step {
    width: 100%;
    max-width: 100%;
  }
}
