:root {
  --bg: #fafcff;
  --bg-alt: #ffffff;

  --primary: #48CAE4;
  --primary-soft: #b8e9f3;

  --text-main: #1f1f1f;
  --text-muted: #666666;
  --accent: #48CAE4;
  --border-soft: #b8e9f3;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 900px) {
  section {
    padding: 5rem 0;
  }
}

/* ========= HEADER ========= */

.top-header {
  background: var(--bg);
  border-bottom: none;
}

.top-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.2rem 0 0.6rem;
}

.logo-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  /* Soft radial fade to transparent */
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.top-title-block {
  text-align: center;
}

.top-title-block h1 {
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.top-title-block p {
  font-size: 1rem;
  color: var(--accent);
  margin-top: 0.1rem;
}

.main-nav {
  border-top: none;
  padding: 0.5rem 0 0.7rem;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.nav-pill {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.nav-pill:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  box-shadow: 0 0 18px rgba(72, 202, 228, 0.55);
  transform: translateY(-1px);
}

/* ========= GENERIC ========= */

.card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.6rem;
}

.section-heading h2,
#home h2,
#services h2,
#pricing h2,
#contact h2,
#reviews h2 {
	font-family: 'Great Vibes', cursive;
	font-size: 4rem;       /* adjust size if needed */
	text-align: center;
	font-weight: normal;   /* this font looks cleaner without bold */
	margin-bottom: 0.5rem;
	color: #e5e5e5;        /* matches your theme nicely */
}

.section-heading p {
  text-align: center;
  font-size: 1.1rem;
  color: #cfcfcf;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  background: #5a9de6;
  box-shadow: 0 12px 30px rgba(119, 183, 255, 0.45);
  transform: translateY(-1px);
}

/* ========= ABOUT ========= */

#home {
  padding-top: 3rem;
}

.about-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .about-row {
    grid-template-columns: 1fr 1.4fr 1fr;
  }
}

.about-photo {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e0efff, #f4f8ff);
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.about-photo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;      /* REQUIRED */
  border-radius: 32px;   /* Keep your rounded corners */
  background-color: #111; /* Optional visual fallback */
}

.about-photo img.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* Fills entire box properly */
  display: block;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* fills the box, no squishing */
  display: block;
}


.about-photo::after {
  content: "Photo placeholder";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.about-text ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
}

.about-text li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.45rem;
}

/* ========= SERVICES ========= */

.services-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .services-layout {
    grid-template-columns: 0.9fr 1.2fr 1.1fr;
  }
}

/* === Zig-zag services layout === */
.services-zigzag {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Combined/main blocks */
.services-main {
  display: flex;
  flex-direction: column;
}

.services-main h3 {
  margin-bottom: 0.75rem;
}

.services-main-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-main h4 {
  margin-bottom: 0.5rem;
}

/* Tag row inside main block (you already used pill-tag class) */
.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0.75rem;
}

/* === Carousels === */
.services-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;              /* use card padding if you want, or keep tight */
  display: flex;
  flex-direction: column;
}

.services-carousel .services-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.services-carousel .services-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.services-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Dots under each carousel */
.services-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}

.services-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

/* === SERVICES – 3-row zigzag layout === */

.services-rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* one row = big block + image block */
.services-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: stretch;
}

/* flip order for the middle row (images left, text right) */
.services-row--reverse {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
}

.services-row--reverse .services-text {
  order: 2;
}

.services-row--reverse .services-carousel {
  order: 1;
}

/* text cards */
.services-text h3 {
  margin-bottom: 0.75rem;
}

.services-text ul {
  margin-top: 0.5rem;
  padding-left: 1.1rem;
}

/* === Carousel block === */

.services-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 0;              /* use the card’s border-radius but no inner padding */
}

.services-carousel .services-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.services-carousel .services-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.services-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* arrows */
.services-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.services-arrow.prev {
  left: 0.75rem;
}

.services-arrow.next {
  right: 0.75rem;
}

.services-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.05);
}

/* responsive – stack on mobile */
@media (max-width: 900px) {
  .services-row,
  .services-row--reverse {
    grid-template-columns: 1fr;
  }

  .services-row--reverse .services-text,
  .services-row--reverse .services-carousel {
    order: 0; /* natural flow on mobile */
  }

  .services-arrow.prev {
    left: 0.5rem;
  }

  .services-arrow.next {
    right: 0.5rem;
  }
}

.services-dot.active {
  background: rgba(255,255,255,0.9);
  transform: scale(1.2);
}

/* Responsive: stack columns on small screens */
@media (max-width: 900px) {
  .services-zigzag {
    grid-template-columns: 1fr;
  }
}

.services-list h3,
.services-details h3,
.services-images h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.services-list ul {
  list-style: none;
  font-size: 0.9rem;
  display: grid;
  gap: 0.4rem;
}

.services-list li::before {
  content: "›";
  margin-right: 0.4rem;
  color: var(--primary);
  font-weight: 600;
}

.services-details p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.pill-tag {
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--primary-soft);
  font-size: 0.78rem;
  margin: 0 0.25rem 0.25rem 0;
  color: var(--accent);
}

.services-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.services-image-box {
  border-radius: 12px;
  background: linear-gradient(135deg, #e0efff, #f4f8ff);
  height: 90px;
  position: relative;
  overflow: hidden;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.services-image-box span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  text-align: center;
}

/* ========= PRICING ========= */

/* ========= PRICING ========= */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-category {
  background: linear-gradient(135deg, #e4f4ff, #ffffff);
  padding: 1.6rem 1.5rem 1.8rem;
}

.pricing-category h3 {
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.pricing-list .price {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.pricing-list .note {
  font-size: 0.85rem;
  font-style: italic;
  color: #7a7a7a;
  justify-content: flex-start;
}

/* ========= CONTACT ========= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-grid p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.contact-label {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.contact-list {
  list-style: none;
  font-size: 0.92rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.35rem;
}

/* ========= REVIEWS ========= */

.reviews-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ========= FOOTER ========= */

footer {
  border-top: 1px solid var(--border-soft);
  padding: 1.4rem 0 2.1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a:hover {
  color: var(--primary);
}
