:root {
  --brown: #641B2E;
  --light-cream: #FBDB93;
  --light-gray: #f9f4ef;
  --light-beige: #fdf3e7;
  --dark-bg: #2c2c2c;
  --yellow: #BE5B50;
  --sky: #8A2D3B;
  --red: #BE5B50;
  --green: #8A2D3B;
  --beige: #FBDB93;
}

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

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  padding-top: 80px;
}

html {
  overflow-x: hidden;
  width: 100%;
}

a{
  text-decoration: none;
}

/* Navigation Styles */
.navbar {
  background-color: rgba(251, 219, 147, 0.95);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  color: #641B2E;
  font-weight: 700;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  color: #641B2E;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #641B2E;
  font-weight: 500;
  margin: 0 10px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: rgba(100, 27, 46, 0.1);
  color: #641B2E;
}

.navbar-toggler {
  border: none;
  padding: 5px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28100, 27, 46, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(251, 219, 147, 0.98);
    padding: 15px;
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
  }
  
  .navbar-nav .nav-link {
    margin: 5px 0;
    text-align: left;
  }
}

.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 100%;
  overflow-x: hidden;
}

.try-out-section .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 576px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .try-out-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  section {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}

h1, h2, h3, h4, h5 { 
  color: #641B2E;
  font-size: 3.5rem;
}

/* SCROLL ANIMATION STYLES */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.animate-fade-in.animated {
  opacity: 1;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #641B2E;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(100, 27, 46, 0.4);
  z-index: 1001;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 300px;
  padding: 0.5rem;
}

.floating-call-btn:hover {
  background-color: #4a1422;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(100, 27, 46, 0.6);
  color: white;
}

@media (max-width: 768px) {
  .floating-call-btn {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 15px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .floating-call-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 10px;
    font-size: 1.2rem;
  }
}

.try-out-text {
  font-size: 6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #641B2E;
  white-space: nowrap;
  padding: 0 5px;
}

.try-out-section .d-flex {
  width: 100%;
  overflow: visible;
  padding: 0;
}

@media (max-width: 768px) {
  .try-out-text { 
    font-size: 4rem;
    margin-bottom: 20px;
    padding: 0 3px;
  }
}

@media (max-width: 576px) {
  .try-out-text { 
    font-size: 3rem;
    margin-bottom: 10px;
    padding: 0 2px;
  }
}

@media (max-width: 400px) {
  .try-out-text {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
}

@media (max-width: 350px) {
  .try-out-text {
    font-size: 2.2rem;
  }
}

@media (max-width: 320px) {
  .try-out-text {
    font-size: 2rem;
  }
}

.hero-section {
  color: #fff;
  background: #8A2D3B;
  background-size: cover;
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center; 
  min-height: 100vh; 
  margin-bottom: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.hero-section .container-fluid {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 992px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding-top: 100px;
    padding-bottom: 30px;
    min-height: auto;
  }
}

.try-out-section { 
  background-color: #FBDB93; 
  position: relative;
  z-index: 10;
  padding-top: 3rem !important;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.ad-package-section { 
  background-color: #f9f4ef;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.business-book-section { 
  background-color: #fdf3e7;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.why-choose-section { 
  background-color: #FBDB93;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.booking-section { 
  background-color: #f9f4ef;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

footer { 
  background-color: #f9f4ef; 
  color: #333;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: white;
}

.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #641B2E;
}

.service-card p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  color: #641B2E;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #BE5B50;
  transform: translateX(5px);
}

.package-list { 
  list-style: none; 
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.package-list li { 
  position: relative;
  padding: 10px 20px;
  margin-bottom: 0;
  background-color: #FBDB93;
  border-radius: 25px;
  display: inline-block;
}

.package-list li::before { 
  display: none;
}

.package-list li h3 {
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .package-list {
    gap: 10px;
  }
  .package-list li {
    padding: 8px 15px;
  }
  .package-list li h3 {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .package-list li {
    padding: 6px 12px;
  }
  .package-list li h3 {
    font-size: 0.85rem;
  }
}

.package-details-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 0;
}

.package-details-list li {
  background: none;
  padding: 8px 0;
  margin-bottom: 5px;
  border-radius: 0;
  display: list-item;
  font-size: 1.2rem;
  line-height: 1.6;
  border-bottom: 3px solid #333;
  padding-bottom: 15px;
  margin-bottom: 10px;
  color: #111;
}

.package-details-list li:last-child {
  border-bottom: none;
}

.crazy-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  color: #641B2E;
  background: transparent;
}

.growth-package-row .crazy-number {
  background: transparent;
  color: #641B2E;
}

.growth-package-row .crazy-1 { transform: rotate(-10deg); }
.growth-package-row .crazy-2 { transform: rotate(8deg); }
.growth-package-row .crazy-3 { transform: rotate(-6deg); }
.growth-package-row .crazy-4 { transform: rotate(5deg); }
.growth-package-row .crazy-5 { transform: rotate(-8deg); }

.why-choose-section .crazy-1 { background-color: #BE5B50; color: white; transform: rotate(-10deg); }
.why-choose-section .crazy-2 { background-color: #641B2E; color: white; transform: rotate(8deg); }
.why-choose-section .crazy-3 { background-color: #8A2D3B; color: white; transform: rotate(-6deg); }

.why-choose-section h3 {
  font-size: 1.5rem;
}

.why-choose-section p {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .why-choose-section .crazy-number {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  .why-choose-section h3 {
    font-size: 1.3rem;
  }
  
  .why-choose-section p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .why-choose-section .crazy-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    margin-right: 8px;
  }
  
  .why-choose-section h3 {
    font-size: 1.1rem;
  }
  
  .why-choose-section p {
    font-size: 0.95rem;
  }
}

.footer-links a { 
  color: #333; 
  text-decoration: none; 
  margin: 0; 
}

.footer-links a:hover { 
  text-decoration: underline; 
}

@media (max-width: 768px) {
  footer .col-md-4 {
    text-align: center !important;
    margin-bottom: 15px;
  }
  
  footer p, footer .footer-links {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  footer p, footer .footer-links {
    font-size: 0.85rem;
  }
  
  footer .footer-links a {
    font-size: 0.85rem;
  }
}

.btn-book {
  background-color: #641B2E;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #4a1422;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 27, 46, 0.4);
}

.btn-book span { 
  margin-left: auto; 
}

@media (max-width: 768px) {
  .btn-book {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  .btn-book {
    font-size: 1rem;
    padding: 10px 16px;
  }
}

.lets-talk-btn {
  background-color: #641B2E;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: none;
  margin-top: 20px;
}

.lets-talk-btn:hover {
  background-color: #4a1422;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 27, 46, 0.4);
  color: white;
}

.lets-talk-btn i {
  margin-right: 8px;
}

.hero-tagline {
  font-size: 8.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
  display: block;
  letter-spacing: 0.5px;
  text-align: left;
  line-height: 1.3;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
  color: #fff;
  margin-bottom: 0;
}

.hero-title .highlight {
  color: #BE5B50;
  font-weight: 900;
}

.hero-section a {
  background-color: #641B2E;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero-section a:hover {
  background-color: #4a1422;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 27, 46, 0.4);
}

@media (max-width: 992px) {
  .hero-title { 
    font-size: 4.3rem;
    text-align: left;
    line-height: 1.1;
  }
  .hero-tagline { 
    text-align: left;
    font-size: 7.5rem;
  }
  .compliance-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4.3rem;
    text-align: left;
    transform: rotate(-1deg);
    line-height: 1.1;
  }
  .hero-tagline { 
    text-align: left;
    font-size: 6.6rem;
  }
  .compliance-text {
    font-size: 3rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 4.3rem;
    text-align: left;
    transform: rotate(0deg);
    line-height: 1.1;
  }
  .hero-tagline { 
    text-align: left;
    font-size: 5.4rem;
  }
  .compliance-text {
    font-size: 2.5rem;
    padding: 10px;
  }
}

.hero-subtitle {
  text-align: left;
  color: #2c2c2c;
}

/* NEW: Compliance Text Styling */
.compliance-text {
  font-size: 6.5rem;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: 0.5px;
  margin: 0;
  padding: 20px;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .compliance-text {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .compliance-text {
    font-size: 2.5rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .compliance-text {
    font-size: 2rem;
    padding: 10px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 4.3rem;
    line-height: 1.1;
  }
  .hero-tagline {
    font-size: 4.5rem;
  }
  .compliance-text {
    font-size: 2rem;
  }
}

.business-title {
  font-size: 3rem;
  letter-spacing: 2px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .business-title { 
    font-size: 3rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .business-title {
    font-size: 3rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .crazy-underline { 
    font-size: 1.5rem; 
  }
}

@media (max-width: 576px) {
  .crazy-underline { 
    font-size: 1.1rem; 
  }
}

@keyframes wiggle {
  0%, 100% { transform: skewY(-2deg) rotate(-1deg); }
  25% { transform: skewY(2deg) rotate(1deg); }
  50% { transform: skewY(-1deg) rotate(-2deg); }
  75% { transform: skewY(1deg) rotate(0deg); }
}

section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  section h2 { 
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 400px) {
  section h2 {
    font-size: 1.8rem;
  }
}

.growth-package-row {
  padding: 35px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 10px;
}

.growth-package-row:last-child {
  border-bottom: none;
}

.package-name {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  padding: 8px 20px;
  color: #111;
  border-radius: 8px;
}

.badge-branding {
  color: #8b7355;
}

.badge-ecommerce {
  background: #6b9080;
}

.badge-product {
  color: #a88f6f;
}

@media (max-width: 768px) {
  .package-name {
    font-size: 2.3rem;
    padding: 6px 15px;
  }
  
  .package-details-list li {
    font-size: 0.95rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
  }
  
  .growth-package-row {
    padding: 25px 0;
  }
  
  .crazy-number {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    margin-right: 10px;
  }
}

@media (max-width: 576px) {
  .package-name {
    font-size: 2.1rem;
    padding: 5px 12px;
  }
  
  .package-details-list li {
    font-size: 0.9rem;
  }
  
  .growth-package-row {
    padding: 20px 0;
  }
  
  .crazy-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    margin-right: 8px;
  }
}

/* Make Client Logos Smaller */
.client-badge img {
  width: 80px !important;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.client-badge img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 768px) {
  .client-badge img {
    width: 60px !important;
  }
}

@media (max-width: 480px) {
  .client-badge img {
    width: 50px !important;
  }
}

/* Copy Badge Style */
.copy-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #f5f5f5;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  user-select: none;
}

.copy-badge:hover {
  background: #e6e6e6;
}

.copy-badge:active {
  background: #dcdcdc;
}

/* ===== FORM INPUT STYLES - NEW CHANGES ===== */
#bookingForm .form-control,
#bookingForm .form-select,
#bookingForm select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #641B2E;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

#bookingForm .form-control:focus,
#bookingForm .form-select:focus,
#bookingForm select:focus {
  border-color: #8A2D3B;
  box-shadow: 0 0 0 3px rgba(100, 27, 46, 0.1);
  outline: none;
}

#bookingForm .form-label {
  font-weight: 600;
  color: #641B2E;
  margin-bottom: 8px;
  font-size: 1rem;
}
