/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: #F5FAFF;
    color: #1E293B;
}

/* Glass Effects */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(162, 207, 254, 0.15);
}
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(162, 207, 254, 0.2);
}

/* Gradients */
.gradient-text {
    background: linear-gradient(145deg, #0B3B52 0%, #1F7EA3 50%, #7BC0E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bg-gradient-hero {
    background: linear-gradient(135deg, #0B2545 0%, #134074 30%, #1F7EA3 60%, #7BC0E8 100%);
}
.bg-gradient-blue {
    background: linear-gradient(135deg, #E1F0FA 0%, #B3D9F0 50%, #7BC0E8 100%);
}

/* Shadows */
.shadow-soft {
    box-shadow: 0 8px 32px rgba(11, 37, 69, 0.08);
}
.shadow-glow {
    box-shadow: 0 0 40px rgba(123, 192, 232, 0.15);
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11, 37, 69, 0.12);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1F7EA3, #4BA3D4);
    color: white;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(31, 126, 163, 0.35);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}
.btn-outline {
    border: 2px solid #7BC0E8;
    color: #134074;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: #E1F0FA;
    border-color: #4BA3D4;
}

/* Sections */
.section-padding { padding: 80px 0; }
@media (max-width: 768px) {
    .section-padding { padding: 50px 0; }
}

/* Icons */
.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #E1F0FA;
    color: #4BA3D4;
}
.icon-circle .material-icons {
    font-size: 24px;
}
.icon-sm-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #E1F0FA;
    color: #4BA3D4;
}
.icon-sm-circle .material-icons {
    font-size: 20px;
}

/* Language Switcher */
.lang-dropdown {
    position: relative;
    display: inline-block;
    z-index: 60;
}
.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 10px;
    border-radius: 8px;
    background: rgba(162, 207, 254, 0.08);
    border: 1px solid rgba(162, 207, 254, 0.15);
    color: #A2CFFE;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 36px;
}
.lang-btn:hover {
    background: rgba(162, 207, 254, 0.15);
    border-color: rgba(162, 207, 254, 0.3);
}
.lang-btn:focus {
    outline: 2px solid rgba(162, 207, 254, 0.4);
    outline-offset: 2px;
}
.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.lang-btn span {
    display: inline-block;
    line-height: 1;
}
.lang-btn .material-icons {
    font-size: 18px;
    color: rgba(162, 207, 254, 0.5);
    transition: transform 0.25s ease;
    margin-left: 2px;
    flex-shrink: 0;
}
.lang-dropdown:hover .lang-btn .material-icons,
.lang-dropdown:focus-within .lang-btn .material-icons {
    transform: rotate(180deg);
}
.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 200px;
    background: white;
    box-shadow: 0 16px 48px rgba(11, 37, 69, 0.18);
    border-radius: 12px;
    padding: 6px 0;
    z-index: 60;
    border: 1px solid rgba(162, 207, 254, 0.15);
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}
.lang-dropdown-content::-webkit-scrollbar {
    width: 4px;
}
.lang-dropdown-content::-webkit-scrollbar-track {
    background: transparent;
}
.lang-dropdown-content::-webkit-scrollbar-thumb {
    background: #A2CFFE;
    border-radius: 4px;
}
.lang-dropdown:hover .lang-dropdown-content,
.lang-dropdown:focus-within .lang-dropdown-content {
    display: block;
}
.lang-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    color: #1E293B !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    transition: background 0.15s ease !important;
    text-decoration: none !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    border-radius: 0 !important;
    line-height: 1.4 !important;
}
.lang-item:hover {
    background: #E1F0FA !important;
    color: #0B2545 !important;
}
.lang-item:focus {
    background: #E1F0FA !important;
    outline: none !important;
}
.lang-item img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}
.lang-item .lang-name {
    display: inline-block;
    white-space: nowrap;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(11,37,69,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: rgba(255,255,255,0.7);
    padding: 12px 0;
    border-bottom: 1px solid rgba(162,207,254,0.08);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: #A2CFFE; }
.mobile-menu a:last-child { border-bottom: none; }

/* Stats Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(162, 207, 254, 0.15);
    border-radius: 14px;
    padding: 22px 18px;
}
.stat-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(162, 207, 254, 0.55);
    margin-bottom: 14px;
}
.stat-card-value {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-card-note {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

/* Timeline */
.timeline2 {
    padding-left: 28px;
    position: relative;
}
.timeline2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, #00BCD4, #A2CFFE);
}
.tl-item {
    margin-bottom: 28px;
    position: relative;
}
.tl-dot {
    position: absolute;
    left: -32px;
    top: 5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #00BCD4;
    border: 2px solid white;
    box-shadow: 0 0 0 4px rgba(0, 188, 212, 0.2);
}
.tl-year {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #00BCD4;
    margin-bottom: 3px;
}
.tl-event {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1E293B;
    line-height: 1.5;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.team-card {
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(162,207,254,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(11,37,69,0.12);
}
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1F7EA3 0%, #4BA3D4 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}
.team-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #0B2545;
}
.team-card .role {
    color: #4BA3D4;
    font-weight: 600;
    margin-bottom: 1rem;
}
.team-card p {
    color: #475569;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B2545 0%, #134074 30%, #1F7EA3 60%, #7BC0E8 100%);
    color: white;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(162,207,254,0.15);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.contact-card .material-icons {
    font-size: 3rem;
    color: #00BCD4;
    margin-bottom: 1rem;
}
.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.contact-card a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-card a:hover {
    color: #A2CFFE;
}

/* Content Card */
.content-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #4BA3D4;
    margin: 2rem 0;
}
.content-card h4 {
    color: #4BA3D4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.content-card ul {
    margin: 1rem 0 1rem 2rem;
}
.content-card li {
    margin-bottom: 0.5rem;
    color: #475569;
}

/* WhatsApp Widget - Right (original style) */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn .material-icons {
    color: white;
    font-size: 2rem;
}

/* WhatsApp Widget - Left (with bubble) */
.whatsapp-widget-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.whatsapp-button-left {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}
.whatsapp-button-left:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}
.whatsapp-button-left img {
    width: 28px;
    height: 28px;
}
.whatsapp-bubble {
    background: white;
    padding: 12px 18px;
    border-radius: 12px 12px 12px 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    font-size: 13px;
    color: #1E293B;
    max-width: 260px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    animation: pulse-bubble 2s ease-in-out infinite;
}
.whatsapp-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 16px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}
.whatsapp-bubble {
    position: relative;
}
@keyframes pulse-bubble {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Form Styles */
.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}
.form-error.show {
    display: block;
}
.form-success {
    color: #16a34a;
    font-size: 0.875rem;
    margin-top: 4px;
    display: none;
}
.form-success.show {
    display: block;
}
.form-field-error {
    border-color: #dc2626 !important;
    background-color: #fef2f2 !important;
}
.form-field-success {
    border-color: #16a34a !important;
    background-color: #f0fdf4 !important;
}
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(162, 207, 254, 0.15);
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: #4BA3D4;
    box-shadow: 0 12px 40px rgba(11, 37, 69, 0.08);
    transform: translateY(-4px);
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border-left: 4px solid #00BCD4;
    transition: all 0.3s ease;
}
.step-card:hover {
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.08);
    transform: translateX(4px);
}

/* Stain Tags */
.stain-tag {
    display: inline-block;
    background: #E1F0FA;
    color: #0B2545;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin: 4px;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(162, 207, 254, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Floating Video */
.floating-video {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 999;
    width: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 60px rgba(0,0,0,0.3);
    border: 2px solid rgba(162,207,254,0.3);
    transition: all 0.3s ease;
    animation: float 6s ease-in-out infinite;
}
.floating-video iframe {
    width: 100%;
    height: 158px;
    border: none;
    display: block;
}
.floating-video .vid-label {
    background: rgba(11,37,69,0.9);
    backdrop-filter: blur(8px);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 600;
    color: #A2CFFE;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.floating-video .vid-label .material-icons {
    font-size: 18px;
    color: #00BCD4;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Image Sequence */
.hero-image-sequence {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-seq-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroImageSequence 25s infinite;
}
.hero-seq-img:nth-child(1) { animation-delay: 0s; }
.hero-seq-img:nth-child(2) { animation-delay: 5s; }
.hero-seq-img:nth-child(3) { animation-delay: 10s; }
.hero-seq-img:nth-child(4) { animation-delay: 15s; }
.hero-seq-img:nth-child(5) { animation-delay: 20s; }
@keyframes heroImageSequence {
    0% { opacity: 0; transform: scale(1); }
    4% { opacity: 1; transform: scale(1.02); }
    20% { opacity: 1; transform: scale(1.05); }
    24% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; }
}

/* Hero Video Thumbnail */
.hero-video-thumb {
    position: absolute;
    right: 5%;
    bottom: 120px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    animation: fadeSlideUp 0.8s 0.7s ease both;
}
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.video-thumb-card {
    width: 440px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55);
    border: 2px solid rgba(162, 207, 254, 0.25);
    transition: transform 0.3s, box-shadow 0.3s;
}
.video-thumb-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}
.vt-img {
    width: 100%;
    height: 256px;
    background: linear-gradient(135deg, #0d3a5c 0%, #006064 50%, #004d40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.vt-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(162, 207, 254, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(162, 207, 254, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
}
.pulse-rings {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pr {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: 2px solid rgba(162, 207, 254, 0.4);
    animation: pr-pulse 2.2s ease-out infinite;
}
.pr:nth-child(2) { animation-delay: 0.55s; }
.pr:nth-child(3) { animation-delay: 1.1s; }
@keyframes pr-pulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}
.play-ring {
    position: relative;
    z-index: 2;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 4px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.video-thumb-card:hover .play-ring {
    background: #00BCD4;
    border-color: #00BCD4;
    transform: scale(1.1);
}
.play-tri {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 32px solid white;
    margin-left: 6px;
}
.vt-body {
    background: rgba(11, 37, 69, 0.92);
    backdrop-filter: blur(10px);
    padding: 22px 28px;
}
.vt-label {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00BCD4;
    margin-bottom: 8px;
}
.vt-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.35;
}
.vt-dur {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: rgba(162, 207, 254, 0.6);
    margin-top: 8px;
}

/* Business Flip Cards */
.biz-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 320px;
    cursor: pointer;
}
.biz-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.biz-card:hover .biz-card-bg {
    transform: scale(1.05);
}
.biz-card-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.9) 0%, rgba(11, 37, 69, 0.3) 60%, transparent 100%);
    transition: background 0.3s;
}
.biz-card:hover .biz-card-dark {
    background: rgba(11, 37, 69, 0.85);
}
.biz-card-title-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    transition: opacity 0.3s;
}
.biz-card:hover .biz-card-title-layer {
    opacity: 0;
}
.biz-card-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: white;
}
.biz-card-content-layer {
    position: absolute;
    inset: 0;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}
.biz-card:hover .biz-card-content-layer {
    opacity: 1;
}
.biz-card-content-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A2CFFE;
    margin-bottom: 14px;
}
.biz-card-content-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: white;
    line-height: 1.2;
    margin-bottom: 14px;
}
.biz-card-content-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* News Cards */
.news-card-featured {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    background: #0B2545;
}
.news-card-featured-img {
    position: absolute;
    inset: 0;
    background: url('images/hero1.jpg') center/cover;
}
.news-card-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.3) 60%, transparent 100%);
}
.news-card-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #00BCD4;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}
.news-card-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}
.news-card-meta {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(162, 207, 254, 0.7);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}
.news-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #A2CFFE;
    transition: gap 0.2s;
}
.news-card-link:hover {
    gap: 10px;
}
.news-card-sm {
    display: grid;
    grid-template-columns: 100px 1fr;
    border-radius: 12px;
    overflow: hidden;
    background: #F5FAFF;
    border: 1px solid rgba(162, 207, 254, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.news-card-sm:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.1);
}
.news-card-sm-img {
    background: linear-gradient(135deg, #134074, #0097A7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}
.news-card-sm-body {
    padding: 14px 16px;
}
.news-card-sm-meta {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #00BCD4;
    margin-bottom: 6px;
}
.news-card-sm-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #0B2545;
    line-height: 1.4;
}
.news-card-sm-date {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #607D8B;
    margin-top: 6px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-globe-wrapper { display: none; }
}

@media (max-width: 900px) {
    .hero-video-thumb {
        display: none;
    }
    .video-thumb-card {
        width: 90vw;
        max-width: 360px;
    }
    .vt-img {
        height: 204px;
    }
}

@media (max-width: 768px) {
    .lang-btn {
        padding: 4px 8px 4px 6px;
        font-size: 11px;
        min-height: 30px;
        gap: 4px;
    }
    .lang-btn img {
        width: 16px;
        height: 12px;
    }
    .lang-btn .material-icons {
        font-size: 16px;
    }
    .lang-dropdown-content {
        min-width: 170px;
        right: -8px;
        top: calc(100% + 6px);
        max-height: 300px;
    }
    .lang-item {
        padding: 8px 14px !important;
        font-size: 0.8rem !important;
        gap: 8px !important;
    }
    .lang-item img {
        width: 18px;
        height: 12px;
    }
}

@media (max-width: 640px) {
    .floating-video {
        width: 180px;
        bottom: 80px;
        right: 10px;
    }
    .floating-video iframe {
        height: 100px;
    }
    .floating-video .vid-label {
        font-size: 9px;
        padding: 5px 10px;
    }
    .floating-video .vid-label .material-icons {
        font-size: 14px;
    }
    .whatsapp-widget-left {
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-button-left {
        padding: 12px 18px;
        font-size: 13px;
    }
    .whatsapp-button-left img {
        width: 24px;
        height: 24px;
    }
    .whatsapp-bubble {
        display: none;
    }
}

@media (max-width: 550px) {
    .video-thumb-card {
        width: 88vw;
        max-width: 320px;
    }
    .vt-img {
        height: 180px;
    }
    .vt-title {
        font-size: 18px;
    }
    .vt-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .lang-btn span:not(.material-icons) {
        display: none;
    }
    .lang-btn {
        padding: 4px 8px;
        gap: 0;
        min-height: 28px;
    }
    .lang-btn img {
        width: 18px;
        height: 12px;
    }
    .lang-btn .material-icons {
        font-size: 18px;
        margin-left: 0;
    }
    .lang-dropdown-content {
        min-width: 150px;
        right: -12px;
        top: calc(100% + 4px);
    }
    .lang-item {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        gap: 6px !important;
    }
    .lang-item img {
        width: 16px;
        height: 11px;
    }
}
