/* =====================================
   LEXOR TOURISM - MEDICA 2026
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================
   HERO
===================================== */

.hero {
    position: relative;
    width: 100%;
    background: linear-gradient(
        135deg,
        #07172c,
        #16345d,
        #204c84
    );
    padding: 120px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-tag {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 10px 30px;
    border-radius: 40px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 70px;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero h1 span {
    color: #d4af37;
}

.hero h2 {
    color: #d4af37;
    font-size: 34px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* =====================================
   HERO BUTTONS
===================================== */

.hero-buttons {
    margin-top: 40px;
}

.hero-buttons a {
    display: inline-block;
    text-decoration: none;
    margin: 10px;
    padding: 16px 38px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
}

.hero-buttons .btn.gold {
    background: #d4af37;
    color: #111;
}

.hero-buttons .btn.gold:hover {
    background: #f5cf5a;
    transform: translateY(-3px);
}

.hero-buttons .btn.white {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-buttons .btn.white:hover {
    background: #ffffff;
    color: #0b2f63;
    transform: translateY(-3px);
}

.btn-gold {
    background: #d4af37;
    color: #111;
}

.btn-gold:hover {
    background: #f5cf5a;
}

.btn-dark {
    border: 2px solid #d4af37;
    color: #fff;
    background: transparent;
}

.btn-dark:hover {
    background: #d4af37;
    color: #111;
}


/* =====================================
   MEDICA 2026 BROCHURE
===================================== */

.medica-brochure-section {
    width: 100%;
    display: block;
    background: #ffffff;
    padding: 60px 20px;
    position: relative;
    overflow: visible;
}

.medica-brochure-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
    display: block;
    position: relative;
}

.medica-brochure-image {
    display: block !important;
    width: 100% !important;
    max-width: 1100px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    object-fit: contain !important;
    position: relative;
    z-index: 5;
    border-radius: 15px;
}


/* =====================================
   STATISTICS
===================================== */

.stats {
    width: 100%;
    background: #ffffff;
    padding: 60px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 30px 15px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-box h2 {
    color: #0b2f63;
    font-size: 36px;
    margin-bottom: 8px;
}

.stat-box p {
    color: #555;
    font-size: 16px;
}


/* =====================================
   ABOUT
===================================== */

.about {
    background: #f7f7f7;
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    color: #0b2f63;
    font-size: 42px;
    margin-bottom: 30px;
}

.about p {
    max-width: 950px;
    margin: 0 auto 25px;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}


/* =====================================
   FEATURES
===================================== */

.features {
    background: #ffffff;
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    color: #0b2f63;
    font-size: 42px;
    margin-bottom: 45px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.feature h3 {
    color: #0b2f63;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature p {
    color: #555;
    line-height: 1.7;
}


/* =====================================
   MEDICA PACKAGES
===================================== */

.packages {
    width: 100%;
    background: #f8f9fc;
    padding: 80px 0;
}

.packages .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages h2 {
    font-size: 42px;
    text-align: center;
    color: #0b2f63;
    margin-bottom: 35px;
    line-height: 1.2;
}

.packages h3 {
    color: #0b2f63;
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.intro {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}


/* =====================================
   PACKAGE INFORMATION BOXES
===================================== */

.info-list,
.process-list {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
}

.info-list li,
.process-list li {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.info-list li:last-child,
.process-list li:last-child {
    margin-bottom: 0;
}


/* =====================================
   MEDICA PACKAGES IMAGE
===================================== */

.package-image {
    display: block;
    width: 100%;
    max-width: 1100px;
    height: auto;
    margin: 35px auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .package-image {
        width: 100%;
        margin: 25px auto;
        border-radius: 10px;
    }
}


/* =====================================
   PAYMENT BOX
===================================== */

.payment-box {
    background: #ffffff;
    border-left: 6px solid #d4af37;
    padding: 35px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.payment-box h3 {
    margin-top: 0;
    color: #0b2f63;
}

.payment-box p {
    line-height: 1.8;
    color: #444;
}

.payment-box ul {
    margin: 20px 0;
    padding-left: 20px;
}

.payment-box li {
    margin-bottom: 12px;
    color: #333;
}


/* =====================================
   PACKAGE BUTTONS
===================================== */

.package-buttons {
    text-align: center;
    margin-top: 50px;
}

.package-buttons a {
    display: inline-block;
    padding: 16px 35px;
    margin: 10px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s ease;
}

.package-buttons .btn-gold {
    background: #d4af37;
    color: #111;
}

.package-buttons .btn-gold:hover {
    background: #c49a1f;
    color: #fff;
}

.package-buttons .btn-dark {
    background: #0b2f63;
    color: #fff;
    border: none;
}

.package-buttons .btn-dark:hover {
    background: #082347;
}


/* =====================================
   DOCUMENT DOWNLOAD
===================================== */

.documents-section {
    width: 100%;
    background: #f8f9fc;
    padding: 80px 0;
}

.document-card {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.document-icon {
    width: 75px;
    min-width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0b2f63;
    color: #d4af37;
    border-radius: 15px;
    font-size: 32px;
}

.document-content {
    flex: 1;
}

.section-tag {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.document-content h3 {
    color: #0b2f63;
    font-size: 28px;
    margin-bottom: 15px;
}

.document-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.document-content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

.document-content li {
    margin-bottom: 10px;
    color: #333;
}

.document-content li i {
    color: #d4af37;
    margin-right: 8px;
}


/* =====================================
   DOCUMENT BUTTONS
===================================== */

.document-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.download-btn,
.consult-btn {
    display: inline-block;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.download-btn {
    background: #d4af37;
    color: #111;
}

.download-btn:hover {
    background: #c49a1f;
    color: #fff;
}

.consult-btn {
    background: #0b2f63;
    color: #ffffff;
}

.consult-btn:hover {
    background: #082347;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 900px) {

    .hero {
        padding: 90px 0;
    }

    .hero h1 {
        font-size: 55px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .package-image,
    .medica-brochure-image {
        width: 100% !important;
        max-width: 100% !important;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        margin-top: 25px;
    }

    .hero-buttons a {
        display: block;
        width: 90%;
        margin: 12px auto;
    }


    /* BROCHURE */

    .medica-brochure-section {
        padding: 35px 15px;
    }

    .medica-brochure-container {
        width: 100%;
        max-width: 100%;
    }

    .medica-brochure-image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        border-radius: 10px;
    }


    /* STATISTICS */

    .stats {
        padding: 45px 0;
    }

    .stats .container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 20px 10px;
    }

    .stat-box h2 {
        font-size: 28px;
    }


    /* ABOUT */

    .about {
        padding: 60px 0;
    }

    .about h2 {
        font-size: 32px;
    }

    .about p {
        font-size: 16px;
    }


    /* FEATURES */

    .features {
        padding: 60px 0;
    }

    .features h2 {
        font-size: 32px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* PACKAGES */

    .packages {
        padding: 60px 0;
    }

    .packages .container {
        width: 92%;
        padding: 0;
    }

    .packages h2 {
        font-size: 32px;
    }

    .packages h3 {
        font-size: 24px;
    }

    .intro {
        font-size: 16px;
    }

    .info-list,
    .process-list {
        padding: 22px;
    }

    .package-image {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 30px auto !important;
        border-radius: 10px;
    }

    .package-buttons a {
        display: block;
        width: 100%;
        margin: 12px 0;
    }


    /* PAYMENT */

    .payment-box {
        padding: 25px;
    }


    /* DOCUMENTS */

    .documents-section {
        padding: 60px 0;
    }

    .document-card {
        flex-direction: column;
        padding: 25px;
    }

    .document-icon {
        width: 65px;
        min-width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .document-content h3 {
        font-size: 23px;
    }

    .document-buttons {
        flex-direction: column;
    }

    .download-btn,
    .consult-btn {
        width: 100%;
        text-align: center;
    }
}


/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .hero-tag,
    .hero-badge {
        font-size: 12px;
        padding: 9px 18px;
    }

    .stats .container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 20px;
    }

    .packages h2 {
        font-size: 28px;
    }

    .package-image {
        border-radius: 8px;
    }

    .medica-brochure-section {
        padding: 25px 10px;
    }
}