/* Design System */
:root {
  --primary: #00BFA6;
  --primary-dark: #009E8A;
  --secondary: #0077B6;
  --secondary-dark: #023E8A;
  --accent: #E0F2F1;
  --text-main: #1A202C;
  --text-light: #718096;
  --white: #FFFFFF;
  --light-bg: #F7FAFC;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 30px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --font-main: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-main);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.3);
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.scrolled .navbar {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 8px 30px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 30px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-phone {
  font-weight: 700;
  color: var(--secondary);
}

/* Hero Section */
.hero {
  padding-top: 180px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #F0F9F8 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Curves */
.curve-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.curve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Features */
.features-section {
  background-color: var(--white);
}

.feature-card {
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
}

/* About Preview */
.about-preview {
  background-color: var(--light-bg);
  position: relative;
}

.about-img-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img-group img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.about-img-group img:nth-child(2) {
  margin-top: 40px;
}

/* Services List */
.service-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-image {
  flex: 1;
}

.service-image img {
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  margin-bottom: 20px;
  height: 30px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
  
  .service-row {
    flex-direction: column;
  }
  
  .service-row.reverse {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-img-group {
    margin-top: 30px;
  }
}

/* Updated Curves and CTA */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 5;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .shape-fill {
  fill: #FFFFFF;
}

.curve-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.curve-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.cta-section {
  background: var(--secondary);
  color: var(--white);
  text-align: center;
  position: relative;
  padding: 180px 0;
  margin-top: 0;
  overflow: hidden;
}

.cta-section .curve-top,
.cta-section .curve-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 5;
}

.cta-section .curve-top {
  top: -1px;
}

.cta-section .curve-bottom {
  bottom: -1px;
}

.cta-section .curve-top svg,
.cta-section .curve-bottom svg {
  display: block;
  width: 100%;
  height: 120px;
}

.cta-section .curve-top path {
  fill: #FFFFFF;
}

.cta-section .curve-bottom path {
  fill: #0F172A;
}

.bg-accent {
  background-color: var(--accent);
}
.bg-light {
  background-color: var(--light-bg);
}

/* Form Styles */
.contact-form, .signup-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

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

