:root {
    --primary-color: #1A7AB0;
    --secondary-color: #ED1C24;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --white: #ffffff;
    --text-color: #333;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c9181d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 28, 36, 0.3);
}

.btn-large {
    padding: 14px 36px;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Top Bar */
.top-bar {
    background-color: #0b1e2d;
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.8rem;
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 0.9rem;
}

.hours i {
    margin-left: 8px;
    color: rgba(255,255,255,0.6);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 45px;
}

nav {
    margin-left: auto;
    margin-right: 40px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin: 0 18px;
}

nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #444;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover,
nav ul li a.active {
    color: #000;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 750px;
    background: url('assets/header.jpg') no-repeat right center/cover;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    max-width: 580px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    max-width: 520px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Trust Badges */
.trust-badges {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 50%, #F8FAFC 50%);
}

.badge-grid {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 25px 40px;
    border: 1px solid rgba(255,255,255,0.5);
}

.badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid #eee;
}

.badge-item:last-child {
    border-right: none;
}

.badge-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
}

.badge-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 0.9rem;
    color: #666;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    line-height: 1.1;
    color: #333;
    margin-bottom: 50px;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    display: flex;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-image {
    width: 45%;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--white));
}

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

.card-content {
    width: 55%;
    padding: 15px 20px;
    text-align: left;
}

.card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.card-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.card-content p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.3;
}

.service-card .btn-small {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    border-radius: 0 8px 0 0;
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Badge & Utilites */
.badge {
    background-color: rgba(26, 122, 176, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #F8FAFC;
}

.about-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-features {
    margin: 35px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    width: 100%;
}

/* Clients Section */
.clients {
    padding: 60px 0 100px;
    background-color: #F8FAFC;
    text-align: center;
}

.clients .section-title {
    margin-bottom: 60px;
}

.clients-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-slide-wrapper {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
}

.clients-slide-wrapper:hover {
    animation-play-state: paused;
}

.clients-slide-wrapper.reverse {
    animation-direction: reverse;
    margin-top: 40px;
}

.clients-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 60px;
    padding-right: 60px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo {
    transition: var(--transition);
    cursor: default;
    opacity: 0.5;
    filter: grayscale(100%);
    width: 160px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background-color: #F8FAFC;
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #444;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #ddd;
}

.stat-item.iso {
    flex-direction: row;
    align-items: center;
    background-color: #f4f4f4;
    padding: 15px 25px;
    border-radius: 50px;
}

.stat-item.iso span {
    margin-left: 15px;
    font-size: 0.9rem;
    line-height: 1.2;
}

.stat-item.contact {
    flex-direction: row;
    align-items: center;
    background-color: #f4f4f4;
    padding: 15px 25px;
    border-radius: 50px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    color: #666;
}

.contact-text strong {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #0d2c40;
    color: var(--white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 25px;
    display: block;
}

footer h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

footer ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    background-color: #0a2435;
    padding: 25px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal.left {
    transform: translateX(-60px);
}

.reveal.right {
    transform: translateX(60px);
}

.reveal.active.left,
.reveal.active.right {
    transform: translateX(0);
}

/* Staggered animations */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.active > *:nth-child(7) { transition-delay: 0.7s; }
.reveal-stagger.active > *:nth-child(8) { transition-delay: 0.8s; }
.reveal-stagger.active > *:nth-child(9) { transition-delay: 0.9s; }
.reveal-stagger.active > *:nth-child(10) { transition-delay: 1.0s; }
.reveal-stagger.active > *:nth-child(11) { transition-delay: 1.1s; }
.reveal-stagger.active > *:nth-child(12) { transition-delay: 1.2s; }
.reveal-stagger.active > *:nth-child(13) { transition-delay: 1.3s; }
.reveal-stagger.active > *:nth-child(14) { transition-delay: 1.4s; }
.reveal-stagger.active > *:nth-child(15) { transition-delay: 1.5s; }
.reveal-stagger.active > *:nth-child(16) { transition-delay: 1.6s; }
.reveal-stagger.active > *:nth-child(17) { transition-delay: 1.7s; }
.reveal-stagger.active > *:nth-child(18) { transition-delay: 1.8s; }
.reveal-stagger.active > *:nth-child(19) { transition-delay: 1.9s; }
.reveal-stagger.active > *:nth-child(20) { transition-delay: 2.0s; }

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header .container nav, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .badge-grid {
        flex-direction: column;
    }
    
    .badge-item {
        margin-bottom: 25px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }

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

    .service-card {
        flex-direction: column;
    }

    .card-image, 
    .card-content {
        width: 100%;
    }

    .card-image {
        height: 220px;
    }

    .card-content {
        padding: 20px;
    }

    .about {
        padding: 60px 0;
    }

    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .clients-track {
        gap: 30px;
    }

    .client-logo {
        font-size: 1.5rem;
    }
}

/* System Management Section */
.system-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.system-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(26, 122, 176, 0.2);
}

.system-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.system-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(26, 122, 176, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.system-card:hover .system-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.system-card-header h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    line-height: 1.3;
}

.system-card-body {
    flex: 1;
}

.system-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.system-modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
}

.system-modules li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.system-modules li i {
    color: var(--primary-color);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.system-features li {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444;
}

.system-features li i {
    color: var(--primary-color);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .system-grid {
        grid-template-columns: 1fr;
    }
    .system-modules {
        grid-template-columns: 1fr;
    }
}

/* ISO Certification Section */
.iso-certification {
    padding: 0 0 120px 0;
    background-color: #F8FAFC;
}

.iso-card {
    background: linear-gradient(135deg, #0b1e2d 0%, #1A7AB0 100%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(26, 122, 176, 0.2);
    position: relative;
    overflow: hidden;
}

.iso-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('assets/iso9001.png') no-repeat right center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.iso-icon {
    font-size: 4rem;
    color: #FACC15;
    flex-shrink: 0;
}

.iso-content {
    flex: 1;
    z-index: 1;
    padding-right: 200px;
}

.iso-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.iso-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-iso {
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-iso:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .iso-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .iso-content {
        padding-right: 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-card {
    background-color: #F8FAFC;
    padding: 50px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-right: 20px;
}

.info-text h4 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1rem;
}

.info-text p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #F8FAFC;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.05);
}

.button-block {
    display: block;
    width: 100%;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Anti-spam UI */
.math-captcha {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.math-captcha label {
    margin-bottom: 0px;
    white-space: nowrap;
}

.math-captcha input {
    width: 120px;
}

.form-status {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Modal / Pop-up System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: #ffffff;
    width: 95%;
    max-width: 700px;
    border-radius: 24px;
    position: relative;
    padding: 50px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-body-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.modal-body-content .modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 25px;
}

.modal-body-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.modal-features {
    list-style: none;
    margin-bottom: 35px;
}

.modal-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #444;
}

.modal-features i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 30px;
        margin: 15px;
    }
    
    .modal-body-content h2 {
        font-size: 1.8rem;
    }
    
    .modal-body-content .modal-image {
        height: 200px;
    }
}
