/* === RESET & BASE — light, airy, trustworthy === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Roboto, system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

body {
  background-color: #fcfcfc;
  color: #1e2b37;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #1e3d4c;
  font-weight: 500;
  position: relative;
}

h2:after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: #6ab0b4;
  margin: 0.8rem auto 0;
  border-radius: 3px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS (clean, friendly) === */
.btn {
  display: inline-block;
  background-color: #ffffff;
  border: 1.5px solid #6ab0b4;
  color: #1e3d4c;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 8px rgba(106, 176, 180, 0.08);
  cursor: pointer;
}

.btn-primary {
  background-color: #6ab0b4;
  border-color: #6ab0b4;
  color: white;
  box-shadow: 0 8px 16px rgba(106, 176, 180, 0.2);
}

.btn-primary:hover {
  background-color: #50999e;
  border-color: #50999e;
  transform: translateY(-2px);
}

.btn-outline:hover {
  background-color: #e7f3f4;
  border-color: #50999e;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* === HEADER / NAV === */
header {
  background: white;
  box-shadow: 0 6px 18px rgba(0, 30, 30, 0.03);
  padding: 0.8rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.9);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 2rem;
  font-weight: 500;
  color: #1e3d4c;
  line-height: 1.2;
}

.logo span {
  font-size: 1rem;
  font-weight: 300;
  color: #6ab0b4;
  display: block;
}

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

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e2b37;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  border-bottom-color: #6ab0b4;
  color: #1e3d4c;
}

.header-phone {
  font-weight: 600;
  color: #1e3d4c;
  background: #f0f7f7;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  white-space: nowrap;
}

.header-phone i {
  margin-right: 6px;
  color: #6ab0b4;
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(100deg, #f6fbfc 0%, #ffffff 100%);
  padding: 3rem 0 4rem;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 350px;
}

.hero-content h2 {
  text-align: left;
  font-size: 2.7rem;
  margin-bottom: 1rem;
}

.hero-content h2:after {
  margin-left: 0;
  margin-right: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero-image {
  flex: 1 1 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 30px -10px rgba(70, 120, 130, 0.2);
  background: #d9e9ec;
  min-height: 280px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400" width="600" height="400"><rect width="600" height="400" fill="%23cde3e7"/><circle cx="340" cy="150" r="38" fill="%23f5e6d3"/><circle cx="440" cy="180" r="32" fill="%23f5e6d3"/><circle cx="270" cy="200" r="30" fill="%23f5e6d3"/><rect x="200" y="240" width="280" height="100" fill="%23ffffff" rx="16"/><rect x="230" y="260" width="80" height="12" fill="%236ab0b4" rx="8"/><rect x="330" y="260" width="100" height="12" fill="%239fcbd0" rx="8"/><rect x="450" y="260" width="40" height="12" fill="%23bfd9db" rx="8"/><rect x="250" y="290" width="160" height="12" fill="%236ab0b4" rx="8"/><rect x="430" y="290" width="50" height="12" fill="%23bfd9db" rx="8"/><path d="M330 140 L360 90 L390 140 Z" fill="%23f5c48a"/><rect x="280" y="120" width="140" height="24" fill="%23ffffff" rx="20"/></svg>');
  background-size: cover;
  background-position: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === ABOUT (family & friends vibe) === */
.about {
  background: white;
  padding: 5rem 0;
}

.about-flex {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.about-text {
  flex: 2 1 300px;
  font-size: 1.2rem;
  color: #2b4552;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-text strong {
  color: #1e3d4c;
  font-weight: 600;
}

.about-image {
  flex: 1 1 280px;
  border-radius: 30px;
  background: #bdd6db;
  min-height: 240px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400" width="500" height="400"><rect width="500" height="400" fill="%23b2d2d9"/><circle cx="160" cy="140" r="35" fill="%23f7e9d7"/><circle cx="260" cy="120" r="30" fill="%23f7e9d7"/><circle cx="360" cy="150" r="32" fill="%23f7e9d7"/><rect x="110" y="210" width="280" height="90" fill="%23ffffff" rx="20"/><rect x="140" y="240" width="80" height="12" fill="%236ab0b4" rx="8"/><rect x="250" y="240" width="90" height="12" fill="%239fcbd0" rx="8"/><rect x="140" y="270" width="160" height="12" fill="%236ab0b4" rx="8"/><rect x="320" y="270" width="40" height="12" fill="%23bfd9db" rx="8"/><path d="M200 100 L220 60 L260 60 L280 100 Z" fill="%23e3c094"/></svg>');
  background-size: cover;
}

/* === SERVICES (cards with icons) === */
.services {
  padding: 5rem 0;
  background: #f6fbfc;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 1rem;
}

.service-card {
  background: white;
  border-radius: 32px;
  padding: 2.2rem 1.5rem 2rem;
  flex: 1 1 250px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 15px 28px -10px rgba(70, 130, 140, 0.1);
  transition: 0.15s ease;
  border: 1px solid rgba(106, 176, 180, 0.2);
}

.service-card:hover {
  transform: scale(1.02);
  border-color: #6ab0b4;
}

.service-icon {
  background: #e7f3f4;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 60px;
  margin: 0 auto 1.5rem;
  color: #1e3d4c;
  font-size: 2.5rem;
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #3b5a66;
  margin-bottom: 1.2rem;
}

.card-tag {
  background: #eaf3f5;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  display: inline-block;
  color: #1e3d4c;
}

/* === CONTACT SECTION (form + details) === */
.contact {
  background: white;
  padding: 5rem 0;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  background: #f9feff;
  border-radius: 48px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}

.contact-info {
  flex: 1 1 280px;
}

.contact-info h3 {
  font-size: 1.9rem;
  font-weight: 500;
  color: #1e3d4c;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  font-size: 1.2rem;
}

.contact-detail i {
  width: 48px;
  height: 48px;
  background: #e0f0f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3d4c;
  font-size: 1.5rem;
}

.contact-form {
  flex: 2 1 380px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  flex: 1 1 200px;
}

input, select, textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #d0e3e6;
  border-radius: 60px;
  font-size: 1rem;
  background: white;
  transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #6ab0b4;
  box-shadow: 0 0 0 4px rgba(106,176,180,0.15);
}

textarea {
  border-radius: 30px;
  resize: vertical;
}

.contact-form .btn-primary {
  border: none;
  font-size: 1.2rem;
  padding: 1rem 2.5rem;
  margin-top: 0.5rem;
}

/* === FORM STATUS MESSAGES === */
.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 50px;
  display: none;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* === FOOTER === */
footer {
  background: #f0f6f8;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid #d0e7eb;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-copy {
  color: #38616b;
  font-size: 1rem;
}

.footer-phone {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1e3d4c;
}

.footer-phone i {
  color: #6ab0b4;
  margin-right: 8px;
}

.footer-small {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #60838f;
}

/* === responsive touches === */
@media (max-width: 700px) {
  h2 { font-size: 1.9rem; }
  .header-flex { flex-direction: column; gap: 1rem; }
  .nav-links { justify-content: center; gap: 1.4rem; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .contact-container { padding: 2rem 1.5rem; }
}