:root {
  --primary-orange: #32b57f;
  --primary-purple: #9333ea;
  --primary-pink: #ec4899;
  --primary-blue: #3b82f6;
  --primary-teal: #14b8a6;
  --primary-green: #10b981;
  --primary-red: rgb(225, 45, 57);
  --primary-yellow: #eab308;
  --primary-dark: #111827;
  --primary-gray: #6b7280;
  --primary-light: #f8fafc;
  --primary-bg: #fff7ed;
  --primary-bg-alt: #faf5ff;
  --primary-turquoise: #098585;
  --border-light: #f3f4f6;
  --border-orange: #fed7aa;
  --footer-bg: #111827;
  --footer-link: #d1d5db;
  --footer-link-hover: #fbbf24;
  --footer-divider: #374151;
  --footer-muted: #9ca3af;
  --white: #fff;
  --bio: rgb(117, 214, 157);
  --bio-2: #58caec;
}

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

p,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(222.2 84% 4.9%);
  min-height: 100vh;
}

.section-gap {
  padding: 3rem 0;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.container .container {
  padding: 0;
}

/* Navigation */

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.08);
  z-index: 2000;
  padding: 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  width: 100%;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  max-width: 200px;
  width: 100%;
  height: 100%;
  max-height: 64px;
}

.logo figure {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #32b57f, #9333ea);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #32b57f, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--bio);
}

.btn {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline {
  border: 1px solid rgb(177, 233, 200);
  color: var(--bio);
  background: #fff;
}

.btn-outline:hover {
  background: #edfff7;
}

.btn-primary {
  background: linear-gradient(to right, rgb(40, 175, 96), rgb(90, 204, 242));
  color: white;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  background-color: #32b57f;
}

/* Hero Section */
.hero {
  padding: 12rem 1rem 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  line-height: 1.25rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1;
  color: rgb(17, 24, 39);
}

.gradient-text {
  background: linear-gradient(135deg, #32b57f, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-alt {
  background: linear-gradient(135deg, #9333ea, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 2rem;
  color: rgb(75 85 99);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

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

@keyframes upDown {
  0%,
  100% {
    transform: translateY(70px);
  }

  50% {
    transform: translateY(100px);
  }
}

.hero-figure {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  margin: 0;
  overflow: hidden;
  margin-top: -6rem;
  border-radius: 1rem;
  animation: upDown 5s infinite forwards;
  position: relative;
}

.hero-icon {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(50%, 100%);
  background: #28af60;
  color: #fff;
  width: 60px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  display: none;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-lg {
  border-width: 2px;
  height: 2.75rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 896px;
  margin: 0 auto;
}

.stats-grid2 {
  max-width: 100%;
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

.stat-icon i {
  font-size: 1.5rem;
  width: 2rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid2 .stat-icon {
  width: 48px;
  height: 48px;
}

.stats-grid2 .stat-icon i {
  font-size: 1.25rem;
}

.stat-icon.orange {
  background: linear-gradient(135deg, #32b57f, #dc2626);
}

.stat-icon.purple {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.stat-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #06b6d4);
}

.stat-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.stats-grid2 .stat-card {
  border-radius: 0.5rem;
  background-color: #fff;
  border-width: 2px;
  transition: 0.3s ease-in-out;
  border-color: rgb(243, 244, 246);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.stats-grid2 .stat-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.098) 0px 9.51858px 14.3046px -2.83953px, rgba(0, 0, 0, 0.098) 0px 3.78604px 5.67905px -3.78604px;
}

.stats-grid2 .stat-number {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: rgb(17 24 39);
}

.stats-grid2 .stat-label {
  font-weight: 500;
  color: rgb(75 85 99);
}

.stats-grid2 .stat-card:hover {
  border-color: rgb(254 215 170);
}

.stats-grid2 .stat-icon {
  background: linear-gradient(to right, rgb(255, 237, 213), rgb(243, 232, 255));
}

.stats-grid2 .stat-icon.orange {
  color: #32b57f;
}

.stats-grid2 .stat-icon.purple {
  color: #9333ea;
}

.stats-grid2 .stat-icon.teal {
  color: #14b8a6;
}

.stats-grid2 .stat-icon.blue {
  color: #3b82f6;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #6b7280;
}

/* About Section */
.about-hero {
  text-align: center;
}

.about-hero .section-title {
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.about-hero .section-subtitle {
  font-size: 1.25rem;
  max-width: 56rem;
  line-height: 1.6;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #32b57f;
  margin-bottom: 1.5rem;
}

.about-badge i {
  font-size: 1.5rem;
}

.about-badge span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #32b57f;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Story */
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content {
  space-y: 1rem;
}

.story-content h2 {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.story-content p {
  color: rgb(75 85 99);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-image-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 2px solid #f3f4f6;
  transition: all 0.3s;
}

.story-image-card:hover {
  border-color: #fed7aa;
  transform: translateY(-5px);
}

.story-image-card.orange {
  background: linear-gradient(to right bottom, rgb(255, 247, 237), rgb(255, 237, 213));
}

.story-image-card.purple {
  background: linear-gradient(to right bottom, rgb(250, 245, 255), rgb(243, 232, 255));
  margin-top: 2rem;
}

.story-image {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.story-image-caption {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

/* Values */
.values-section .section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

.values-section .section-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  margin-bottom: 3rem;
  color: rgb(75 85 99);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 1);
  border-radius: 0.5rem;
  border: 2px solid #f3f4f6;
  transition: all 0.6s;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.value-card:hover {
  border-color: #fed7aa;
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #32b57f, #9333ea);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.value-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.value-description {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Team */

.team-section .section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

.team-section .section-subtitle {
  font-size: 1.25rem;
  max-width: 48rem;
  margin-bottom: 3rem;
  color: rgb(75 85 99);
}

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

.team-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  transition: all 0.3s;
}

.team-card:hover {
  border-color: #fed7aa;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-photo-section {
  height: 16rem;
  background: linear-gradient(to right bottom, rgb(255, 237, 213), rgb(243, 232, 255));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.25rem;
}

.team-role {
  color: #32b57f;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* About CTA */

.about-cta-section {
  text-align: center;
}

.about-cta-card {
  padding: 3rem;
  background: linear-gradient(135deg, #fff7ed, #faf5ff);
  border-radius: 1rem;
  border: 2px solid #fed7aa;
  margin: 0 auto;
}

.about-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.about-cta-badge i {
  color: #32b57f;
  font-size: 1.5rem;
}

.about-cta-badge span {
  background: linear-gradient(135deg, #32b57f, #9333ea);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1.125rem;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.about-cta-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

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

/* Global Section Title & Subtitle */
.section-title {
  text-align: center;
  font-size: 2.25rem;
  line-height: 2.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--primary-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  max-width: 56rem;
  line-height: 1.6;
}

/* Section-specific overrides */
.about-hero .section-title {
  font-size: 3.75rem;
  line-height: 1;
  margin-bottom: 2rem;
}

.about-hero .section-subtitle {
  font-size: 1.25rem;
  max-width: 56rem;
  line-height: 1.6;
}

.values-section .section-title,
.team-section .section-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  margin-bottom: 1rem;
}

.values-section .section-subtitle,
.team-section .section-subtitle {
  font-size: 1.25rem;
  line-height: 1.75rem;
  max-width: 48rem;
  margin-bottom: 0rem;
  color: var(--primary-gray);
}

/* Features Section */

/* .pricing .section-title,
.features .section-title {
    font-size: 3rem;

    line .pricing .title {}

    -height: 1;
} */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #32b57f, #9333ea);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  line-height: 1.5rem;
}

.feature-icon.orange {
  background: linear-gradient(to right, rgb(249, 115, 22), rgb(239, 68, 68));
}

.feature-icon.purple {
  background: linear-gradient(to right, rgb(168, 85, 247), rgb(236, 72, 153));
}

.feature-icon.teal {
  background: linear-gradient(to right, rgb(20, 184, 166), rgb(6, 182, 212));
}

.feature-icon.yellow {
  background: linear-gradient(135deg, #eab308, #32b57f);
}

.feature-icon.green {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
}

.feature-icon.indigo {
  background: linear-gradient(135deg, #6366f1, var(--primary-purple));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  background: #ffffff; /*rgba(255, 255, 255, 0.5);*/
}

.pricing .title {
  text-align: center;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

.pricing .title i {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-right: 0.75rem;
}

.pricing .title span {
  border: 1px solid rgb(254, 215, 170);
  padding: 0.2rem 0.5rem;
  border-radius: 5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
}

.pricing-card {
  padding: 0;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  position: relative;
}

.pricing-card.featured {
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(22, 162, 73, 0.2);
  background-color: #f6f9f6;
  /*background: linear-gradient(135deg, var(--white), var(--primary-bg));*/
}

.pricing-card .pricing-badge,
.pricing-card .launch-offer-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
  color: var(--white);
  text-align: center;
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card .pricing-content {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.pricing-card .pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-icon-inner {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple));
}

.pricing-card .pricing-icon-inner i {
  font-size: 2rem;
  color: var(--white);
}

.pricing-card .pricing-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pricing-card .pricing-desc {
  color: var(--primary-gray);
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.pricing-card .pricing-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  flex-direction: column;
}

.pricing-card .pricing-amount-main {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.pricing-card .pricing-amount-sub {
  color: var(--primary-gray);
  margin-left: 0.5rem;
  font-size: 1.25rem;
}

.pricing-card .pricing-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-card .pricing-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.pricing-card .pricing-highlight i {
  margin-right: 0.5rem;
}

.pricing-card .pricing-highlight span {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.pricing-card .btn-primary {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
  /* background: linear-gradient(135deg, var(--primary-orange), var(--primary-purple)); */
  background: linear-gradient(to right, rgb(40, 175, 96), rgb(90, 204, 242));
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.pricing-card .pricing-details {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-card .pricing-details p {
  font-size: 0.875rem;
  color: var(--primary-gray);
  margin-bottom: 0.5rem;
}

.pricing-card .pricing-details .pricing-note {
  font-size: 0.75rem;
  color: var(--footer-muted);
}

.pricing-card .pricing-features-list {
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
}

.pricing-card .pricing-features-list h4 {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  text-align: center;
}

.pricing-card .pricing-features-list ul {
  list-style: none;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
}

.pricing-card .pricing-features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.pricing-card .pricing-features-list li span:first-child {
  color: var(--primary-green);
  margin-right: 0.75rem;
  font-size: 1.125rem;
}

.pricing-card .pricing-features-list li span:last-child {
  color: #374151;
}

/* CTA Section */
.cta {
  padding: 5rem 1rem;
  text-align: center;
}

.cta-card {
  background: linear-gradient(135deg, #32b57f, #9333ea);
  padding: 3rem 2rem;
  border-radius: 2rem;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: #32b57f;
  font-weight: 600;
}

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 1rem;
}

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

.todayDate {
  border: 1px solid #dadada;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  background-color: var(--primary-orange);
  color: #fff;
  cursor: pointer;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  max-width: 200px;
  width: 100%;
}

.footer-logo figure {
  width: 100%;
  height: 100%;
}

.footer-logo figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-description {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #374151;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  background: #32b57f;
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  /* border-top: 1px solid #374151;	 */
  text-align: center;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  display: flex;
  gap: 1rem;
}

.footer-bottom p img {
  width: 2rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  object-fit: contain;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
}

/* Bootstrap Datepicker override for theme */
.datepicker.dropdown-menu {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #32b57f;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
  font-family: inherit;
  z-index: 2000;
  padding: 0.5rem 0.75rem;
}

.datepicker table {
  width: 100%;
  margin: 0;
}

.datepicker table tr td,
.datepicker table tr th {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #374151;
  transition: background 0.2s, color 0.2s;
}

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover {
  background: linear-gradient(135deg, #32b57f, #9333ea);
  color: #fff;
}

.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
  background: #f3f4f6;
  color: #32b57f;
}

.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  color: #d1d5db !important;
  background: none !important;
  cursor: not-allowed;
}

.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next,
.datepicker tfoot tr th {
  color: #333;
  font-weight: 600;
  background: none;
  border-radius: 0.5rem;
}

.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover {
  background: #f3f4f6;
  color: #32b57f;
}

.datepicker table tr td.today {
  background: #c2f0f0;
}

/* End datepicker theme */

/* --- Calendar and Tabs Styles --- */
.tab-header {
  background: #f3f5f7;
  border-radius: 0.5rem;
  padding: 0.16rem;
}

.tab-btn {
  background: none;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 500;
  padding: 0.75rem 2rem 0.75rem 0;
  color: rgb(115, 132, 140);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  outline: none;
  transition: 0.3s ease-in-out;
}

.tab-btn i {
  margin-right: 0.25rem;
}

.tab-btn.active {
  background: #fff;
  color: rgb(43, 54, 59);
}

.tab-content {
  padding-top: 1.5rem;
}

.search-tabber .tab-btn {
  width: 100%;
}

.calendar-tab-content .title {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  color: rgb(43, 54, 59);
  margin-bottom: 0;
}

.calendar-tab-content .title i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: var(--primary-blue);
}

.calendar-tab-content .description {
  color: rgb(115, 132, 140);
  margin-bottom: 1rem;
}

.calendar-tab-content .calendar-points {
  padding: 0;
  margin-bottom: 2rem;
}

.calendar-tab-content .calendar-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
}

.box {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  aspect-ratio: 1 / 1;
  border-radius: 0.25rem;
}

.box.green {
  background: var(--primary-green);
}

.box.red {
  background: var(--primary-red);
}

.box.gray {
  background: var(--primary-gray);
}

.box.yellow {
  background: var(--primary-yellow);
}

.box.blue {
  background: var(--primary-blue);
}

.box.green_box {
  background: var(--primary-green);
  position: relative;
  margin-left: 80%;
  margin-top: 4%;
}

.box.red_box {
  background: var(--primary-red);
  position: relative;
  margin-left: 79.3%;
  margin-top: 4%;
}

.box.yellow_box {
  background: var(--primary-yellow);
  position: relative;
  margin-left: 79.3%;
  margin-top: 4%;
}

.box.blue_box {
  background: var(--primary-blue);
  position: relative;
  margin-left: 79.3%;
  margin-top: 4%;
}

.cell-box-width .red_box {
  background: var(--primary-red);
  position: relative;
  margin-left: 83.3%;
  margin-top: 4%;
}

.cell-box-width .yellow_box {
  background: var(--primary-yellow);
  position: relative;
  margin-left: 83.3%;
  margin-top: 4%;
}

.cell-box-width .blue_box {
  background: var(--primary-blue);
  position: relative;
  margin-left: 83.3%;
  margin-top: 4%;
}

.calendar-content-box {
  padding: 1.5rem;
  background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgb(249, 250, 251) 100%);
  margin-bottom: 1.5rem;
}

.calendar-container {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.07);
  padding: 2rem 1rem 2rem 1rem;
  margin-bottom: 2rem;
}

.calendar-header {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
}

.calendar-arrow {
  color: rgb(43, 54, 59);
  background: #fff;
  border: 1px solid rgb(218, 224, 231);
  border-radius: 0.75rem;
  width: 2.5rem;
  aspect-ratio: 1 / 1;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}

.calendar-arrow:hover {
  background: #e0e7ff;
}

.calendar-month-year {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 1rem;
  min-width: 150px;
  text-align: center;
}

.calendar-today {
  font-size: 1rem;
  padding: 0.5rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgb(218, 224, 231);
}

.calendar-today:hover {
  background: #e0e7ff;
}

.calendar-days-header {
  background: #f9fafb;
  border-radius: 0.5rem 0.5rem 0 0;
  overflow: hidden;
}

.calendar-day-col {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #6b7280;
}

.calendar-dates {
  min-height: 7rem;
  background: #fff;
  border-radius: 0 0 0.5rem 0.5rem;
  margin-bottom: 0.5rem;
}

.calendar-date-cell {
  min-height: 4rem;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  margin: 2px 0;
  border: 2px solid rgb(218, 224, 231);
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
  min-width: 160px;
}

.calendar-date-cell.today {
  border-color: var(--primary-orange);
}

.calendar-date-cell:hover {
  background-color: #ffddc6;
  cursor: pointer;
}

.calendar-date-cell.empty {
  background: transparent;
  border: none;
  cursor: default;
}

.theme-text {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to right, rgb(40, 175, 96), rgb(90, 204, 242));
}

.howWorksCard {
  text-align: center;
}

.howWorksCard .number {
  max-width: 80px;
  width: 100%;
  margin: auto;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right bottom, rgb(40, 175, 96), rgb(90, 204, 242));
  position: relative;
  color: #fff;
  margin-bottom: 1rem;
}

.howWorksCard .number span {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}

.howWorksCard .number .icon {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #5accf2;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 24px;
  max-height: 24px;
  width: 100%;
  height: 100%;
  padding: 0.125rem;
  font-size: 0.875rem;
  aspect-ratio: 1 / 1;
}

.howWorksCard .title {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.howWorksCard .desc {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(103, 119, 126);
}

.background-shade {
  background-color: #f6f9f6;
}

@media (max-width: 768px) {
  .footer-bottom p {
    flex-direction: column;
  }
  .footer {
    padding: 1rem;
  }

  .hero-icon {
    transform: translate(0, 100%);
  }

  @keyframes upDown {
    0%,
    100% {
      transform: translateY(90px);
    }

    50% {
      transform: translateY(120px);
    }
  }

  .hero {
    padding: 9rem 1rem 5rem;
  }

  .calendar-header,
  .calendar-days-header {
    font-size: 0.95rem;
  }

  .calendar-date-cell {
    min-height: 2.2rem;
    font-size: 0.95rem;
    justify-content: center;
    min-width: auto;
    padding: 0.2rem 0.2rem;
  }
}

/* --- End Calendar and Tabs Styles --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .section-gap {
    padding: 4rem 0;
  }

  .mobile-menu {
    display: block;
    background: none;
    border: none;
    color: #374151;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .story-images {
    grid-template-columns: 1fr;
  }

  .about-hero .section-title {
    margin-bottom: 1rem;
  }

  .about-hero .section-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .about-hero .section-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .about-cta-card {
    padding: 2rem 1rem;
  }

  .about-cta-title {
    font-size: 1.8rem;
    line-height: 2.1rem;
  }

  .about-cta-description {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
  }

  .features-grid {
    gap: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* --- Start: search.html inline CSS moved here for search/profile/results/photographer card UI --- */

.profile-section {
  padding: 7rem 0 1.5rem;
}

.profile-box {
  background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgb(249, 250, 251) 100%);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.profile-header .title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.profile-card {
  display: flex;
  gap: 1rem;
}

.profile-card figure {
  max-width: 80px;
  width: 100%;
  max-height: 80px;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 2px;
  position: relative;
  border: 1px solid #333;
}

.profile-card figure img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
}

.profile-card figure figcaption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 0.2rem 0.75rem;
  background-color: var(--primary-green);
  border-radius: 5rem;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
}

.profile-card article .user-name {
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-bottom: 0.25rem;
}

.profile-card article .category {
  font-size: 0.875rem;
  line-height: 1.175rem;
  color: var(--primary-orange);
  margin-bottom: 0.75rem;
}

.profile-card article,
.profile-card article .contact {
  width: 100%;
}

.profile-card article .contact .info {
  font-size: 0.9rem;
  line-height: 1.2rem;
  color: rgb(115, 132, 140);
}

.profile-card article .contact .info i {
  margin-right: 0.25rem;
}

/* Search Section Styles */
.search-section {
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
  background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgb(249, 250, 251) 100%);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: 0.3s ease-in-out;
}

.search-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  position: relative;
}

.search-card-header i {
  color: var(--primary-orange);
  margin-right: 0.5rem;
}

.search-card-header {
  font-size: 1.25rem;
  line-height: 1.55rem;
  font-weight: 500;
}

.search-card {
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: end;
  transition: 0.3s ease-in-out;
  max-height: 1000px;
  opacity: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: all 0.2s;
  background: white;
  appearance: none;
}

.form-input.input-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.input-with-icon .input-sm {
  padding-left: 2.5rem;
}

.form-input:focus {
  outline: 2px solid var(--primary-orange);
}

select.form-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* Custom Select Dropdown (shared for location and sort) */
.custom-select-wrapper {
  position: relative;
}

.custom-select-trigger {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 2.5rem;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-select-trigger.select-sm {
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  font-size: 0.875rem;
}

.custom-select-trigger.custom-sort-button {
  padding: 0.75rem 1rem;
}

.custom-select-trigger:focus {
  outline: 2px solid var(--primary-orange) !important;
}

.custom-select-trigger .input-icon {
  position: absolute;
  left: 0.75rem;
  color: #9ca3af;
}

.dropdown-arrow {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
  transition: transform 0.2s;
}

.custom-select-trigger.open .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 50;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.custom-select-dropdown.open {
  display: block;
}

.dropdown-item {
  width: calc(100% - 0.5rem);
  position: relative;
  padding: 0.4rem 0.75rem 0.4rem 2.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
  border-bottom: 1px solid #f3f4f6;
  margin: 0.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background-color: #f9fafb;
}

.dropdown-item:hover,
.dropdown-item.selected {
  background-color: #c2f0f0;
  color: var(--primary-orange);
}

.dropdown-item.selected::after {
  content: "\f00c";
  font: 900 0.875rem "Font Awesome 6 Free";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.input-with-icon input {
  padding-left: 2.5rem;
  width: 100%;
}

.search-button {
  background: var(--primary-orange);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: fit-content;
}

.search-button.btn-sm {
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

.search-button:hover {
  color: #fff;
  background-color: #ef6200;
}

.clear-button {
  background: rgb(252, 252, 252);
  color: rgb(43, 54, 59);
  border: none;
  border: 1px solid rgb(209, 213, 219);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.clear-button:hover {
  background: rgb(255 237 209);
  color: var(--primary-orange);
}

/* Results Section Styles */
.results-section {
  padding: 4rem 0;
  padding-top: 3rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.results-title {
  font-size: 1.3rem;
  font-weight: 500;
  color: #111827;
}

.sort-select {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  min-width: 200px;
}

.photographers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

/* Photographer Card Styles */
.photographer-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.photographer-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: #ffdbc6;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
}

.availability-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  z-index: 10;
  text-transform: capitalize;
}

.full_day_available {
  background: #10b981;
  color: white;
}

.full_day_not_available {
  background: #ef4444;
  color: white;
}

.only_first_half_available {
  background: #eab308;
  color: white;
}

.only_second_half_available {
  background: #3b82f6;
  color: white;
}

.heart-button {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 0.375rem;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
  z-index: 10;
}

.heart-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Portfolio Preview Images */
.portfolio-preview {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  gap: 0.25rem;
  z-index: 10;
}

.portfolio-preview img {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  object-fit: cover;
  cursor: pointer;
  transition: all 0.2s;
}

.portfolio-preview img:hover {
  border-color: white;
  transform: scale(1.1);
}

.portfolio-preview img.active {
  border-color: white;
  border-width: 3px;
}

.portfolio-more {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
}

.card-content {
  padding: 1rem;
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.profile-info .initials {
  background-color: #f1f2f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  aspect-ratio: 1 / 1;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
}

.profile-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.profile-details h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.photographer-card:hover .profile-details h3 {
  color: #3b82f6;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.book-button {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.5rem;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.book-button:hover {
  background: #2563eb;
}

/* Icons */
.icon {
  width: 1rem;
  height: 1rem;
}

.icon-sm {
  width: 0.75rem;
  height: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
  .book-button {
    font-size: 1.125rem;
    padding: 0.5rem;
    gap: 0.25rem;
  }

  .results-title,
  .search-card-header {
    font-size: 1rem;
  }

  .copy-btn,
  .share-btn {
    padding: 0.5rem;
  }

  .search-card-header::before {
    content: "\f107";
    font: 900 1rem "FONT AWESOME 6 FREE";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease-in-out;
  }

  .custom-accordian.closed .ca-header::before {
    transform: translateY(-50%) rotateZ(-90deg);
  }

  .custom-accordian.closed .ca-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .photographers-grid {
    /* grid-template-columns: 1fr; */
    margin-bottom: 2rem;
  }

  .results-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
}

/* --- End: search.html inline CSS --- */

/* --- Calendar Modal Styles --- */
.calendar-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.35);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-modal {
  background: #fff;
  border-radius: 1.25rem;
  width: 100%;
  max-width: 750px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  animation: fadeInModal 0.2s;
}

@keyframes fadeInModal {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calendar-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1rem 1.5rem;
  background: #fff;
  border-radius: 1.25rem 1.25rem 0 0;
}

.calendar-modal-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
}

.calendar-modal-date-badge {
  border: 1px solid #33a21b;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 1rem;
  padding: 0.125rem 0.5rem;
  margin: 0px 18.5rem 0 15px;
  white-space: nowrap;
  background-color: #33a21b;
}

.calendar-modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.2s;
}

.calendar-modal-close:hover {
  background: #f3f4f6;
}

.calendar-modal-body {
  padding: 1rem 1.5rem 0.5rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 70dvh;
  overflow-y: auto;
}

.calendar-modal-label {
  font-size: 0.98rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.4rem;
}

.calendar-modal-dropdown {
  position: relative;
  width: 100%;
}

.calendar-modal-dropdown-btn {
  width: 100%;
  background: #fff;
  border: 2px solid rgb(218, 224, 231);
  color: #374151;
  border-radius: 0.75rem;
  padding: 0.44rem 1rem;
  font-size: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
}

.calendar-modal-dropdown-btn:focus {
  outline: none;
  border: 2px solid var(--primary-orange);
}

.calendar-modal-dropdown-btn .box {
  width: 0.75rem;
  height: 0.75rem;
}

.calendar-modal-dropdown-btn:after {
  content: "\f107";
  font: 900 1rem "Font Awesome 6 Free";
  font-size: 0.8rem;
  margin-left: 0.5rem;
  color: #9ca3af;
}

.calendar-modal-dropdown-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 110%;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  z-index: 10;
  margin-top: 0.2rem;
  padding: 0.25rem 0;
  border: 1px solid rgb(218, 224, 231);
  display: none;
}

.calendar-modal-dropdown-list.open {
  display: block;
}

.calendar-modal-dropdown-item {
  position: relative;
  padding: 0.25rem 1rem 0.25rem 2.5rem;
  font-size: 1rem;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calendar-modal-dropdown-item.selected::after {
  content: "\f00c";
  font: 900 0.875rem "Font Awesome 6 Free";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.calendar-modal-dropdown-item:hover,
.calendar-modal-dropdown-item.selected {
  background: #c2f0f0;
  color: var(--primary-orange);
}

.calendar-modal-input,
.calendar-modal-textarea {
  width: 100%;
  background: #fff;
  border: 2px solid rgb(218, 224, 231);
  border-radius: 0.5rem;
  padding: 0.44rem 1rem;
  font-size: 1rem;
  color: #374151;
  margin-bottom: 0.2rem;
  resize: none;
}

.calendar-modal-input:focus,
.calendar-modal-textarea:focus,
.calendar-modal-input:focus-visible,
.calendar-modal-textarea:focus-visible {
  border-color: var(--primary-orange);
  box-shadow: none;
  outline: none;
}

.calendar-modal-textarea {
  min-height: 60px;
  max-height: 120px;
}

.calendar-modal-preview {
  background: #f3f4f6;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.5rem;
  color: #374151;
  font-size: 1rem;
}

.calendar-modal-preview-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

#modal-preview-content .preview {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calendar-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  background: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
}

.calendar-modal-footer .btn {
  min-width: 120px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  padding: 0.7rem 1.2rem;
  box-shadow: none;
}

.calendar-modal-footer .btn-cancel {
  background: rgb(252, 252, 252);
  color: rgb(43, 54, 59);
  border: none;
}

.calendar-modal-footer .btn-cancel:hover {
  background: rgb(255 237 209);
  color: var(--primary-orange);
}

.calendar-modal-footer .btn-save {
  background: #ef6200;
  color: #fff;
  border: none;
}

.calendar-modal-footer .btn-save:hover {
  background: #32b57f;
}

.fixed-responsive-header {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
}

.responsive-menu,
.fixed-responsive-header {
  display: none;
}

.copy-btn {
  padding: 0.5rem 1rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  color: var(--primary-blue);
  transition: 0.3s ease-in-out;
}

.copy-btn:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

.share-btn {
  padding: 0.5rem 1rem;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  transition: 0.3s ease-in-out;
}

.share-btn:hover {
  border: 1px solid var(--primary-blue);
  color: #fff;
}

.steed-img {
  max-width: 30px;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
}

.pricing-card-box {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 4rem;
  padding: 0 20px;
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 768px) {
  .fixed-responsive-header {
    display: block;
    padding: 0.33rem 0;
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.08);
  }

  .pricing-card-box {
    flex-direction: column !important;
  }

  .calendar-date-cell .yellow_box,
  .calendar-date-cell .red_box,
  .calendar-date-cell .blue_box {
    margin-left: 1px !important;
    width: 0.7rem;
    height: 0.7rem;
  }

  .cell-box-width .yellow_box,
  .cell-box-width .red_box,
  .cell-box-width .blue_box {
    margin-left: 6px !important;
    width: 0.7rem;
    height: 0.7rem;
  }

  .category_box {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .form-group-action {
    margin-top: 1rem;
  }

  .FooterBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
  }

  .FooterBox::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background-color: var(--primary-orange);
  }

  .fixed-responsive-header .col:last-child .FooterBox::after {
    content: unset;
  }

  .FooterBox .icon {
    margin-bottom: 0.5rem;
  }

  .FooterBox .icon i {
    font-size: 1.2rem;
  }

  .FooterBox .text {
    font-size: 0.75rem;
    line-height: 1.05rem;
  }

  .FooterBox.active {
    color: var(--primary-orange);
  }

  .calendar-modal {
    max-width: 98vw;
    padding: 0;
  }

  .calendar-modal-date-badge {
    margin: 0;
  }

  .calendar-modal-header,
  .calendar-modal-body,
  .calendar-modal-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .profile-section {
    padding: 5rem 0 1rem;
  }

  /* .tab-header {
		display: none !important;
	} */

  .profile-box {
    display: none;
  }

  .profile-box {
    padding: 1rem;
  }

  .tab-content {
    padding-top: 0;
  }

  .calendar-tab-content .title {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .calendar-tab-content .title i {
    font-size: 1rem;
  }

  .calendar-tab-content .description {
    font-size: 0.875rem;
    line-height: 1.175rem;
  }

  .calendar-content-box {
    padding: 0.5rem;
  }

  .calendar-tab-content .calendar-points {
    margin-bottom: 0;
    gap: 0.5rem !important;
  }

  .calendar-arrow {
    width: 2rem;
    border-radius: 0.5rem;
  }

  .calendar-month-year {
    min-width: 100px;
    margin: 0 0.5rem;
    font-size: 1rem;
  }

  .calendar-modal-title {
    font-size: 1rem;
  }

  .results-section {
    padding: 1.5rem 0;
  }

  .search-section {
    padding: 0;
    padding-bottom: 2rem;
    padding-top: 1rem;
  }

  .search-section.is-closed {
    padding-bottom: 0;
  }

  .search-card-header,
  .calendar-content-box,
  .results-header {
    margin-bottom: 1rem;
  }

  .calendar-container {
    padding: 1rem;
  }

  .search-tabber .tab-btn {
    text-align: start;
    padding-left: 1.5rem;
  }

  .search-grid {
    gap: 0.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
  }

  .nav-links .responsive-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-links .responsive-menu p {
    margin: 0;
  }

  .copyright-logo {
    width: 2rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    overflow: hidden;
  }

  .tab-section {
    padding-bottom: 4rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 375px) {
  .calendar-date-cell {
    padding: 0.25rem;
  }

  .book-button svg {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .nav-links {
    position: fixed;
    top: 81px;
    right: 0;
    width: 100vw;
    height: calc(100dvh - 81px);
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .mobile-menu {
    display: block;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 2100;
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}

.account-row {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.account-sidebar {
  flex: 0 0 300px;
  padding: 1.2rem;
}

.account-sidebar,
.account-content {
  border-radius: 0.5rem;
  border: 1px solid #dadada;
}

.account-sidebar-nav li {
  margin-bottom: 0.2rem;
}

.account-sidebar-nav li a {
  font-weight: 500;
  color: #32b57f;
  font-size: 1rem;
  display: block;
  padding: 0.7rem;
  border-radius: 0.3rem;
}

.account-content {
  flex: 1 1 auto;
  padding: 1.2rem 2rem;
}

.account-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1rem 2rem;
}

.account-form .form-group {
  margin: 0;
}

.form-group-action {
  text-align: center;
  grid-column: 1 / -1;
}

.form-group {
  position: relative;
}

ul.account-sidebar-nav {
  padding-left: 0;
  text-align: left;
}

.account-sidebar-nav li.nav-active a {
  background-color: #32b57f;
  color: #fff;
}

p.success-msg {
  padding: 5px 15px;
  background-color: #d9f4d8;
  color: green;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
}

p.error-msg {
  padding: 5px 15px;
  background-color: #ffe3e3;
  color: red;
  font-size: 17px;
  font-weight: 600;
  border-radius: 6px;
}

.footer-section {
  margin-bottom: 1.5rem;
}

/* Responsive Navigation Styles */
.responsive-nav-wrapper {
  display: none;
  align-items: center;
  position: relative;
  width: 100%;
}

.nav-arrow {
  background: var(--primary-orange);
  color: white;
  border: none;
  max-width: 40px;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  flex-shrink: 0;
}

.nav-arrow:hover {
  background: var(--primary-purple);
  transform: scale(1.1);
}

.responsive-nav-wrapper .account-sidebar-nav {
  display: flex;
  overflow: hidden;
  flex: 1;
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  position: relative;
  min-height: 50px;
  justify-content: center;
}

.responsive-nav-wrapper .account-sidebar-nav li {
  display: none;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #fff;
}

.responsive-nav-wrapper .account-sidebar-nav li.current-visible {
  display: block;
}

.account-sidebar-nav-desktop {
  display: block;
}

.account-sidebar-nav-desktop li {
  padding: 0.5rem 1rem;
  text-align: start;
  border-radius: 0.5rem;
  color: var(--primary-orange);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.account-sidebar-nav-desktop li.nav-active {
  background-color: var(--primary-orange);
  color: #fff;
  font-weight: 600;
}

.account-sidebar-nav-desktop li:hover {
  background-color: #f1f1f1;
}

.account-sidebar-nav-desktop li.nav-active:hover {
  background-color: var(--primary-orange);
  color: #fff;
}

@media (max-width: 768px) {
  .responsive-nav-wrapper {
    display: flex;
  }

  .account-sidebar-nav-desktop {
    display: none;
  }

  .account-sidebar {
    margin-bottom: 1rem;
  }

  .legend_box {
    width: 100% !important;
    text-align: left !important;
    margin-top: 1rem !important;
    flex-direction: column;
    gap: 0 !important;
  }

  label.radio-wrapper {
    width: 100% !important;
  }
}

@media only screen and (max-width: 768px) {
  .footer-section,
  .footer-content {
    margin-bottom: 0rem;
  }

  .footer-logo,
  .footer-description {
    display: none;
  }

  .footer-links li {
    margin-bottom: 0.125rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .account-form {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }

  .account-row {
    flex-direction: column;
  }

  .account-sidebar {
    flex: 0 0 auto;
  }

  .responsive-nav-wrapper .account-sidebar-nav li {
    width: 100%;
  }
}

/* Ribbon styles */
.ribbon {
  position: absolute;
  top: 35px;
  right: -50px;
  background: #28a745;
  color: white;
  padding: 5px 50px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  text-align: center;
  white-space: nowrap;
  display: none;
}

.form-group select {
  width: 100%;
}

.day_wise_users.activate {
  background-color: #32b57f !important;
  color: #fff;
}

.no-data {
  display: none;
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #fdf7f0;
  border-radius: 12px;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.05); */
  font-family: "Segoe UI", sans-serif;
  color: #555;
  animation: fadeIn 0.5s ease-in-out;
}

.no-data img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  opacity: 0.6;
}

.no-data p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #777;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blue-badge {
  border: 1px solid #3498db;
  background-color: #3498db;
}

.yellow-badge {
  border: 1px solid #f1c40f;
  background-color: #f1c40f;
  color: #333;
}

.red-badge {
  border: 1px solid #e74c3c;
  background-color: #e74c3c;
}
.footer-bottom-logo {
  display: inline-block;
  vertical-align: middle;
  width: 35px;
}
.d-none {
	display: none;
}