/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
             --pallid-yellow: #D4AF37;
             --pallid-yellow-dark: #e6a800;
            --pallid-yellow-light: #F1E5C9;
            --pallid-yellow-dark: #996515;
            --pallid-black: #1A1A1A;
            --pallid-black-light: #2C2C2C;
            --pallid-white: #FFFFFF;
            --pallid-cream: #FAF7F2;
            --pallid-gray: #F5F5F5;
            --safari-terracotta: #C76A3C;
            --safari-olive: #5A6D4A;
            --safari-sand: #E5D3B0;
            --whatsapp-green: #25D366;
            --pallid-gray-dark: #343a40;
            --pallid-gray-light: #e9ecef;
            --pallid-text: #2c3e50;
            
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-yellow: 0 5px 20px rgba(255, 193, 7, 0.3);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--pallid-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--pallid-white);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--pallid-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--pallid-yellow);
}

.section-subtitle::before {
    left: -40px;
}

.section-subtitle::after {
    right: -40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--pallid-black);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--pallid-gray-dark);
    font-size: 1.1rem;
}

.yellow-text {
    color: var(--pallid-yellow);
    position: relative;
    display: inline-block;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--pallid-yellow);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-yellow);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: var(--pallid-yellow);
    border-color: var(--pallid-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-primary i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--pallid-black);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--pallid-yellow);
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

.btn-outline-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--pallid-white);
    text-decoration: none;
    font-weight: 700;
    border: 2px solid var(--pallid-white);
    border-radius: 50px;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.btn-outline-light:hover {
    background: var(--pallid-white);
    color: var(--pallid-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--pallid-black);
    color: var(--pallid-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--pallid-black);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--pallid-yellow);
    border-color: var(--pallid-yellow);
    color: var(--pallid-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pallid-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--pallid-gray-light);
    border-top-color: var(--pallid-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
}
.hero-content-landing {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--pallid-white);
    max-width: 700px;
    z-index: 3;
    animation: fadeInUp 1s ease;
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 40px 0;
    margin-left: 10%;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Decorative left border */
.hero-content::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 20px;
    bottom: 20px;
    width: 4px;
    background: linear-gradient(180deg, 
        #D4AF37 0%, 
        rgba(212, 175, 55, 0.5) 70%,
        transparent 100%);
    border-radius: 4px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--pallid-yellow);
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--pallid-yellow);
    transform: translateY(-50%);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

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

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--pallid-white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: var(--pallid-yellow);
    border-color: var(--pallid-yellow);
    color: var(--pallid-black);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background: var(--pallid-yellow);
    transform: scale(1.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--pallid-white);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    display: block;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--pallid-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 6rem 0;
    background: var(--pallid-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--pallid-white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--pallid-yellow);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--pallid-yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pallid-yellow);
    transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    background: var(--pallid-yellow);
    color: var(--pallid-black);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pallid-black);
}

.feature-card p {
    color: var(--pallid-gray-dark);
    line-height: 1.7;
}

/* ===== POPULAR SAFARIS ===== */
.popular-safaris {
    padding: 6rem 0;
    background: var(--pallid-gray);
}

.safari-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.safari-card {
    background: var(--pallid-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.safari-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.safari-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.card-duration {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--pallid-white);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.card-duration i {
    margin-right: 0.3rem;
    color: var(--pallid-yellow);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--pallid-black);
}

.card-rating {
    margin-bottom: 1rem;
}

.card-rating i {
    color: var(--pallid-yellow);
    font-size: 0.9rem;
}

.card-rating span {
    margin-left: 0.5rem;
    color: var(--pallid-gray-dark);
    font-size: 0.9rem;
}

.card-description {
    color: var(--pallid-gray-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-features span {
    font-size: 0.85rem;
    color: var(--pallid-gray-dark);
}

.card-features i {
    color: var(--pallid-yellow);
    margin-right: 0.3rem;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--pallid-gray-light);
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.card-price .from {
    font-size: 0.85rem;
    color: var(--pallid-gray-dark);
}

.card-price .amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pallid-yellow);
}

.card-price .per {
    font-size: 0.85rem;
    color: var(--pallid-gray-dark);
}

.section-footer {
    text-align: center;
    color: var(--pallid-yellow);
}
/* ===== TRIPADVISOR REVIEWS SECTION ===== */
.tripadvisor-reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.tripadvisor-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pallid-yellow), transparent);
}

/* TripAdvisor Widget Container */
.ta-widget-container {
    margin-bottom: 3rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pallid-yellow);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar i {
    font-size: 2.5rem;
    color: var(--pallid-yellow);
}

.reviewer-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pallid-black);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.3rem;
    flex-wrap: wrap;
}

.review-date {
    font-size: 0.8rem;
    color: var(--pallid-gray-dark);
}

.review-badge {
    font-size: 0.75rem;
    color: #00aa6c;
    background: #e8f5e9;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.review-badge i {
    font-size: 0.7rem;
}

.review-rating i {
    color: var(--pallid-yellow);
    font-size: 0.9rem;
    margin-left: 0.1rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--pallid-text);
    margin-bottom: 1.5rem;
    flex: 1;
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid var(--pallid-yellow);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--pallid-gray-light);
}

.trip-type {
    font-size: 0.85rem;
    color: var(--pallid-gray-dark);
    background: var(--pallid-gray);
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.trip-type i {
    margin-right: 0.3rem;
    color: var(--pallid-yellow);
}

.read-more {
    font-size: 0.85rem;
    color: var(--pallid-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.read-more:hover {
    color: var(--pallid-black);
    transform: translateX(3px);
}

.read-more i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

#loadMoreReviews {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

#loadMoreReviews i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

#loadMoreReviews:hover i {
    transform: translateY(2px);
}

/* TA Footer */
.ta-footer {
    text-align: center;
    margin-top: 3rem;
}

.ta-footer .btn-primary {
    background: #00aa6c;
    border-color: #00aa6c;
    padding: 1rem 2.5rem;
}

.ta-footer .btn-primary:hover {
    background: transparent;
    color: #00aa6c;
}

.ta-footer .btn-primary i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .ta-footer .btn-primary {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation for new reviews */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-card {
    animation: slideIn 0.5s ease forwards;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 6rem 0;
    background: var(--pallid-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 1.5rem;
    color: var(--pallid-gray-dark);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--pallid-yellow);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--pallid-gray-dark);
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--pallid-yellow);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--pallid-black);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--pallid-black);
    font-weight: 600;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 6rem 0;
    background: var(--pallid-black);
}

.gallery-preview .section-header h2,
.gallery-preview .section-description {
    color: var(--pallid-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9) 0%, rgba(255, 193, 7, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--pallid-black);
    margin-bottom: 0.5rem;
    transform: scale(0);
    transition: var(--transition-bounce);
}

.gallery-overlay span {
    color: var(--pallid-black);
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--pallid-white);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--pallid-white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 2rem;
    color: var(--pallid-yellow);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--pallid-text);
    margin-bottom: 2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pallid-yellow);
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--pallid-black);
    font-size: 1.1rem;
}

.testimonial-author p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--pallid-gray-dark);
}

.author-rating i {
    color: var(--pallid-yellow);
    font-size: 0.8rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--pallid-yellow) 0%, #ffd54f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--pallid-black);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--pallid-black);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--pallid-black);
}

.cta-features i {
    margin-right: 0.3rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--pallid-black);
    color: var(--pallid-white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pallid-yellow), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo .logo-pallid {
    color: var(--pallid-white);
}

.footer-logo .logo-safari {
    color: var(--pallid-yellow);
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.8;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--pallid-white);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--pallid-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--pallid-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--pallid-yellow);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--pallid-yellow);
    width: 20px;
}

.footer-contact a {
    color: var(--pallid-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--pallid-yellow);
    opacity: 1;
}

/* Newsletter */
.footer-newsletter {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-newsletter h4 {
    color: var(--pallid-yellow);
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px var(--pallid-yellow);
}

.btn-subscribe {
    padding: 1rem 2rem;
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-subscribe:hover {
    background: var(--pallid-yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-yellow);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--pallid-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: var(--pallid-yellow);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 50px;
    width: 50px;
    height: 50px;
    background: var(--pallid-yellow);
    color: var(--pallid-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-yellow);
    opacity: 0;
    visibility: hidden;
}

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

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Main WhatsApp Button */
.whatsapp-main-btn {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-main-btn i {
    font-size: 40px;
    color: white;
    transition: transform 0.3s ease;
}

.whatsapp-main-btn:hover i {
    transform: scale(1.1);
}

/* Blink animation */
.whatsapp-main-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.8) 0%, rgba(37,211,102,0.2) 70%);
    animation: blink 2s ease-out infinite;
    z-index: -1;
}

/* Chat Form Container - Enhanced Design */
.whatsapp-chat-form {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: none;
    animation: slideIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.whatsapp-chat-form.active {
    display: block;
}

/* Form Header - Modern Gradient */
.chat-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
    color: white;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern in header */
.chat-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chat-header i {
    font-size: 40px;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
    animation: bounce 2s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.chat-header-content {
    position: relative;
    z-index: 1;
}

.chat-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.chat-header p {
    margin: 5px 0 0;
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.chat-header p i {
    font-size: 14px;
    animation: none;
}

.phone-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-top: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 500;
}

.phone-badge i {
    font-size: 12px;
}

/* Close button */
.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    cursor: pointer;
    font-size: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    z-index: 2;
}

.chat-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Form Body - Modern Design */
.chat-body {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Form Groups with Icons */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #25D366;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 1;
}

/* For textarea icon */
.input-icon-wrapper.textarea i {
    top: 20px;
    transform: none;
}

.form-control {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: white;
    font-family: 'Montserrat', sans-serif;
}

.form-control:hover {
    border-color: #128C7E;
}

.form-control:focus {
    outline: none;
    border-color: #25D366;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
}

textarea.form-control {
    resize: none;
    height: 100px;
    padding-top: 15px;
}

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 11px;
    color: #95a5a6;
    margin-top: 5px;
}

.char-counter i {
    font-size: 10px;
    margin-right: 3px;
}

/* Submit Button - Enhanced */
.btn-whatsapp-send {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-send::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp-send:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp-send i {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

.btn-whatsapp-send span {
    position: relative;
    z-index: 1;
}

/* Quick Options - Modern Design */
.quick-options {
    margin-top: 25px;
    text-align: center;
}

.quick-options p {
    color: #7f8c8d;
    font-size: 12px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-options p::before,
.quick-options p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #25D366, transparent);
}

.quick-options p::before {
    left: 0;
}

.quick-options p::after {
    right: 0;
}

.quick-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.quick-btn {
    padding: 10px 16px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 12px;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.quick-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Notification Badge */
.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    border: 2px solid white;
}

/* Success Message Animation */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-radius: 10px;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    animation: successPulse 1s ease;
    display: none;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes blink {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* Loading animation for submit */
.btn-whatsapp-send.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-whatsapp-send.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-main-btn {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-main-btn i {
        font-size: 32px;
    }
    
    .whatsapp-chat-form {
        width: 300px;
        bottom: 80px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-header {
        padding: 20px 15px;
    }
    
    .chat-body {
        padding: 20px;
    }
    
    .quick-btn {
        padding: 8px 12px;
        font-size: 11px;
    }
}