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

:root {
  --blue: #4a7fa5;
  --blue-dark: #2d5f82;
  --blue-light: #e8f2f9;
  --green: #6aaa8f;
  --green-light: #eaf4ef;
  --cream: #fdf9f4;
  --text: #2c2c2c;
  --text-light: #666;
  --white: #ffffff;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* HEADER */
header {
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-heart {
  font-size: 2rem;
  color: #c0657a;
}

.logo h1 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  line-height: 1.2;
}

.logo p {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

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

nav a {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #2d5f82 0%, #4a7fa5 50%, #6aaa8f 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #c0657a;
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(192,101,122,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,101,122,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

/* TRUST BAR */
.trust-bar {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-bottom: 1px solid #e8e0d5;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  font-size: 1.8rem;
}

.trust-item p {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

/* SECTION LABELS */
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ABOUT */
.about {
  padding: 5rem 2rem;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-owners {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.owner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.owner-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.owner strong {
  display: block;
  font-size: 0.95rem;
}

.owner span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about-card {
  background: var(--green-light);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--green);
}

.about-card h3 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
}

.about-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-card li {
  font-size: 0.92rem;
  color: var(--text);
}

/* SERVICES */
.services {
  padding: 5rem 2rem;
  background: var(--blue-light);
}

.services h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--text-light);
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* WHY US */
.why-us {
  padding: 5rem 2rem;
  background: var(--cream);
}

.why-us h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-item {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border-top: 4px solid var(--blue);
}

.why-item h3 {
  font-size: 1.2rem;
  color: var(--blue-dark);
  margin-bottom: 0.75rem;
}

.why-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  text-align: center;
}

.testimonials .section-label {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.testimonial p {
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.testimonial strong {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* CONTACT */
.contact {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}

.contact-left > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item span:first-child {
  font-size: 1.5rem;
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-item a,
.contact-item span:last-child {
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form button {
  background: var(--blue);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover {
  background: var(--blue-dark);
}

/* FOOTER */
footer {
  background: #1a2a38;
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo .logo-heart {
  font-size: 1.5rem;
  color: #c0657a;
}

.footer-logo strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.footer-logo span {
  font-size: 0.8rem;
}

footer p {
  font-size: 0.85rem;
}

footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

footer a:hover {
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h2 { font-size: 2rem; }
  .about .container,
  .contact .container { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  nav { display: none; }
  .trust-inner { justify-content: center; }
}
