@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap');

:root {
  /* Pastel & Warm Cinematic Colors */
  --primary-color: #8FD6E8; /* Soft cyan/blue */
  --secondary-color: #FFB5A7; /* Warm pastel pink/orange */
  --accent-color: #F9E2AF; /* Soft yellow */
  --text-dark: #2A363B;
  --text-light: #6A7A82;
  --bg-color: #FDFBF7; /* Warm off-white */
  --white: #FFFFFF;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --border-radius: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

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

/* Header & Nav */
header {
  padding: 20px 0;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--secondary-color);
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  border: none;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(143, 214, 232, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(143, 214, 232, 0.6);
  background: #7BC5D9;
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 181, 167, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 181, 167, 0.6);
  background: #EFA698;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-color) 0%, rgba(249,226,175,0) 70%);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  transform: rotate(2deg);
  transition: var(--transition);
}

.hero-image img:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 181, 167, 0.15);
  color: #D96A59;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

/* Feature/Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  z-index: -1;
}

.card:nth-child(2)::before {
  background: var(--secondary-color);
}

.card:nth-child(3)::before {
  background: var(--accent-color);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: var(--shadow-sm);
  color: var(--primary-color);
}

.card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.card-link {
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  gap: 8px;
}

/* Footer & Local SEO Content */
footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* Inner Pages Hero */
.inner-hero {
  padding: 100px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(143, 214, 232, 0.1) 0%, rgba(253, 251, 247, 1) 100%);
}

.inner-hero h1 {
  font-size: 42px;
  max-width: 800px;
  margin: 0 auto 20px;
}

.inner-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Content Sections */
.content-section {
  padding: 60px 0;
}

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

.content-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.content-text p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.content-text ul {
  list-style-type: none;
  margin-bottom: 20px;
}

.content-text ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.content-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .nav-links {
    display: none; /* In a real app we'd add a hamburger menu */
  }
  .content-grid {
    grid-template-columns: 1fr;
  }
}
