/**
 * Tripzy AI Travel Planner - Custom Stylesheet
 * Brand: Tripzy
 * Domain: tripzy.web.id
 */

/* ===== CSS Variables ===== */
:root {
  --brand-primary: #0EA5E9;
  --brand-primary-dark: #0284C7;
  --brand-primary-light: #38BDF8;
  --brand-secondary: #6366F1;
  --brand-accent: #F59E0B;
  --brand-dark: #0F172A;
  --brand-dark-soft: #1E293B;
  --brand-gray: #64748B;
  --brand-gray-light: #94A3B8;
  --brand-gray-lighter: #E2E8F0;
  --brand-white: #FFFFFF;
  --brand-bg: #F8FAFC;
  --brand-success: #10B981;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Source Serif Pro', Georgia, serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* ===== Brand Color Overrides ===== */
.bg-primary {
  background-color: var(--brand-primary) !important;
}

.text-primary {
  color: var(--brand-primary) !important;
}

a {
  color: var(--brand-primary);
}

a:hover {
  color: var(--brand-primary-dark);
}

/* ===== Buttons ===== */
.btn {
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
}

.btn.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-color: var(--brand-primary);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
}

.btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-secondary) 100%);
  border-color: var(--brand-primary-dark);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}

.btn.btn-outline-white:hover {
  color: var(--brand-primary) !important;
}

.btn.btn-secondary {
  background: linear-gradient(135deg, var(--brand-secondary) 0%, #4F46E5 100%);
  border-color: var(--brand-secondary);
  color: var(--brand-white);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn.btn-secondary:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  transform: translateY(-2px);
  color: var(--brand-white);
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-soft) 50%, #0C4A6E 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero.hero-inner {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary-dark) 100%);
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
}

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 38px;
  }
}

.hero h1 .typed-words {
  color: var(--brand-primary-light);
}

.hero h1 .typed-words:before {
  background-color: var(--brand-primary-light);
  opacity: 0.4;
}

.hero .slides {
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.5);
}

.hero .slides img {
  border-radius: var(--radius-xl);
}

/* ===== Navigation ===== */
.site-nav {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.logo {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary-light) 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span {
  -webkit-text-fill-color: var(--brand-accent);
}

.site-nav .site-navigation .site-menu > li > a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.site-nav .site-navigation .site-menu > li > a:hover,
.site-nav .site-navigation .site-menu > li.active > a {
  color: var(--brand-primary-light);
}

.site-nav .site-navigation .site-menu > li.cta-button a {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border: none;
  color: var(--brand-white) !important;
  font-weight: 600;
}

/* ===== Section Titles ===== */
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-dark);
}

.section-title:before {
  background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  height: 4px;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--brand-gray);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Feature Cards ===== */
.feature-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  border: 1px solid var(--brand-gray-lighter);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--brand-primary-light);
}

.feature-card .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card .hero-icon {
  width: 30px;
  height: 30px;
  color: var(--brand-primary);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.feature-card:hover .icon-wrap {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0%, rgba(99, 102, 241, 0.18) 100%);
  transform: scale(1.08);
}

.feature-card:hover .hero-icon {
  color: var(--brand-primary-dark);
  transform: scale(1.1);
}

.feature-card .icon-wrap .icon {
  font-size: 28px;
  color: var(--brand-primary);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--brand-gray);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== How It Works ===== */
.step-card {
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  color: var(--brand-white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--brand-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Itinerary Sample ===== */
.itinerary-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--brand-gray-lighter);
}

.itinerary-header {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  padding: 24px 28px;
  color: var(--brand-white);
}

.itinerary-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.itinerary-header p {
  margin: 4px 0 0;
  opacity: 0.9;
  font-size: 14px;
}

.itinerary-body {
  padding: 24px 28px;
}

.itinerary-day {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--brand-gray-lighter);
}

.itinerary-day:last-child {
  border-bottom: none;
}

.itinerary-day .day-badge {
  background: var(--brand-primary);
  color: var(--brand-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  height: fit-content;
}

.itinerary-day .day-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0 0 4px;
}

.itinerary-day .day-content p {
  font-size: 14px;
  color: var(--brand-gray);
  margin: 0;
  line-height: 1.5;
}

.itinerary-day .day-content .estimate {
  font-size: 13px;
  color: var(--brand-success);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Testimonials ===== */
.testimonial {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--brand-gray-lighter);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial .img-wrap img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--brand-primary-light);
}

.testimonial .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.testimonial .role {
  font-size: 14px;
  color: var(--brand-gray);
  margin-bottom: 16px;
}

.testimonial blockquote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brand-dark-soft);
  font-style: italic;
  margin: 0;
}

.testimonial blockquote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--brand-primary-light);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

/* ===== Stats Section ===== */
.stat-item {
  text-align: center;
  padding: 24px 16px;
}

.stat-item .counter {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.2;
}

.stat-item .caption {
  font-size: 15px;
  color: var(--brand-gray);
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--brand-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--brand-gray-lighter);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--brand-primary-light);
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
  margin: 0;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--brand-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--brand-gray);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--brand-primary-dark) 0%, var(--brand-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .cta-section h2 {
    font-size: 30px;
  }
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer .inner.first {
  background: var(--brand-dark-soft);
}

.site-footer .inner.dark {
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .widget .heading {
  color: var(--brand-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.site-footer .widget p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.site-footer .widget .links li {
  margin-bottom: 10px;
}

.site-footer .widget .links li a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.site-footer .widget .links li a:hover {
  color: var(--brand-primary-light);
  padding-left: 4px;
}

.site-footer .widget .quick-info li a {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer .widget .quick-info li a:hover {
  color: var(--brand-primary-light);
}

.site-footer .widget .social li {
  display: inline-block;
  margin-right: 8px;
}

.site-footer .widget .social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-white);
  transition: all 0.3s ease;
}

.site-footer .widget .social li a:hover {
  background: var(--brand-primary);
  transform: translateY(-3px);
}

.site-footer .inner.dark p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.site-footer .inner.dark p a {
  color: var(--brand-primary-light);
}

/* ===== Media Thumb Updates ===== */
.media-thumb .media-text h3 {
  color: var(--brand-white);
}

.media-thumb .media-text .location {
  color: rgba(255, 255, 255, 0.8);
}

.media-thumb:after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* ===== Benefits Section ===== */
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.benefit-item .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item .benefit-icon .icon {
  font-size: 22px;
  color: var(--brand-primary);
}

.benefit-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 14px;
  color: var(--brand-gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== Contact Form ===== */
.contact-form .form-group label {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form .form-control {
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.quick-contact-item {
  gap: 16px;
}

.quick-contact-item .flaticon-house,
.quick-contact-item .flaticon-phone-call,
.quick-contact-item .flaticon-mail {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--brand-primary);
}

.quick-contact-item .text {
  font-size: 15px;
  color: var(--brand-dark-soft);
  line-height: 1.6;
}

/* ===== Pricing-like cards for destinations ===== */
.dest-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
  border: 1px solid var(--brand-gray-lighter);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.dest-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dest-card .dest-body {
  padding: 20px;
}

.dest-card .dest-body .dest-location {
  font-size: 13px;
  color: var(--brand-gray);
  margin-bottom: 8px;
}

.dest-card .dest-body .dest-location .icon-room {
  color: var(--brand-primary);
}

.dest-card .dest-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.dest-card .dest-body h3 a {
  color: inherit;
}

.dest-card .dest-body h3 a:hover {
  color: var(--brand-primary);
}

.dest-card .dest-body .dest-desc {
  font-size: 14px;
  color: var(--brand-gray);
  line-height: 1.6;
}

/* ===== Team Section ===== */
.team {
  text-align: center;
}

.team img {
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.team:hover img {
  transform: scale(1.02);
}

.team h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.team p {
  font-size: 14px;
  color: var(--brand-primary);
  font-weight: 500;
}

/* ===== Page Headers (inner pages) ===== */
.page-header-content {
  max-width: 700px;
  margin: 0 auto;
}

.page-header-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

@media (max-width: 991.98px) {
  .page-header-content h1 {
    font-size: 34px;
  }
}

.page-header-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ===== Content Pages ===== */
.content-page {
  max-width: 800px;
  margin: 0 auto;
}

.content-page h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-page h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}

.content-page p {
  font-size: 16px;
  color: var(--brand-dark-soft);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.content-page ul li {
  font-size: 16px;
  color: var(--brand-dark-soft);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* ===== Video Section ===== */
.img-play-video {
  position: relative;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.5);
}

.video-play-button span {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent var(--brand-white);
  margin-left: 4px;
}

/* ===== AI Badge ===== */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 16px;
}

.ai-badge .ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: pulse-ai 2s infinite;
}

@keyframes pulse-ai {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

/* ===== Image placeholder styling ===== */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.rounded-20 {
  border-radius: var(--radius-lg);
}

/* ===== Utility ===== */
.bg-light-custom {
  background-color: var(--brand-bg) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 32px;
  }

  .feature-card {
    margin-bottom: 20px;
  }

  .feature-card .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .feature-card .hero-icon {
    width: 26px;
    height: 26px;
  }

  .stat-item .counter {
    font-size: 36px;
  }

  .itinerary-day {
    flex-direction: column;
    gap: 8px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .slides {
    height: 350px;
    margin-bottom: -100px;
  }

  .untree_co-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }
}

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

/* ===== Selection Color ===== */
::selection {
  background: var(--brand-primary);
  color: var(--brand-white);
}

::-moz-selection {
  background: var(--brand-primary);
  color: var(--brand-white);
}

/* ===== Login Page Styles ===== */
.login-page .hero {
  margin-bottom: 60px;
}

.login-section {
  padding: 40px 0 80px;
}

.login-card {
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--brand-gray-lighter);
  transition: all 0.3s ease;
}

.login-header {
  text-align: center;
  margin-bottom: 32px;
}

.login-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.login-header p {
  font-size: 15px;
  color: var(--brand-gray);
  margin: 0;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 8px;
  display: block;
}

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

.input-with-icon > .icon-envelope,
.input-with-icon > .icon-lock {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gray);
  font-size: 16px;
  z-index: 1;
}

.input-with-icon .form-control {
  padding-left: 44px;
  height: 50px;
  border-radius: var(--radius-sm);
}

.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--brand-gray);
  font-size: 18px;
  transition: color 0.3s ease;
}

.toggle-password:hover {
  color: var(--brand-primary);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.form-options .custom-control-label {
  font-size: 14px;
  color: var(--brand-dark-soft);
}

.form-options .forgot-password {
  font-size: 14px;
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.form-options .forgot-password:hover {
  color: var(--brand-primary-dark);
  text-decoration: none;
}

.btn-login {
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.btn-login .login-text,
.btn-login .login-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.divider {
  text-align: center;
  margin: 28px 0;
  position: relative;
}

.divider:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: var(--brand-gray-lighter);
}

.divider span {
  position: relative;
  background: var(--brand-white);
  padding: 0 16px;
  color: var(--brand-gray);
  font-size: 13px;
  font-weight: 500;
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--brand-gray-lighter);
  background: var(--brand-white);
  color: var(--brand-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-google:hover {
  border-color: #DB4437;
  color: #DB4437;
}

.btn-facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
}

.signup-link {
  text-align: center;
  font-size: 15px;
  color: var(--brand-gray);
  padding-top: 20px;
  border-top: 1px solid var(--brand-gray-lighter);
}

.signup-link a {
  color: var(--brand-primary);
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-link a:hover {
  color: var(--brand-primary-dark);
  text-decoration: none;
}

/* Login Benefits Section */
.login-benefits {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--brand-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.login-benefits:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.benefits-header {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.benefits-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.benefits-header p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

.benefit-list {
  position: relative;
  z-index: 1;
}

.benefit-list .benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-list .benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.benefit-list .benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-list .benefit-icon .icon {
  width: 24px;
  height: 24px;
  color: var(--brand-white);
}

.benefit-list .benefit-text h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--brand-white);
}

.benefit-list .benefit-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.stat-mini {
  text-align: center;
}

.stat-mini .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-mini .stat-label {
  display: block;
  font-size: 13px;
  opacity: 0.8;
}

/* Login Page Responsive */
@media (max-width: 991.98px) {
  .login-card {
    padding: 36px 28px;
  }

  .login-header h2 {
    font-size: 28px;
  }

  .login-benefits {
    margin-top: 32px;
    padding: 36px 28px;
  }

  .benefits-header h3 {
    font-size: 24px;
  }

  .stats-box {
    gap: 12px;
  }

  .stat-mini .stat-number {
    font-size: 24px;
  }
}

@media (max-width: 767.98px) {
  .login-section {
    padding: 30px 0 60px;
  }

  .login-card {
    padding: 28px 20px;
  }

  .login-header h2 {
    font-size: 24px;
  }

  .social-login {
    grid-template-columns: 1fr;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-benefits {
    padding: 28px 20px;
  }

  .benefit-list .benefit-item {
    padding: 12px;
  }

  .stats-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Login/Signup Card ===== */
.login-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--brand-gray-lighter);
}
.login-header {
  text-align: center;
  margin-bottom: 28px;
}
.login-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}
.login-header p {
  font-size: 14px;
  color: var(--brand-gray);
  margin: 0;
}
.login-form .form-group,
.signup-form .form-group {
  margin-bottom: 18px;
}
.input-with-icon {
  position: relative;
}
.input-with-icon > .icon-envelope,
.input-with-icon > .icon-lock,
.input-with-icon > .icon-user {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-gray-light);
  font-size: 16px;
  z-index: 3;
}
.input-with-icon .form-control {
  padding-left: 42px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}
.input-with-icon .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--brand-gray-light);
  z-index: 3;
  font-size: 16px;
}
.toggle-password:hover {
  color: var(--brand-primary);
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
}
.form-options .forgot-password {
  color: var(--brand-primary);
  font-weight: 500;
}
.form-options .forgot-password:hover {
  color: var(--brand-primary-dark);
}
.btn-login,
.btn-signup {
  border-radius: var(--radius-sm);
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-login:hover,
.btn-signup:hover {
  transform: translateY(-1px);
}
.divider {
  text-align: center;
  margin: 24px 0;
  position: relative;
}
.divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--brand-gray-lighter);
}
.divider span {
  background: var(--brand-white);
  padding: 0 16px;
  position: relative;
  color: var(--brand-gray);
  font-size: 13px;
}
.social-login {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-gray-lighter);
  background: var(--brand-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-social:hover {
  border-color: var(--brand-gray-light);
  background: var(--brand-bg);
  transform: translateY(-1px);
}
.signup-link {
  text-align: center;
  font-size: 14px;
  color: var(--brand-gray);
}
.signup-link a {
  font-weight: 600;
}
.form-error-message {
  margin-bottom: 16px;
}

/* ===== Login Benefits Sidebar ===== */
.login-benefits {
  padding: 20px;
}
.benefits-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-white);
  margin-bottom: 8px;
}
.benefits-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}
.benefit-item:hover {
  background: rgba(255,255,255,0.1);
}
.benefit-item .benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.benefit-item .benefit-icon .icon {
  font-size: 18px;
  color: var(--brand-primary-light);
}
.benefit-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-white);
  margin: 0 0 2px;
}
.benefit-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}
.stats-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
}
.stat-mini {
  text-align: center;
}
.stat-mini .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-white);
}
.stat-mini .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

/* ===== Utility ===== */
.d-none {
  display: none !important;
}

/* Gap utility */
.gap-3 {
  gap: 1rem;
}
