/* Import Fonts */
@font-face {
    font-family: 'Exo';
    src: url('styling/Exo-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Exo';
    src: url('styling/Exo-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Exo';
    src: url('styling/Exo-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo', 'Arial', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('styling/background_gradient.png') center/cover;
    position: relative;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero Header with Logos */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 0 0;
}

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

.logo-pu {
    height: 80px;
    width: auto;
}

.logo-text {
    color: white;
    font-size: 14px;
    line-height: 1.2;
}

.logo-text strong {
    font-weight: 800;
}

.logo-pusdatin {
    height: 80px;
    width: auto;
}

/* Hero Main Content */
.hero-main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 60px 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.3) 0%, rgba(42, 82, 152, 0.3) 100%);
}

/* Background Video for Text Section */
.hero-text .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: contain;
    object-position: center;
    border-radius: 20px;
    background: #1e3c72;
}

/* Alternative: if you want to fill but maintain aspect ratio */
.hero-text .hero-video.fill-mode {
    object-fit: cover;
    object-position: center top;
}

/* Video Overlay for Text Section */
.hero-text .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.7) 0%, rgba(42, 82, 152, 0.6) 50%, rgba(30, 60, 114, 0.7) 100%);
    z-index: 2;
    border-radius: 20px;
}

.text-content {
    position: relative;
    z-index: 3;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-title .yellow {
    color: #FFD700;
}

.main-title .white {
    color: white;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E0E0E0;
    margin-top: 10px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 800px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-color: #FFD700;
    background: rgba(255, 255, 255, 1);
}

.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.service-card:hover .icon-default {
    opacity: 0;
}

.service-card:hover .icon-hover {
    opacity: 1;
}

.card-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2a5298;
    line-height: 1.3;
}

/* Urgent Highlight for Bencana Sumatera */
.service-card[data-service="cim"] {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.15) 0%, rgba(255, 152, 0, 0.15) 100%);
    border: 3px solid #FF5722;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3), 0 0 20px rgba(255, 87, 34, 0.4);
    animation: urgentPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
}

.service-card[data-service="cim"]::before {
    content: '⚠️';
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.6);
    z-index: 11;
    animation: urgentBadge 1.5s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card[data-service="cim"] .card-label {
    color: #D32F2F;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(255, 87, 34, 0.3);
}

.service-card[data-service="cim"]:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 87, 34, 0.6);
    border-color: #FF9800;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.25) 0%, rgba(255, 152, 0, 0.25) 100%);
}

@keyframes urgentPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.3), 0 0 20px rgba(255, 87, 34, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 87, 34, 0.5), 0 0 30px rgba(255, 87, 34, 0.7);
    }
}

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

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0f1b3c 0%, #1e3c72 50%, #0f1b3c 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('styling/background_gradient.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info {
    color: white;
}

.contact-info h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Contact Details */
.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.contact-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.2);
}

.contact-text h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 10px;
}

.contact-text p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
    color: #E0E0E0;
}

.contact-text strong {
    font-weight: 800;
    color: white;
}

/* Contact Shortcuts */
.contact-shortcuts {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.shortcut-item {
    width: 100%;
}

.shortcut-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: left;
    color: white;
    font-family: inherit;
}

.shortcut-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.shortcut-btn:active {
    transform: translateY(-1px);
}

.shortcut-icon {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(1.1);
}

/* WhatsApp SVG Icon Styling */
.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.4));
}

.whatsapp-btn:active .whatsapp-icon svg {
    transform: scale(0.95);
}

.shortcut-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.shortcut-label {
    font-size: 13px;
    font-weight: 600;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shortcut-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

/* Specific button colors */
.whatsapp-btn:hover {
    border-color: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.email-btn:hover {
    border-color: #EA4335;
    box-shadow: 0 10px 25px rgba(234, 67, 53, 0.2);
}

.website-btn:hover {
    border-color: #4285F4;
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.2);
}

/* Social Media */
.social-media {
    margin-top: 40px;
}

.social-media h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: block;
    width: 45px;
    height: 45px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.social-link:hover {
    transform: scale(1.1) translateY(-3px);
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.1);
}

/* Social Media SVG Icons */
.social-icon {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

/* Platform-specific hover effects */
.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: scale(1.1) translateY(-3px) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.social-link.tiktok:hover {
    background: linear-gradient(45deg, #000000, #FF0050);
    transform: scale(1.1) translateY(-3px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
}

.social-link.twitter:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Enhanced SVG animations */
.social-link:hover .social-icon {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.social-link.instagram:hover .social-icon {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(225, 48, 108, 0.5));
}

.social-link.facebook:hover .social-icon {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(24, 119, 242, 0.5));
}

.social-link.youtube:hover .social-icon {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 0, 0, 0.5));
}

.social-link.tiktok:hover .social-icon {
    filter: brightness(1.1) drop-shadow(0 2px 8px rgba(255, 0, 80, 0.5));
}

.social-link.twitter:hover .social-icon {
    filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

/* Contact Visual */
.contact-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.globe {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #4A90E2, #2E5BBA);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    box-shadow: 
        0 0 50px rgba(74, 144, 226, 0.5),
        inset 0 0 50px rgba(0,0,0,0.2);
}

.globe::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    border-radius: 50%;
}

.network-lines {
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 215, 0, 0.1) 30deg,
        transparent 60deg
    );
    animation: rotate-reverse 30s linear infinite;
    border-radius: 50%;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .services-grid {
        margin: 0 auto;
    }
    
    .main-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero-header {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 0;
        margin-bottom: 20px;
    }
    
    .logo-pu, .logo-pusdatin {
        height: 60px;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        order: 2;
    }
    
    .hero-text {
        padding: 30px 20px;
        min-height: 200px;
        order: 1;
        margin-bottom: 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .subtitle {
        font-size: 0.9rem;
        text-align: center;
        margin-top: 5px;
    }
    
    .service-card {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .card-label {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .contact-text h4 {
        font-size: 1.1rem;
    }
    
    .contact-text p {
        font-size: 13px;
    }
    
    .shortcut-btn {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .shortcut-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .shortcut-label {
        font-size: 11px;
    }
    
    .shortcut-value {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    /* Tablet responsive for social icons */
    .social-link.instagram:hover {
        transform: scale(1.08) translateY(-2px) rotate(-3deg);
    }
    
    .social-link.tiktok:hover {
        transform: scale(1.08) translateY(-2px) rotate(3deg);
    }
    
    .social-link.facebook:hover,
    .social-link.youtube:hover,
    .social-link.twitter:hover {
        transform: scale(1.08) translateY(-2px);
    }
    
    .globe-container {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 10px;
        min-height: 100vh;
    }
    
    .hero-header {
        margin-bottom: 15px;
        padding: 5px 0;
    }
    
    .logo-pu, .logo-pusdatin {
        height: 50px;
    }
    
    .hero-main {
        gap: 20px;
        height: auto;
    }
    
    .hero-text {
        padding: 25px 15px;
        min-height: 180px;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .main-title {
        font-size: 1.5rem;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .subtitle {
        font-size: 0.8rem;
        margin-top: 5px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        margin: 0;
    }
    
    .service-card {
        padding: 15px 10px;
        border-radius: 12px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 8px;
    }
    
    .card-label {
        font-size: 11px;
        line-height: 1.1;
        text-align: center;
    }
    
    /* Optimize video on mobile */
    .hero-text .hero-video {
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-text .video-control {
        width: 30px;
        height: 30px;
        bottom: 10px;
        right: 10px;
    }
    
    .hero-text .video-control::before {
        font-size: 10px;
    }
    
    /* Adjust hero content height */
    .hero-content {
        height: auto;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 10px;
    }
    
    /* Contact responsive mobile */
    .contact {
        padding: 40px 10px;
    }
    
    .contact-info h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
    }
    
    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .contact-text p {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .contact-shortcuts {
        gap: 10px;
    }
    
    .shortcut-btn {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }
    
    .shortcut-icon {
        width: 25px;
        height: 25px;
    }
    
    .whatsapp-icon {
        width: 25px;
        height: 25px;
    }
    
    .shortcut-label {
        font-size: 10px;
    }
    
    .shortcut-value {
        font-size: 12px;
    }
    
    .social-media h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    /* Mobile responsive for social icons */
    .social-link.instagram:hover {
        transform: scale(1.05) translateY(-1px) rotate(-2deg);
        box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
    }
    
    .social-link.tiktok:hover {
        transform: scale(1.05) translateY(-1px) rotate(2deg);
        box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
    }
    
    .social-link.facebook:hover {
        transform: scale(1.05) translateY(-1px);
        box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    }
    
    .social-link.youtube:hover {
        transform: scale(1.05) translateY(-1px);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    }
    
    .social-link.twitter:hover {
        transform: scale(1.05) translateY(-1px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    /* Reduce hover effects on mobile for better touch experience */
    .social-link:hover .social-icon {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

/* Video Control Button */
.hero-text .video-control {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-text .video-control:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

.hero-text .video-control::before {
    content: '⏸️';
    font-size: 14px;
}

.hero-text .video-control.paused::before {
    content: '▶️';
}

/* Hover Popup Modal */
.hover-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hover-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.hover-popup.show .popup-content {
    transform: scale(1) translateY(0);
}

.popup-image-container {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.popup-info {
    text-align: center;
    color: #2a5298;
}

.popup-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e3c72;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.popup-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Popup Actions */
.popup-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.popup-btn-app {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-family: 'Exo', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-btn-app:hover {
    background: linear-gradient(135deg, #2a5298 0%, #FFD700 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
    border-color: #FFD700;
}

.popup-btn-app:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.btn-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.btn-text {
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FFD700;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #2a5298;
    transition: all 0.3s ease;
    z-index: 1001;
}

.popup-close:hover {
    background: #FFD700;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 20px;
        max-width: 95%;
        max-height: 85vh;
    }
    
    .popup-image-container {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .popup-info h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .popup-info p {
        font-size: 0.9rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 10px;
        right: 15px;
    }
    
    .popup-btn-app {
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 10px;
    }
    
    .btn-icon {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 15px;
        max-width: 98%;
    }
    
    .popup-image-container {
        height: 150px;
        margin-bottom: 12px;
    }
    
    .popup-info h3 {
        font-size: 1.2rem;
    }
    
    .popup-info p {
        font-size: 0.85rem;
    }
    
    .popup-close {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .popup-btn-app {
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 8px;
        gap: 6px;
    }
    
    .btn-icon {
        font-size: 13px;
    }
    
    .btn-text {
        font-size: 12px;
    }
}

/* Urgent Popup Modal */
.urgent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.urgent-popup.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.urgent-popup-content {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 50%, #FF5722 100%);
    border-radius: 25px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: scale(0.5) translateY(100px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 30px 60px rgba(255, 87, 34, 0.5), 0 0 50px rgba(255, 152, 0, 0.6);
    border: 4px solid #FFFFFF;
    animation: urgentShake 0.5s ease-in-out;
}

.urgent-popup.show .urgent-popup-content {
    transform: scale(1) translateY(0);
}

@keyframes urgentShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.urgent-popup-header {
    text-align: center;
    margin-bottom: 25px;
}

.urgent-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: urgentIconPulse 1.5s ease-in-out infinite;
    display: block;
}

@keyframes urgentIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.urgent-popup-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.urgent-popup-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFF3E0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.urgent-popup-body {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.urgent-popup-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #D32F2F;
    margin-bottom: 15px;
}

.urgent-popup-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 10px;
}

.urgent-popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.urgent-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-family: 'Exo', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.urgent-btn-primary {
    background: linear-gradient(135deg, #D32F2F 0%, #FF5722 100%);
    color: white;
    border: 3px solid #FFFFFF;
}

.urgent-btn-primary:hover {
    background: linear-gradient(135deg, #FF5722 0%, #FF9800 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.5);
}

.urgent-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #D32F2F;
    border: 3px solid #D32F2F;
}

.urgent-btn-secondary:hover {
    background: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.urgent-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #D32F2F;
    transition: all 0.3s ease;
    z-index: 10001;
}

.urgent-popup-close:hover {
    background: #FFFFFF;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for Urgent Popup */
@media (max-width: 768px) {
    .urgent-popup-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .urgent-icon {
        font-size: 50px;
    }
    
    .urgent-popup-title {
        font-size: 1.8rem;
    }
    
    .urgent-popup-subtitle {
        font-size: 1rem;
    }
    
    .urgent-popup-body {
        padding: 20px;
    }
    
    .urgent-popup-body h3 {
        font-size: 1.2rem;
    }
    
    .urgent-popup-body p {
        font-size: 0.95rem;
    }
    
    .urgent-popup-actions {
        flex-direction: column;
    }
    
    .urgent-btn {
        width: 100%;
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .urgent-popup-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 10px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .urgent-popup-content {
        padding: 25px 15px;
    }
    
    .urgent-icon {
        font-size: 40px;
    }
    
    .urgent-popup-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .urgent-popup-subtitle {
        font-size: 0.9rem;
    }
    
    .urgent-popup-body {
        padding: 15px;
    }
    
    .urgent-popup-body h3 {
        font-size: 1.1rem;
    }
    
    .urgent-popup-body p {
        font-size: 0.85rem;
    }
    
    .urgent-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .urgent-popup-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
} 