/* Reset and Base Styling */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
  }
  
  body {
	font-family: Arial, sans-serif;
	background: linear-gradient(135deg, #ffe6f2, #fff8e7); /* soft pink–peach */
	color: #333;
	overflow-x: hidden;
	width: 100%;
	max-width: 100%;
	position: relative;
  }
  
  /* ---------- HEADER + NAVBAR (desktop) ---------- */
  
  .main-header {
	background-color: #f4f4f4;
	padding: 10px 0;
  }
  
  .navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	background: #ffffff;
	border-bottom: 1px solid #eee;
  }
  
  /* Brand */
  .brand a {
	font-weight: 700;
	font-size: 1.2rem;
	color: #8B1D5F;
	text-decoration: none;
  }
  
  /* Hamburger (hidden on desktop) */
  .nav-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.7rem;
	cursor: pointer;
	margin-left: auto;
  }
  
  /* Desktop nav groups */
  .nav-links {
	list-style: none;
	display: flex;
	gap: 0.75rem;
  }
  
  .nav-left {
	margin-left: 2rem;
  }
  
  .nav-right {
	margin-left: auto;
  }
  
  .nav-links a {
	text-decoration: none;
	color: #333;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	font-weight: 500;
	white-space: nowrap;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
	background: #8B1D5F;
	color: #fff;
  }
  
  /* ---------- OLD DROPDOWN STYLES (kept if needed elsewhere) ---------- */
  
  .nav-left li,
  .nav-right li {
	position: relative;
  }
  
  .dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: white;
	list-style: none;
	border: 1px solid #ccc;
	min-width: 180px;
	z-index: 999;
  }
  
  .dropdown-menu li {
	position: relative;
  }
  
  .dropdown-menu a {
	padding: 10px 15px;
	white-space: nowrap;
  }
  
  .nav-left > li:hover > .dropdown-menu {
	display: block;
  }
  
  .dropdown-submenu {
	position: relative;
  }
  
  .dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	border: 1px solid #ccc;
  }
  
  .dropdown-submenu:hover > .dropdown-menu {
	display: block;
  }
  
  .nav-left > li > a.dropdown-toggle::after {
	content: " ▼";
	font-size: 0.7em;
  }
  
  .dropdown-submenu > a::after {
	content: "▶";
	font-size: 0.7em;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
  }
  
  /* ---------- FOOTER WITH ICONS ---------- */
  
  .site-footer {
	background-color: #ffffff;
	color: #555;
	text-align: center;
	padding: 20px 10px 40px;
	margin-top: 50px;
	font-size: 14px;
  }
  
  .footer-content {
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .footer-content .social-links {
	margin-bottom: 10px;
	display: flex;
	justify-content: center;
	gap: 14px;
  }
  
  .footer-content .social-links a {
	display: inline-block;
	transition: transform 0.3s ease;
  }
  
  .footer-content .social-links img {
	width: 32px;
	height: 32px;
  }
  
  .footer-content .social-links a:hover {
	transform: scale(1.15);
  }
  
  .footer-content .social-links a:hover img {
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  }
  
  /* WhatsApp Floating Button */
  .whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	width: 50px;
	height: 50px;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	transition: transform 0.3s ease;
  }
  
  .whatsapp-float img {
	width: 28px;
	height: 28px;
  }
  
  .whatsapp-float:hover {
	transform: scale(1.1);
  }
  
  /* ---------- LEGACY NEWBORN SECTION (if used elsewhere) ---------- */
  
  .newborn-section {
	max-width: 960px;
	margin: 60px auto;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.7;
	color: #333;
  }
  
  .newborn-section .title-primary {
	font-size: 1.8em;
	font-weight: bold;
	color: #8B1D5F;
	text-align: center;
	margin-bottom: 10px;
  }
  
  .newborn-section .title-secondary {
	font-size: 1.5em;
	font-weight: bold;
	color: #8B1D5F;
	text-align: center;
	margin-bottom: 20px;
  }
  
  .newborn-section .title-highlight {
	text-align: center;
	font-size: 1.4em;
	font-weight: bold;
	color: #ff5e00;
	margin-bottom: 25px;
  }
  
  .newborn-section p {
	margin-bottom: 20px;
  }
  
  .newborn-section em {
	font-style: italic;
  }
  
  .newborn-section strong {
	font-weight: bold;
  }
  
  .contact-call {
	font-size: 1.1em;
	color: #222;
  }
  
  .contact-call a {
	color: #8B1D5F;
	text-decoration: none;
  }
  
  .contact-call a:hover {
	text-decoration: underline;
  }
  
  .contact-links p {
	margin: 5px 0;
	font-size: 0.95em;
	color: #444;
  }
  
  .contact-links a {
	color: #8B1D5F;
	text-decoration: none;
  }
  
  .contact-links a:hover {
	text-decoration: underline;
  }
  
  /* Portrait Image Styling */
  .newborn-section .portrait {
	float: left;
	max-width: 200px;
	margin: 0 20px 20px 0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  @media (max-width: 600px) {
	.newborn-section .portrait {
	  float: none;
	  display: block;
	  margin: 0 auto 20px auto;
	}
  }
  
  /* ---------- HOME HERO (index main) ---------- */
  
  main {
	max-width: 95vw;
	width: 95vw;
	margin: 20px auto;
	background: linear-gradient(135deg, #ff9a9e, #fad0c4);
	color: #fff;
	padding: 20px 30px;
	border-radius: 15px;
	text-align: center;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	box-shadow: 0 10px 30px rgba(255, 105, 180, 0.3);
	transition: box-shadow 0.3s ease;
  }
  
  main:hover {
	box-shadow: 0 15px 40px rgba(255, 105, 180, 0.6);
  }
  
  main h1 {
	font-size: 3rem;
	margin-bottom: 15px;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
	font-weight: 700;
  }
  
  main p {
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 1.1px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	line-height: 1.4;
  }
  
  /* ---------- PAGE WRAPPER (for newborn / index content block) ---------- */
  
  .page-wrap {
	max-width: 1200px;
	width: 100%;
	margin: 30px auto 40px;
	padding: 2rem 1.75rem 3rem;
	background: #ffffffee;              /* white with slight transparency */
	backdrop-filter: blur(6px);
	border-radius: 24px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
	color: #333;
  }
  
  /* ---------- HERO SECTION (inside page-wrap) ---------- */
  
  .hero {
	display: block;
	padding: 1.5rem 0 2.2rem;
	text-align: center;
  }
  
  .hero-text {
	max-width: 800px;
	margin: 0 auto;
  }
  
  .hero-text h1 {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	color: #3b143f;
  }
  
  .hero-text p {
	font-size: 1.05rem;
	margin-bottom: 1.1rem;
	color: #55324f;
  }
  
  .hero-contact {
	margin-top: 0.75rem;
	font-size: 0.95rem;
  }
  
  .hero-contact a {
	color: #8B1D5F;
	text-decoration: none;
  }
  
  .hero-contact a:hover {
	text-decoration: underline;
  }
  
  .hero-media img {
	width: 100%;
	border-radius: 22px;
	box-shadow: 0 18px 45px rgba(90, 33, 70, 0.35);
	object-fit: cover;
	border: 4px solid #ffd3e8;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
	display: inline-block;
	padding: 0.65rem 1.4rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
  }
  
  .btn-primary {
	background: linear-gradient(135deg, #ff6cab, #ff9a62);
	color: #fff;
	box-shadow: 0 6px 16px rgba(255, 108, 171, 0.5);
  }
  
  .btn-primary:hover {
	background: linear-gradient(135deg, #ff4f99, #ff8540);
  }
  
  .btn-secondary {
	border: 2px solid #ff6cab;
	color: #ff4b8b;
  }
  
  .btn-secondary:hover {
	background: #ff6cab;
	color: #fff;
  }
  
  /* ---------- STATS STRIP ---------- */
  
  .stats-strip {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 2.5rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, #ffe1f3, #fff4d9);
	border-radius: 18px;
  }
  
  .stats-strip div {
	flex: 1;
	text-align: center;
	padding: 0.3rem 0.4rem;
	border-radius: 14px;
	background: #ffffffcc;
  }
  
  .stat-number {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: #8B1D5F;
  }
  
  .stat-label {
	font-size: 0.85rem;
	color: #666;
  }
  
  /* ---------- TWO-COLUMN SECTION (now single column) ---------- */
  
  .two-column {
	display: block;
	margin-bottom: 3rem;
	padding: 1.6rem 1.5rem;
	border-radius: 20px;
	background: radial-gradient(circle at top left, #ffe0f0 0, #ffffff 55%);
	border-left: 4px solid #ff8bb5;
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
	box-sizing: border-box;
  }
  
  .two-column > div {
	max-width: 100%;
	width: 100%;
  }
  
  .two-column h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	color: #3b143f;
  }
  
  .two-column img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
  }
  
  .two-column h3 {
	margin-top: 1.5rem;
  }
  
  .about-photo img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	object-fit: cover;
  }
  
  .about-photo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  }
  
  .check-list {
	list-style: none;
	margin-top: 0.75rem;
  }
  
  .check-list li::before {
	content: "✔";
	color: #8B1D5F;
	margin-right: 0.4rem;
  }
  
  /* ---------- SERVICES SECTION ---------- */
  
  .services {
	margin-bottom: 3rem;
	text-align: center;
  }
  
  .services h2 {
	margin-bottom: 0.5rem;
  }
  
  .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 1.5rem;
  }
  
  .service-card {
	background: #ffffff;
	color: #333;
	padding: 1.35rem 1.5rem;
	border-radius: 18px;
	text-align: left;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
	border-top: 4px solid #ff9ac2;
  }
  
  /* ---------- SERVICE PHOTO GRID (index page) ---------- */
  
  .service-photo-grid {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
  }
  
	/* Carousel Container (flex for both desktop and mobile). */
	.carousel-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	touch-action: pan-y;
  }

	.carousel-container:focus {
		outline: 3px solid rgba(139,29,95,0.15);
		box-shadow: 0 6px 20px rgba(139,29,95,0.08);
	}
  
	/* Slides are flex items for both desktop and mobile. */
	.service-photo-grid .carousel-wrapper,
	.carousel-wrapper {
		display: flex;
		gap: 1rem;
		transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
		width: 100%;
		will-change: transform;
		cursor: grab;
		user-select: none;
	}
  
	.service-photo-grid .carousel-slide,
	.carousel-slide {
		overflow: hidden;
		flex: 0 0 100%;
	}
  
	.carousel-slide img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	object-fit: cover;
	aspect-ratio: 4/3;
	display: block;
	border: 4px solid #ffd3e8; /* consistent border for all carousel images */
	box-sizing: border-box;
  }

/* Desktop: reduce visible image size to 50% so they fit the page better */
@media (min-width: 901px) {
  .service-photo-grid .carousel-slide img,
  .carousel-slide img {
		max-width: 100%; /* fill available width while keeping aspect */
		width: auto;
		height: 92vh; /* increased ~15% to expand breadth while keeping full image visible */
		object-fit: contain; /* show full image without cropping */
		margin: 0 auto; /* keep centered */
  }
	/* Ensure slide area centers the image and reserves vertical space */
	.service-photo-grid .carousel-slide,
	.carousel-slide {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 92vh;
	}
}
  
	.carousel-dots {
		display: none; /* Hide dots on desktop by default */
	}

	/* Arrows for desktop */
	.carousel-arrow {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background: rgba(255,255,255,0.9);
		box-shadow: 0 4px 12px rgba(0,0,0,0.12);
		border: none;
		cursor: pointer;
		z-index: 10;
	}

	.carousel-arrow.left {
		left: 10px;
	}

	.carousel-arrow.right {
		right: 10px;
	}

	.carousel-arrow:hover {
		transform: translateY(-50%) scale(1.05);
	}
  
  /* Mobile: Show as carousel */
  @media (max-width: 900px) {
			.carousel-arrow {
				display: none;
			}
	.service-photo-grid {
	  width: 100%;
	  max-width: 100vw;
	  overflow: hidden;
	}
	
	.carousel-container {
	  width: 100%;
	  max-width: 100vw;
	  overflow: hidden;
	}
	
	.carousel-wrapper {
	  display: flex;
	  grid-template-columns: none;
	  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	  width: 100%;
	  will-change: transform;
	  touch-action: pan-y pinch-zoom;
	}
	
		.carousel-slide {
			min-width: 100%;
			width: 100%;
			flex: 0 0 100%;
			overflow: hidden;
		}
	
	.carousel-slide img {
	width: 100%;
	max-width: 100%;
	}
	
	.carousel-dots {
	  display: flex;
	  justify-content: center;
	  gap: 0.5rem;
	  margin-top: 1rem;
	}
  }
  
  .carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: background 0.3s ease;
  }
  
  .carousel-dot.active {
	background: #8B1D5F;
  }
  
  /* ---------- GALLERY (used on newborn page) ---------- */
  
  .gallery-section {
	margin-bottom: 3rem;
	padding: 1.5rem 1.4rem 1.8rem;
	border-radius: 20px;
	background: linear-gradient(135deg, #fff4fb, #fdf5ff);
  }
  
  .gallery-section h2 {
	text-align: center;
	margin-bottom: 0.75rem;
  }
  
  .gallery-intro {
	margin-bottom: 1rem;
	text-align: center;
	font-size: 0.95rem;
	color: #555;
  }
  
  .gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0.75rem;
  }
  
  .gallery-grid img {
	width: 100%;
	height: 220px;
	border-radius: 14px;
	object-fit: cover;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }
  
  /* ---------- FAQ (newborn page) ---------- */
  
  .faq {
	margin-bottom: 3rem;
  }
  
  .section-title {
	text-align: center;
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
	color: #8B1D5F;
  }
  
  .faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
  }
  
  .faq-item {
	background: #ffffff;
	border-radius: 18px;
	padding: 1.25rem 1.5rem;
	box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
	border-left: 4px solid #ffb16f;
  }
  
  .faq-item h3 {
	font-size: 1.05rem;
	margin-bottom: 0.5rem;
	color: #2b1230;
  }
  
  .faq-item p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
  }
  
  .faq-item a {
	color: #8B1D5F;
	text-decoration: none;
  }
  
  .faq-item a:hover {
	text-decoration: underline;
  }
  
  /* ---------- CTA STRIP (newborn page) ---------- */
  
  .cta-strip {
	margin-top: 1.8rem;
	padding: 1.8rem 1.9rem;
	border-radius: 22px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef 40%, #f6d365 100%);
	color: #381123;
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	align-items: center;
  }
  
  .cta-text h2 {
	margin-bottom: 0.4rem;
  }
  
  .cta-text p {
	font-size: 0.98rem;
  }
  
  .cta-actions {
	display: flex;
	gap: 0.75rem;
  }
  
  /* ---------- MOBILE NAV DRAWER ---------- */
  
  .mobile-drawer {
	position: fixed;
	inset: 0 auto 0 0;
	width: 260px;
	background: #ffffff;
	box-shadow: 4px 0 18px rgba(0,0,0,0.25);
	transform: translateX(-100%);
	transition: transform 0.25s ease-out;
	z-index: 999;
	padding: 1.2rem 1rem;
  }
  
  .mobile-drawer.drawer-open {
	transform: translateX(0);
  }
  
  .mobile-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
  }
  
  .mobile-nav a {
	padding: 0.55rem 0.4rem;
	border-radius: 8px;
	text-decoration: none;
	color: #333;
	font-weight: 500;
  }
  
  .mobile-nav a:hover {
	background: #ffe6f5;
	color: #8B1D5F;
  }
  
  .mobile-drawer-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.35);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease-out;
	z-index: 998;
  }
  
  .mobile-drawer-backdrop.drawer-visible {
	opacity: 1;
	pointer-events: auto;
  }
  
  /* ---------- RESPONSIVE BREAKPOINTS ---------- */
  
  @media (max-width: 900px) {
	.hero {
	  text-align: center;
	}
	
	.hero-text {
	  max-width: 100%;
	}
  }
  
  @media (max-width: 720px) {
  
	.page-wrap {
	  margin: 15px auto 30px;
	  padding: 1.5rem 1.2rem 2.4rem;
	  width: calc(100% - 20px);
	  max-width: calc(100vw - 20px);
	  overflow-x: hidden;
	}
  
	.navbar {
	  padding-inline: 1rem;
	}
  
	/* Show hamburger, hide desktop links */
	.nav-toggle {
	  display: block;
	}
  
	.nav-left,
	.nav-right {
	  display: none;
	}
  
	.hero-text h1 {
	  font-size: 2.1rem;
	}
	
	.hero-text {
	  padding: 0 0.5rem;
	}
	
	.two-column {
	  padding: 1.2rem 1rem;
	}
	
	.two-column img {
	  max-width: 100%;
	}
  
	.stats-strip {
	  flex-direction: column;
	}
	
	.service-photo-grid {
	  grid-template-columns: 1fr;
	  gap: 1rem;
	}
	
	.service-photo-grid img {
	  aspect-ratio: auto;
	  max-height: 300px;
	}
  
	.cta-strip {
	  flex-direction: column;
	  text-align: center;
	}
  
	.cta-actions {
	  justify-content: center;
	  flex-wrap: wrap;
	}
  
	.faq-grid {
	  grid-template-columns: 1fr;
	}
  }
  