/* ========== GLOBAL STYLES ========== */
/* Cache bust: Featured Press section deployment */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #030810;
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== HEADER & NAVIGATION ========== */
.navbar-header {
    background: linear-gradient(135deg, #020b16 0%, #0d1f2d 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.logo-text h2 {
    color: #ffd700;
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #b0b0b0;
    margin: 0;
}

.navbar {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 5px 0;
    border-radius: 2px;
    transition: 0.3s;
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(0,0,0,.5), rgba(13,31,45,.5)), 
                url('images/Banner.png') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid #ffd700;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 70px;
    color: #ffd700;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 15px;
    color: #e0e0e0;
    font-weight: 500;
}

.hero-subtitle span {
    color: #ffd700;
    font-weight: 600;
}

.hero-desc {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b0b0b0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
    position: relative;
    animation: fadeInRight 0.8s ease;
}

.image-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

.founder-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    border: 4px solid #ffd700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.founder-details {
    text-align: center;
    margin-top: 40px;
}

.founder-details h3 {
    color: #ffd700;
    font-size: 28px;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.founder-details p {
    color: #b0b0b0;
    font-size: 16px;
}

.exp-badge {
    display: inline-block;
    margin-top: 10px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 45px;
    color: #ffd700;
    font-family: 'Cinzel', serif;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 16px;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #030810 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #d0d0d0;
}

.about-text strong {
    color: #ffd700;
}

.quotes-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.quote-box {
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-left: 6px solid #ffd700;
    backdrop-filter: blur(10px);
}

.quote-icon {
    font-size: 50px;
    color: #ffd700;
    opacity: 0.3;
    margin-bottom: 10px;
}

.quote1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
    border-left-color: #ffd700;
}

.quote2 {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(79, 195, 247, 0.02));
    box-shadow: 0 0 30px rgba(79, 195, 247, 0.2);
    border-left-color: #4fc3f7;
}

.quote-box p {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    color: #ffffff;
}

.quote-highlight {
    margin-top: 15px;
    color: #ffed4e;
    font-weight: 500;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #030810 0%, #0d1f2d 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #0e1c31 0%, #0a121f 100%);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: #ffed4e;
}

.service-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: bounce 2s ease infinite;
}

.service-card h3 {
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 12px;
    font-family: 'Cinzel', serif;
}

.service-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: #d0d0d0;
    font-size: 14px;
    margin: 8px 0;
}

/* ========== PACKAGES SECTION ========== */
.packages-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #030810 100%);
}

.currency-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ffd700;
    color: #000000;
    transform: scale(1.05);
}

.package-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-grid.active-tab {
    display: grid !important;
}

.package-card {
    background: linear-gradient(135deg, #0e1c31 0%, #0a121f 100%);
    padding: 35px 25px;
    border-radius: 15px;
    border: 2px solid #404040;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.package-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid #ffd700;
}

.package-badge.featured {
    background: #ffd700;
    color: #000000;
}

.package-badge.vip {
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    color: #ffffff;
    border: none;
}

.package-name {
    color: #ffd700;
    font-size: 24px;
    margin: 15px 0 20px;
    font-family: 'Cinzel', serif;
}

.package-price {
    font-size: 40px;
    color: #ffd700;
    font-weight: 700;
    margin: 20px 0;
    font-family: 'Cinzel', serif;
}

.package-features {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    min-height: 200px;
}

.package-features li {
    color: #d0d0d0;
    font-size: 14px;
    margin: 10px 0;
    line-height: 1.6;
}

.btn-package {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 2px solid #ffd700;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: #ffd700;
    color: #000000;
}

.btn-featured {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    border: none;
}

.btn-vip {
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    color: #ffffff;
    border: none;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #030810 0%, #0d1f2d 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(79, 195, 247, 0.05));
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ffd700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}

.rating {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #d0d0d0;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

.testimonial-cta {
    text-align: center;
}

/* ========== FEATURED PRESS SECTION ========== */
.featured-press-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #030810 100%);
}

.featured-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-article-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(79, 195, 247, 0.08));
    padding: 35px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.featured-article-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-article-card:hover {
    transform: translateY(-10px);
    border-color: #ffd700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.featured-article-card:hover::before {
    opacity: 1;
}

.article-source {
    margin-bottom: 15px;
}

.publication-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.featured-article-card h3 {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 1;
}

.article-excerpt {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.article-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.read-more {
    color: #ffd700;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1;
}

.featured-article-card:hover .read-more {
    transform: translateX(5px);
}

/* ========== CONSULTATION SECTION ========== */
.consultation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f2d 0%, #030810 100%);
}

.consultation-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    border: 2px solid #404040;
    border-radius: 8px;
    font-size: 15px;
    background: #0a121f;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.form-note {
    color: #b0b0b0;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #030810 0%, #0d1f2d 100%);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    background: linear-gradient(135deg, #0e1c31 0%, #0a121f 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ffd700;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
}

.contact-item p {
    color: #d0d0d0;
}

.contact-item a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffed4e;
    text-decoration: underline;
}

.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-links h3 {
    color: #ffd700;
    margin-bottom: 25px;
    font-family: 'Cinzel', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid #ffd700;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #000000;
    transform: translateY(-3px);
}

/* ========== FLOATING WHATSAPP BUTTON ========== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-btn:hover {
    background: #20ba56;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #020b16 0%, #0d1f2d 100%);
    padding: 40px 0 20px;
    border-top: 2px solid #ffd700;
    text-align: center;
}

.footer-content h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-size: 24px;
}

.footer-content p {
    color: #b0b0b0;
    margin: 5px 0;
}

.copyright {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #404040;
    font-size: 13px;
}

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

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

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

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 45px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .hero-image {
        width: 100%;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .featured-article-card {
        padding: 25px;
    }

    .featured-article-card h3 {
        font-size: 16px;
    }

    .article-excerpt {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-grid,
    .package-grid,
    .testimonials-grid,
    .featured-articles-grid {
        grid-template-columns: 1fr;
    }

    .logo-text h2 {
        font-size: 18px;
    }

    nav ul {
        gap: 15px;
    }
}
