/* Enhanced Intro Section */
.intro {
    max-width: 1200px;
    margin: 100px auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #ff9800, #ffd700);
    border-radius: 2px;
}

.intro h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff9800, #ffd700);
    border-radius: 2px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.intro-text {
    text-align: left;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.intro-text p::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff9800;
    font-weight: bold;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff9800;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.feature-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .intro-text {
        text-align: center;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Tabs */
.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 80px 0 40px;
    padding: 0 20px;
}

.tab {
    padding: 15px 30px;
    background: white;
    border-radius: 50px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff9800, #ffd700);
    transition: left 0.3s ease;
    z-index: -1;
}

.tab.active::before {
    left: 0;
}

.tab.active {
    color: white;
    border-color: #ff9800;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.3);
}

.tab:hover:not(.active) {
    border-color: #ff9800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Enhanced Package Cards */
.packages {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    height: 0;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages.active {
    opacity: 1;
    visibility: visible;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.packages.active .card {
    animation: cardSlideUp 0.6s ease forwards;
}

.packages.active .card:nth-child(1) {
    animation-delay: 0.1s;
}

.packages.active .card:nth-child(2) {
    animation-delay: 0.2s;
}

.packages.active .card:nth-child(3) {
    animation-delay: 0.3s;
}

.packages.active .card:nth-child(4) {
    animation-delay: 0.4s;
}

.packages.active .card:nth-child(5) {
    animation-delay: 0.5s;
}

.packages.active .card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-duration {
    background: linear-gradient(45deg, #ff9800, #ffd700);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.card a {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff9800, #ffd700);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
    background: linear-gradient(45deg, #ffd700, #ff9800);
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages.active {
        grid-template-columns: 1fr;
    }
}

/* Your Custom Footer Design */
/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff6600;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6600;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6600, #ff9900);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.footer-social a {
    color: #fff;
    padding: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 18px;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
}

.footer-social a:hover {
    background-color: #ff9900;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-social {
        margin-top: 10px;
        text-align: center;
    }
}