a{
    color: initial;
}

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

.py-6{
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.text-gradient{
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-secondary-warm{
  background-color: var(--bg-secondary) !important;
}

.company-logo{
    width: 180px;
}

.icon-circular{
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  background-image: var(--bg-gradient);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

i.icon-circular:hover{
  background-color: var(--primary-color);
  color: var(--secondary-color);
}


/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: var(--space-xl);
}

.section-badge {
    display: inline-block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    background: var(--bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 1200px;
    margin: 0 auto;
}

.separator{
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* ===== ABOUT SECTION ===== */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--bg-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-content p {
    margin-bottom: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border: 4px solid var(--gold-color);
}

.about-stats {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}


/* ===== TOURS SECTION ===== */
.tours-section {
    background-color: var(--bg-primary);
}

.package-card-slider{
    padding: 3rem 1px;
    margin: -3rem 0;
}

.tour-card {
    background-color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
}

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

.tour-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--bg-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.tour-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.tour-card:hover .tour-overlay {
    opacity: 1;
}

.tour-content {
    padding: var(--space-lg);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.stars {
    color: var(--gold-color);
}

.rating-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.tour-title {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.tour-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.tour-destinations {
    margin-bottom: var(--space-md);
}

.tour-destinations small {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tour-price {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tour-price small{
    font-size: 10px;
    line-height: 1;
}

.current-price {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

.original-price {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.tour-actions {
    display: flex;
    gap: 0.5rem;
}

.tour-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}


/* Buttons */
.btn {
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-md);
    padding: 0.75rem 2rem;
    border: none;
    transition: all var(--transition-normal);
    text-transform: none;
    letter-spacing: 0.025em;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: var(--bg-gradient);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--text-primary);
    border: 2px solid var(--gold-color);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold-color);
    border-color: var(--gold-color);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}


/* custom swiper controls */
.swiper-bottom-controls{
    margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

div[class^="swiper-button"] {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  border-radius: 50%;
  border: 1px solid var(--text-secondary);
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

div[class^="swiper-button"].sm{
  width: calc(var(--swiper-navigation-size) / 2 + 5px);
  height: calc(var(--swiper-navigation-size) / 2 + 5px);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2 - 10px));
}

div[class^="swiper-button"]:hover{
  color: var(--secondary-color);
}

div[class^="swiper-button"]::after{
  color: inherit;
  font-size: 1rem;
}

div[class^="swiper-button"].sm::after{
  font-size: .75rem;
}

.swiper-control{
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}

.swiper-bottom-controls *[class^="swiper-"],
.swiper-control *[class^="swiper-"]{
  position: static;
}

.swiper-control .swiper-pagination{
  transform: none;
}

.swiper-control .swiper-pagination .swiper-pagination-bullet{
  background-color: var(--primary-color);
}

.swiper-bottom-controls div[class^="swiper-button"],
.swiper-control div[class^="swiper-button"]{
  margin-top: 0;
}

.swiper-pagination-bullet{
  background-color: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active{
  opacity: 1;
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */


/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-float a {
    width: 3.5rem;
    height: 3.5rem;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3rem;
    height: 3rem;
    background: var(--bg-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    /* About section */
    .about-stats {
        position: static;
        margin-top: var(--space-lg);
        grid-template-columns: repeat(2, 1fr);
    }
    .section-header {
        text-align: center;
    }
    
    /* Floating buttons */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
    }
    
    /* Tours */    
    .tour-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-nav,
    .scroll-indicator,
    .whatsapp-float,
    .back-to-top,
    .modal {
        display: none !important;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

