/* ========== CONTACT PAGE HERO SECTION ========== */
.container-cth {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero-cth {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #0f172a 100%);
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Pattern */
.contact-hero-cth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.04"><path fill="white" d="M769 229L1037 260.9M927 880L731 737 520 660 309 737 113 880 113 158 309 81 520 158 731 81 927 158 927 880z"/><circle cx="200" cy="200" r="100" fill="white"/><circle cx="600" cy="500" r="150" fill="white"/></svg>');
    background-repeat: repeat;
    background-size: 400px;
    animation: contactBgMoveCth 40s linear infinite;
    pointer-events: none;
}

@keyframes contactBgMoveCth {
    0% { background-position: 0 0; }
    100% { background-position: 400px 400px; }
}

/* Hero Content */
.contact-hero-content-cth {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}

/* Breadcrumb */
.contact-hero-breadcrumb-cth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.contact-hero-breadcrumb-cth a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-hero-breadcrumb-cth a:hover {
    color: #60a5fa;
}

.contact-hero-breadcrumb-cth i {
    color: #3b82f6;
    font-size: 0.7rem;
}

.contact-hero-breadcrumb-cth span {
    color: #60a5fa;
}

/* Badge */
.contact-hero-badge-cth {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #60a5fa;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    animation: contactFadeInUpCth 0.6s ease;
}

/* Title */
.contact-hero-title-cth {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: contactFadeInUpCth 0.6s ease 0.1s backwards;
}

.contact-hero-highlight-cth {
    color: #60a5fa;
    position: relative;
    display: inline-block;
}

.contact-hero-highlight-cth::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, transparent);
    border-radius: 3px;
}

/* Subtitle */
.contact-hero-subtitle-cth {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 45px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: contactFadeInUpCth 0.6s ease 0.2s backwards;
}

/* Quick Contact Options */
.contact-hero-quick-cth {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: contactFadeInUpCth 0.6s ease 0.3s backwards;
}

.contact-hero-quick-item-cth {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 18px 28px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.contact-hero-quick-item-cth:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.5);
}

.contact-hero-quick-icon-cth {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-quick-icon-cth i {
    font-size: 1.3rem;
    color: #60a5fa;
}

.contact-hero-quick-info-cth {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-hero-quick-info-cth span {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-quick-info-cth strong {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

/* Animated Shapes */
.contact-hero-shapes-cth {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-hero-shape-cth {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    animation: contactFloatCth 8s ease-in-out infinite;
}

.shape-1-cth {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2-cth {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -80px;
    animation-delay: 2s;
}

.shape-3-cth {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4-cth {
    width: 250px;
    height: 250px;
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes contactFloatCth {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.8;
    }
}

/* Wave Divider */
.contact-hero-wave-cth {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

/* Animations */
@keyframes contactFadeInUpCth {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .contact-hero-title-cth {
        font-size: 2.8rem;
    }
    
    .contact-hero-quick-cth {
        gap: 20px;
    }
    
    .contact-hero-quick-item-cth {
        padding: 15px 22px;
    }
}

@media (max-width: 768px) {
    .contact-hero-cth {
        min-height: 500px;
    }
    
    .contact-hero-content-cth {
        padding: 60px 0;
    }
    
    .contact-hero-title-cth {
        font-size: 2.2rem;
    }
    
    .contact-hero-subtitle-cth {
        font-size: 1rem;
    }
    
    .contact-hero-quick-cth {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .contact-hero-quick-item-cth {
        justify-content: center;
    }
    
    .shape-1-cth, .shape-2-cth, .shape-3-cth, .shape-4-cth {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-hero-title-cth {
        font-size: 1.8rem;
    }
    
    .contact-hero-badge-cth {
        font-size: 0.75rem;
        padding: 6px 18px;
    }
    
    .contact-hero-breadcrumb-cth {
        font-size: 0.75rem;
    }
    
    .contact-hero-quick-item-cth {
        padding: 12px 20px;
    }
    
    .contact-hero-quick-icon-cth {
        width: 40px;
        height: 40px;
    }
    
    .contact-hero-quick-icon-cth i {
        font-size: 1rem;
    }
    
    .contact-hero-quick-info-cth strong {
        font-size: 0.85rem;
    }
}















/* ========== CONTACT CARDS + CONTACT FORM SECTION ========== */
.container-ctc {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-cards-section-ctc {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

/* Section Header */
.contact-cards-header-ctc {
    text-align: center;
    margin-bottom: 60px;
}

.contact-cards-badge-ctc {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-cards-title-ctc {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.contact-cards-highlight-ctc {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.contact-cards-highlight-ctc::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
}

.contact-cards-subtitle-ctc {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Cards Grid */
.contact-cards-grid-ctc {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card-ctc {
    background: white;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.contact-card-ctc:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    border-color: #bfdbfe;
}

.contact-card-icon-ctc {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.contact-card-icon-ctc i {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: #2563eb;
    line-height: 70px;
}

.contact-card-icon-bg-ctc {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 70px;
    background: #eef2ff;
    border-radius: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}

.contact-card-ctc:hover .contact-card-icon-bg-ctc {
    transform: rotate(10deg) scale(1.05);
    background: #dbeafe;
}

.contact-card-title-ctc {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.contact-card-text-ctc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card-link-ctc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.contact-card-link-ctc:hover {
    gap: 12px;
    color: #1d4ed8;
}

.contact-card-social-ctc {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-card-social-ctc a {
    width: 38px;
    height: 38px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card-social-ctc a:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form Wrapper */
.contact-form-wrapper-ctc {
    background: white;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.contact-form-container-ctc {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Form Column */
.contact-form-col-ctc {
    padding: 45px 40px;
    background: white;
}

.contact-form-header-ctc {
    margin-bottom: 30px;
}

.contact-form-header-ctc i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 10px;
}

.contact-form-header-ctc h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-form-header-ctc p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Form Styles */
.contact-form-ctc {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row-ctc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group-ctc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group-ctc label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.contact-form-group-ctc label span {
    color: #ef4444;
}

.contact-form-input-ctc {
    position: relative;
}

.contact-form-input-ctc i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

.contact-form-input-ctc input,
.contact-form-input-ctc select,
.contact-form-input-ctc textarea {
    width: 100%;
    padding: 14px 16px 14px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.contact-form-input-ctc textarea {
    resize: vertical;
    padding-top: 14px;
}

.contact-form-input-ctc textarea + i {
    top: 18px;
    transform: none;
}

.contact-form-input-ctc input:focus,
.contact-form-input-ctc select:focus,
.contact-form-input-ctc textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-submit-btn-ctc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
}

.contact-submit-btn-ctc:hover {
    gap: 16px;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Map Column */
.contact-map-col-ctc {
    background: #f1f5f9;
}

.contact-map-wrapper-ctc {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.contact-map-wrapper-ctc iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.contact-map-wrapper-ctc:hover iframe {
    filter: grayscale(0);
}

.contact-map-overlay-ctc {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map-info-ctc {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-map-info-ctc i {
    font-size: 1.5rem;
    color: #2563eb;
}

.contact-map-info-ctc strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.contact-map-info-ctc span {
    font-size: 0.75rem;
    color: #64748b;
}

.contact-working-hours-ctc {
    padding: 25px 30px;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.contact-hours-item-ctc {
    display: flex;
    gap: 15px;
}

.contact-hours-item-ctc i {
    font-size: 1.8rem;
    color: #2563eb;
}

.contact-hours-item-ctc h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-hours-item-ctc p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid-ctc {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .contact-form-container-ctc {
        grid-template-columns: 1fr;
    }
    
    .contact-map-col-ctc {
        order: -1;
    }
    
    .contact-map-wrapper-ctc {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-cards-section-ctc {
        padding: 60px 0;
    }
    
    .contact-cards-title-ctc {
        font-size: 2rem;
    }
    
    .contact-cards-subtitle-ctc {
        font-size: 1rem;
    }
    
    .contact-cards-grid-ctc {
        grid-template-columns: 1fr;
    }
    
    .contact-form-row-ctc {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-col-ctc {
        padding: 30px 25px;
    }
    
    .contact-form-header-ctc h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-cards-title-ctc {
        font-size: 1.6rem;
    }
    
    .contact-card-ctc {
        padding: 25px 20px;
    }
    
    .contact-form-col-ctc {
        padding: 25px 20px;
    }
    
    .contact-submit-btn-ctc {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .contact-working-hours-ctc {
        padding: 20px;
    }
    
    .contact-hours-item-ctc {
        flex-direction: column;
        text-align: center;
    }
}







/* ========== NEWS & BLOGS SECTION ========== */
.container-nws {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-section-nws {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* Section Header */
.news-header-nws {
    text-align: center;
    margin-bottom: 50px;
}

.news-badge-nws {
    display: inline-block;
    background: #eef2ff;
    color: #2563eb;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.news-title-nws {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.news-highlight-nws {
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.news-highlight-nws::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    border-radius: 3px;
}

.news-subtitle-nws {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Filters */
.news-filters-nws {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-filter-btn-nws {
    padding: 8px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.news-filter-btn-nws:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-2px);
}

.news-filter-btn-nws.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Featured Post */
.news-featured-nws {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.news-featured-image-nws {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.news-featured-image-nws img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured-nws:hover .news-featured-image-nws img {
    transform: scale(1.05);
}

.news-featured-category-nws {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #2563eb;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.news-featured-content-nws {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-featured-meta-nws {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-featured-meta-nws span {
    font-size: 0.8rem;
    color: #64748b;
}

.news-featured-meta-nws i {
    margin-right: 6px;
    color: #2563eb;
}

.news-featured-title-nws {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-featured-excerpt-nws {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.news-featured-footer-nws {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.news-readmore-nws {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-readmore-nws:hover {
    gap: 12px;
}

.news-share-nws {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-share-nws span {
    font-size: 0.8rem;
    color: #64748b;
}

.news-share-nws a {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.news-share-nws a:hover {
    background: #2563eb;
    color: white;
}

/* Blog Grid */
.news-grid-nws {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card-nws {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.news-card-nws:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.news-card-image-nws {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-card-image-nws img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card-nws:hover .news-card-image-nws img {
    transform: scale(1.05);
}

.news-card-category-nws {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.news-card-content-nws {
    padding: 20px;
}

.news-card-meta-nws {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.news-card-meta-nws span {
    font-size: 0.7rem;
    color: #64748b;
}

.news-card-meta-nws i {
    margin-right: 4px;
    color: #2563eb;
}

.news-card-title-nws {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-excerpt-nws {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-card-link-nws {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.news-card-link-nws:hover {
    gap: 10px;
}

/* Load More Button */
.news-loadmore-nws {
    text-align: center;
    margin: 20px 0 50px;
}

.news-loadmore-btn-nws {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: white;
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.news-loadmore-btn-nws:hover {
    background: #2563eb;
    color: white;
    gap: 16px;
    transform: translateY(-2px);
}

/* Newsletter Subscription */
.news-newsletter-nws {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 28px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 20px;
}

.news-newsletter-content-nws i {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.news-newsletter-content-nws h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.news-newsletter-content-nws p {
    font-size: 0.9rem;
    color: #bfdbfe;
    margin-bottom: 25px;
}

.news-newsletter-form-nws {
    display: flex;
    gap: 12px;
    max-width: 450px;
    margin: 0 auto;
}

.news-newsletter-form-nws input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.news-newsletter-form-nws button {
    padding: 14px 28px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-newsletter-form-nws button:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUpNws {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card-nws {
    animation: fadeInUpNws 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .news-featured-nws {
        grid-template-columns: 1fr;
    }
    
    .news-featured-content-nws {
        padding: 30px;
    }
    
    .news-grid-nws {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-section-nws {
        padding: 60px 0;
    }
    
    .news-title-nws {
        font-size: 2rem;
    }
    
    .news-subtitle-nws {
        font-size: 1rem;
    }
    
    .news-featured-title-nws {
        font-size: 1.4rem;
    }
    
    .news-featured-footer-nws {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .news-grid-nws {
        grid-template-columns: 1fr;
    }
    
    .news-newsletter-form-nws {
        flex-direction: column;
    }
    
    .news-filters-nws {
        gap: 8px;
    }
    
    .news-filter-btn-nws {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .news-title-nws {
        font-size: 1.6rem;
    }
    
    .news-featured-meta-nws {
        gap: 12px;
    }
    
    .news-featured-meta-nws span {
        font-size: 0.7rem;
    }
    
    .news-newsletter-nws {
        padding: 35px 25px;
    }
}