/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.ship-container {
    position: relative;
    width: 200px;
    height: 100px;
    margin: 0 auto 30px;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: wave 2s infinite ease-in-out;
}

.wave1 {
    animation-delay: 0s;
}

.wave2 {
    animation-delay: 0.5s;
    opacity: 0.7;
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ship {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    33% { transform: translate(-50%, -60%) rotate(-2deg); }
    66% { transform: translate(-50%, -55%) rotate(2deg); }
}

.loading-logo h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.loading-logo p {
    font-size: 1rem;
    opacity: 0.8;
}

.loading-text {
    display: block;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 41, 128, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo p {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-links a i {
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.8) 0%, rgba(38, 208, 206, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #FF8C00, #FFA500);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a2980;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #26d0ce, #1a2980);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item i {
    font-size: 3rem;
    color: #26d0ce;
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1a2980;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-item p {
    color: #666;
    font-size: 1rem;
}

/* ===== VISION & MISSION ===== */
.visi-misi {
    padding: 80px 0;
    background: white;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card, .mission-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-card {
    background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
    color: white;
}

.mission-card {
    border-top: 5px solid #FFA500;
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.vision-card .icon {
    color: white;
}

.mission-card .icon {
    color: #FFA500;
}

.vision-card h3, .mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.mission-card ol {
    padding-left: 20px;
}

.mission-card li {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #26d0ce;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 3rem;
    color: #1a2980;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a2980;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

.legal-docs {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-docs h3 {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 30px;
    text-align: center;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doc-category {
    padding: 25px;
    border-radius: 10px;
    background: #f8f9fa;
    border-left: 4px solid #1a2980;
}

.doc-icon {
    font-size: 2rem;
    color: #1a2980;
    margin-bottom: 15px;
}

.doc-category h4 {
    font-size: 1.2rem;
    color: #1a2980;
    margin-bottom: 15px;
}

.doc-category ul {
    list-style: none;
}

.doc-category li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

.doc-category li i {
    color: #26d0ce;
    margin-right: 8px;
}

/* ===== BACKGROUND SECTION ===== */
.background {
    padding: 80px 0;
    background: white;
}

.background-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.background-text h2 {
    font-size: 2.2rem;
    color: #1a2980;
    margin-bottom: 20px;
}

.background-text p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature i {
    color: #26d0ce;
    font-size: 1.2rem;
}

.feature span {
    color: #555;
    font-weight: 500;
}

.background-map {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-image {
    position: relative;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 41, 128, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.map-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-image:hover img {
    transform: scale(1.1);
}

.map-image:hover .map-overlay {
    opacity: 1;
}

/* ===== AREA SECTION ===== */
.area {
    padding: 80px 0;
    background: #f8f9fa;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.area-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.area-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 41, 128, 0.9) 0%, rgba(38, 208, 206, 0.8) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.area-card:hover .area-overlay {
    opacity: 1;
}

.area-overlay-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.area-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.area-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.area-features span {
    color: white;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.area-content {
    padding: 20px;
}

.area-content h3 {
    font-size: 1.3rem;
    color: #1a2980;
    margin-bottom: 10px;
}

.area-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== FACILITIES SECTION ===== */
.facilities {
    padding: 80px 0;
    background: white;
}

.ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.ship-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 5px solid #1a2980;
    transition: transform 0.3s ease;
}

.ship-card:hover {
    transform: translateY(-10px);
}

.ship-image {
    font-size: 3.5rem;
    color: #26d0ce;
    margin-bottom: 20px;
}

.ship-card h3 {
    font-size: 1.5rem;
    color: #1a2980;
    margin-bottom: 10px;
}

.ship-hp {
    font-size: 1.8rem;
    color: #FFA500;
    font-weight: 700;
    margin-bottom: 5px;
}

.ship-type {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
}

.ship-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ship-features span {
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.ship-features i {
    color: #26d0ce;
}

/* ===== CUSTOMERS SECTION ===== */
.customers {
    padding: 80px 0;
    background: #f8f9fa;
}

.customers-slider {
    overflow: hidden;
    padding: 20px 0;
}

.customer-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 40px;
    padding: 20px 0;
}

.customer-item {
    flex: 0 0 200px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.customer-item:hover {
    transform: translateY(-5px);
}

.customer-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.customer-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.customer-name {
    font-weight: 600;
    color: #1a2980;
    font-size: 0.95rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.customers-slider:hover .customer-track {
    animation-play-state: paused;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #1a2980;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #1a2980;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #26d0ce;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    background: linear-gradient(45deg, #1a2980, #26d0ce);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: #1a2980;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.company-info p {
    margin-bottom: 10px;
    opacity: 0.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #26d0ce;
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #26d0ce;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #26d0ce;
}

.certification {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.iso-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.iso-badge i {
    color: #FFA500;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1a2980, #26d0ce);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26, 41, 128, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 41, 128, 0.4);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(26, 41, 128, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .area-card, .ship-card {
        padding: 30px 20px;
    }
    
    .legal-docs, .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
    .loading-screen,
    .hamburger,
    .cta-button,
    .scroll-indicator,
    .back-to-top,
    .whatsapp-float {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    header {
        position: static;
        background: #fff !important;
    }
    
    .logo-img {
        filter: none !important;
    }
    
    .nav-links {
        display: none;
    }
}

/* =========================
   HERO SLIDER (MAIN HERO)
   ========================= */

.hero-slider {
    position: relative;
    height: 600px;        /* tinggi hero */
    overflow: hidden;
}

/* Slide wrapper */
.hero-slider .slides-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Background slide */
.hero-slider .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay gelap */
.hero-slider .slide-overlay {
    position: absolute;
    inset: 0;
}

/* Konten di atas background */
.hero-slider .hero-content {
    position: relative;
    z-index: 2;
}
.navbar a span {
    pointer-events: none;
}
