/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-img {
    height: 40px;
    width: auto;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffa500;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ffa500;
    color: #000000;
}

.btn-primary:hover {
    background: #ff8c00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffa500;
    border: 2px solid #ffa500;
}

.btn-secondary:hover {
    background: #ffa500;
    color: #000000;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

/* Image Placeholders */
.image-placeholder {
    background: rgba(255, 165, 0, 0.1);
    border: 2px dashed #ffa500;
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: #ffa500;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-placeholder small {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 250px;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background: #000000;
}

.section-title {
    font-size: 2.5rem;
    color: #ffa500;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 2.5rem;
    border: 2px solid #333333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-8px);
    border-color: #ffa500;
    box-shadow: 0 20px 40px rgba(255, 165, 0, 0.2);
}

.package-card.featured {
    border-color: #ffa500;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-card.premium {
    border-color: #ffa500;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffa500;
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 12px 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #ffa500;
}

.package-icon i {
    font-size: 2rem;
    color: #ffa500;
}

.package-title {
    font-size: 2rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-subtitle {
    color: #ffffff;
    opacity: 0.8;
    font-size: 1.1rem;
}

.package-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature i {
    color: #ffa500;
    font-size: 1.1rem;
    width: 20px;
}

.feature span {
    color: #ffffff;
    font-size: 1rem;
}

.package-details {
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.detail-item i {
    color: #ffa500;
    width: 20px;
}

.detail-item span {
    color: #ffffff;
    font-size: 0.95rem;
}

.package-footer {
    text-align: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111111;
}

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

.about-subtitle {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.credentials {
    margin: 2rem 0;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffa500;
}

.credential-item i {
    color: #ffa500;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.credential-item h4 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.credential-item p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.experience-highlights {
    margin-top: 2rem;
}

.experience-highlights h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-highlights ul {
    list-style: none;
    padding: 0;
}

.experience-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0.9;
}

.experience-highlights li:before {
    content: "▶";
    color: #ffa500;
    position: absolute;
    left: 0;
}

/* Package Pricing */
.package-price {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 0.5rem;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.value-badge {
    display: inline-block;
    background: #ffa500;
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced Premium Package Styling */
.package-card.premium .package-price {
    background: rgba(255, 165, 0, 0.1);
    border-radius: 12px;
    border: 2px solid #ffa500;
}

.package-card.premium .price {
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #ffa500;
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #ffa500;
}

.benefit-icon i {
    font-size: 2rem;
    color: #ffa500;
}

.benefit-item h3 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #111111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 165, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid #ffa500;
}

.contact-item i {
    color: #ffa500;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #ffa500;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
}

/* WhatsApp Section */
.contact-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-section {
    text-align: center;
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #333333;
    max-width: 500px;
    width: 100%;
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid #25d366;
}

.whatsapp-icon i {
    font-size: 3rem;
    color: #25d366;
}

.whatsapp-section h3 {
    color: #ffa500;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.whatsapp-section p {
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.whatsapp-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333333;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .image-placeholder {
        padding: 2rem;
        min-height: 200px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
}

