/* HostDime India Independence Day Landing Page - Custom Styles */

/* CSS Variables for Color Palette */
:root {
  --primary-orange: #FF6B35;
  --secondary-orange: #FF8C42;
  --accent-saffron: #FF9933;
  --accent-green: #138808;
  --white: #FFFFFF;
  --dark-gray: #2C3E50;
  --light-gray: #F8F9FA;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Button Styles */
.btn-orange {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border: none;
  color: var(--white);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-orange:hover {
  background: linear-gradient(135deg, var(--secondary-orange), var(--accent-saffron));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-orange {
  border: 2px solid var(--primary-orange);
  color: var(--primary-orange);
  background: transparent;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-orange:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Navigation Styles */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-gray) !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-orange) !important;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--primary-orange) 50%, var(--accent-green) 100%);
  color: var(--white);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flag" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="33.33" fill="%23FF9933" opacity="0.1"/><rect y="33.33" width="100" height="33.33" fill="%23FFFFFF" opacity="0.1"/><rect y="66.66" width="100" height="33.33" fill="%23138808" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23flag)"/></svg>') repeat;
  opacity: 0.3;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
                    radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
                    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent);
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.independence-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: pulse 2s infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.independence-badge i {
  color: var(--accent-saffron);
  margin-right: 10px;
  font-size: 1.1rem;
}

.offer-highlight {
  background: linear-gradient(45deg, #ff3333, #ff6b35);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 5px 15px rgba(255, 51, 51, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes glow {
  from { box-shadow: 0 5px 15px rgba(255, 51, 51, 0.5); }
  to { box-shadow: 0 8px 20px rgba(255, 51, 51, 0.7); }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
  display: block;
  font-size: 0.8em;
  margin-bottom: 10px;
}

.title-sub {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
  opacity: 0.9;
}

.hero-description {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.benefit-item i {
  color: #4ade80;
  margin-right: 12px;
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
  transform: scale(1.05);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  animation: floatIcon 3s ease-in-out infinite;
}

.floating-icon-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.floating-icon-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1s;
}

.floating-icon-3 {
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

.image-overlay-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-saffron);
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Hero CTA Buttons */
.btn-hero-primary {
  background: linear-gradient(135deg, #ff4444, #ff6b35);
  border: none;
  color: var(--white);
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 68, 68, 0.4);
}

.btn-hero-secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  font-weight: 600;
  padding: 13px 33px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-guarantees {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
  padding-bottom: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.guarantee-item i {
  color: #4ade80;
  margin-right: 10px;
  font-size: 1.1rem;
}

/* Desktop Countdown Timer - Redesigned */
.countdown-timer {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 40px;
}



.timer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.timer-header i {
  color: #fff;
  font-size: 1.4rem;
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.timer-label {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.timer-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  max-width: 550px;
}

.timer-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  border-radius: 18px;
  width: 90px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 3px rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}





.timer-unit:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), inset 0 1px 3px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.timer-unit span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.timer-unit label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}

.timer-separator {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-top: -10px;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}

@keyframes glow {
  0% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 15px 30px rgba(255, 130, 53, 0.3), inset 0 1px 3px rgba(255, 255, 255, 0.5); }
  100% { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), inset 0 1px 3px rgba(255, 255, 255, 0.3); }
}

.guarantee-badge i {
  color: var(--accent-green);
  margin-right: 8px;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

/* Offers Section */
.offers-section {
  padding: 80px 0;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.feature-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.logo-img {
  max-height: 40px;
  width: auto;
}

.feature-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
}

.discount-banner {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-orange);
}

.pricing-card.popular {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px 40px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: rotate(45deg);
}

.pricing-header h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.pricing-price {
  margin: 30px 0;
  position: relative;
}

.original-price {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  display: block;
}

.discounted-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
  margin-top: 5px;
}

.discount-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--accent-green);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--accent-green);
  margin-right: 10px;
  width: 20px;
}

.coupon-code {
  margin-top: 15px;
  padding: 10px;
  background: var(--light-gray);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.coupon-code strong {
  color: var(--primary-orange);
  font-weight: 700;
}

/* Trust Section */
.trust-section {
  padding: 80px 0;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
}

.stars {
  color: var(--accent-saffron);
  font-size: 1.2rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-title {
  color: #666;
  font-size: 0.9rem;
}

.trust-badges {
  padding-left: 40px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}

.trust-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.trust-item p {
  color: #666;
  line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background-color: #f8f9fa;
}

.overall-rating {
    margin-top: 1rem;
}

.overall-rating .stars {
    color: var(--accent-saffron);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-text {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-orange);
}

.reviewer-info h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.reviewer-title {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

.review-stars {
    color: var(--accent-saffron);
    font-size: 0.875rem;
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    margin: 0;
    color: #666;
    font-style: italic;
    line-height: 1.6;
}

.review-date {
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}

/* Features Showcase Section */
.features-showcase {
    background: white;
}

.feature-showcase-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
    border-color: var(--primary-orange);
}

.feature-showcase-icon {
    margin-bottom: 1.5rem;
}

.feature-showcase-icon .feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-showcase-card h4 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-showcase-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.feature-highlight {
    padding: 2rem 0;
}

.feature-highlight h3 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.feature-highlight .lead {
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.feature-image {
    position: relative;
}

.feature-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats/Achievements Section */
.stats-section {
    background-color: #f8f9fa;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

.stat-icon {
    color: var(--primary-orange);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #666;
    font-size: 0.875rem;
    line-height: 1.4;
}

.achievements h3 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.achievement-list {
    margin-bottom: 2rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.1);
}

.achievement-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.achievement-content h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.achievement-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.testimonial-highlight {
    padding: 1rem;
}

.testimonial-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.quote-icon {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card-large blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 2rem;
    border: none;
    padding: 0;
}

.testimonial-author-large {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.testimonial-author-large strong {
    color: var(--dark-gray);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.company-info {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Support Section */
.support-section {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  color: var(--white);
}

.bg-orange {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange)) !important;
}

.support-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.support-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.support-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--white);
}

.support-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.support-card p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.support-link {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.support-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.support-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.support-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 5px;
}

/* Footer */
.footer {
  background: var(--dark-gray) !important;
}



/* Mobile CTA */
.mobile-cta {
  margin-bottom: 20px;
  display: none; /* Hidden by default */
}

.btn-block {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  padding: 10px 5px;
  text-align: center;
}

.btn-block i {
  margin-right: 5px;
}

@media (max-width: 576px) {
  /* Smaller CTA buttons for mobile */
  .hero-cta {
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-secondary {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
  
  /* Mobile CTA buttons */
  .btn-block {
    font-size: 0.85rem;
    padding: 8px 5px;
  }
  
  /* Section CTAs for mobile */
  .text-center .btn-orange,
  .text-center .btn-light,
  .text-center .btn-outline-orange {
    font-size: 0.85rem;
    padding: 8px 15px;
    display: inline-block;
    width: auto;
    max-width: 80%;
    margin: 0 auto;
  }
}

/* Show mobile CTA only on small screens */
@media (max-width: 767.98px) {
  .mobile-cta {
    display: block;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  /* Tablet Countdown Timer */
  .countdown-timer {
    padding: 20px;
    border-radius: 20px;
  }
  
  .timer-header i {
    font-size: 1.2rem;
  }
  
  .timer-label {
    font-size: 1.1rem;
  }
  
  .timer-display {
    gap: 10px;
  }
  
  .timer-unit {
    min-width: 70px;
    width: 80px;
    height: 95px;
    padding: 10px 5px;
    border-radius: 15px;
  }
  
  .timer-unit span {
    font-size: 2.2rem;
  }
  
  .timer-unit label {
    font-size: 0.85rem;
    margin-top: 8px;
  }
  
  .timer-separator {
    font-size: 2.2rem;
    margin-top: -8px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .support-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .trust-badges {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .mobile-cta {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  /* Hide top badges on mobile */
  .hero-badge-container {
    display: none;
  }
  
  /* Modern Countdown Timer for Mobile Only */
  .countdown-timer {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    margin-bottom: 15px;
  }
  
  .timer-header {
    margin-bottom: 8px;
    justify-content: flex-start;
  }
  
  .timer-header i {
    font-size: 1rem;
    color: #fff;
  }
  
  .timer-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
  }
  
  .timer-display {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    padding: 0 5px;
  }
  
  .timer-unit {
    width: 45px;
    height: 55px;
    min-width: unset;
    padding: 3px 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  }
  
  .timer-unit span {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0;
  }
  
  .timer-unit label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0;
    opacity: 0.9;
  }
  
  .timer-separator {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    align-self: center;
    opacity: 0.8;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .feature-card,
  .pricing-card {
    margin-bottom: 30px;
  }
  
  .support-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.slide-in-up {
  animation: slideInUp 1s ease-in-out;
}

@keyframes slideInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* Freedom to Host Section */
.freedom-section {
  background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--primary-orange) 50%, var(--accent-green) 100%);
  position: relative;
  overflow: hidden;
}

.freedom-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flag-pattern" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="33.33" fill="%23FF9933" opacity="0.1"/><rect y="33.33" width="100" height="33.33" fill="%23FFFFFF" opacity="0.1"/><rect y="66.66" width="100" height="33.33" fill="%23138808" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23flag-pattern)"/></svg>') repeat;
  opacity: 0.3;
}

.freedom-highlight {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.freedom-section .btn-light {
  background: var(--white);
  color: var(--primary-orange);
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
}

.freedom-section .btn-light:hover {
  background: var(--light-gray);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.freedom-section .btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.freedom-section .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .freedom-highlight {
    padding: 30px 20px;
  }
  
  .freedom-section .section-title {
    font-size: 2rem;
  }
  
  .freedom-section h3 {
    font-size: 1.5rem;
  }
}