* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", "Segoe UI", sans-serif;
    background: #ffffff;
    min-height: 100vh;
    color: #1a1a1a;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1d3557 0%, #2a5078 100%);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(242, 103, 70, 0.15) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(51, 163, 227, 0.15) 0%, transparent 50%);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-flag {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.flag-stripe {
    width: 70px;
    height: 18px;
    border-radius: 4px;
}

.flag-green {
    background: #006a4e;
    flex: 2;
}

.flag-red {
    background: #f42a41;
    width: 35px;
    border-radius: 50%;
}

.hero-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 50%, #006a4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-stat {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #f26746;
}

.hero-stat-number {
    font-size: 42px;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    animation: slideInRight 1s ease;
}

.hero-image {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, #006a4e 0%, #f26746 50%, #33a3e3 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(242, 103, 70, 0.3);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 60%
        );
    animation: shimmer 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%,
    100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

.badge-1 {
    top: 50px;
    right: -30px;
}

.badge-2 {
    bottom: 50px;
    left: -30px;
    animation-delay: 1.5s;
}

.badge-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

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

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

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

/* SECTIONS */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        #f26746 10%,
        #33a3e3 50%,
        #006a4e 90%,
        transparent
    );
    transform: translateX(-50%);
}

.section {
    background: #ffffff;
    border-radius: 30px;
    padding: 0;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid #f5f5f5;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(242, 103, 70, 0.2);
    border-color: #f26746;
}

.section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #f26746;
    border-radius: 50%;
    border: 4px solid #ffffff;
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(242, 103, 70, 0.2);
}

.section:first-child::before {
    display: none;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.section:nth-child(even) .section-grid {
    direction: rtl;
}

.section:nth-child(even) .section-content {
    direction: ltr;
}

.section-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.section-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(0, 0, 0, 0.1) 0%,
            transparent 50%
        );
}

.section-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.section-number {
    font-size: 13px;
    font-weight: 700;
    color: #f26746;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1d3557 0%, #f26746 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.section-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 15px;
    border-left: 4px solid #f26746;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #fff5f2;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(242, 103, 70, 0.2);
}

.feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #f26746;
    background: #fff5f2;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(242, 103, 70, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.glass-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(242, 103, 70, 0.3);
    border-radius: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #f26746;
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-family: "Poppins", sans-serif;
}

/* LEARN MORE BUTTON */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(242, 103, 70, 0.3);
    align-self: flex-start;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(242, 103, 70, 0.4);
}

.learn-more-btn svg {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover svg {
    transform: translateX(5px);
}

/* MODAL */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    position: relative;
    max-width: 1100px;
    width: 100%;
    max-height: 90vh;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: #f26746;
    transform: rotate(90deg);
}

.modal-close:hover svg {
    color: white;
}

.modal-close svg {
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.modal-content {
    overflow-y: auto;
    max-height: 90vh;
    padding: 60px;
    scroll-behavior: smooth;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    border-radius: 10px;
}

.modal-header {
    margin-bottom: 40px;
}

.modal-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1d3557 0%, #f26746 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
    font-family: "Poppins", sans-serif;
}

.modal-subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 400;
    line-height: 1.6;
}

.modal-section {
    margin-bottom: 50px;
}

.modal-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-section-title::before {
    content: "";
    width: 5px;
    height: 30px;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    border-radius: 10px;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    padding: 20px 25px;
    background: #f9f9f9;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #f26746;
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 70px;
}

.modal-list li:hover {
    background: #fff5f2;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(242, 103, 70, 0.15);
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.modal-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.modal-stat {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modal-stat:hover {
    border-color: #f26746;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 103, 70, 0.2);
}

.modal-stat-number {
    font-size: 42px;
    font-weight: 900;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #f26746 0%, #33a3e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.modal-stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

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

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

    .hero-image {
        height: 400px;
    }

    .floating-badge {
        display: none;
    }

    .section-grid {
        grid-template-columns: 1fr;
    }

    .section:nth-child(even) .section-grid {
        direction: ltr;
    }

    .section-image {
        height: 350px;
    }

    .section-content {
        padding: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .container::before {
        display: none;
    }

    .modal-content {
        padding: 40px 25px;
    }

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

    .modal-section-title {
        font-size: 24px;
    }

    .modal-image {
        height: 250px;
    }

    .modal-list li {
        padding-left: 25px;
        font-size: 15px;
    }

    .modal-list li::before {
        display: none;
    }

    .modal-stats {
        grid-template-columns: 1fr;
    }
}
