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

html, body {
    width: 100%;
    height: auto;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

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

/* ============ HEADER ============ */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1F3A70, #D32F2F);
    border-radius: 6px;
    color: white;
    font-weight: 900;
}

.logo-text {
    background: linear-gradient(135deg, #1F3A70 0%, #D32F2F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    flex-wrap: nowrap;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-link:hover {
    color: #D32F2F;
    border-bottom-color: #D32F2F;
}

.nav-link.active {
    color: #1F3A70;
    border-bottom-color: #1F3A70;
}

.nav-link.cta-btn {
    background-color: #D32F2F;
    color: white !important;
    padding: 10px 24px;
    border-radius: 4px;
    border-bottom: none;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-link.cta-btn:hover {
    background-color: #1F3A70;
    border-bottom: none;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-toggle.active::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

.dropdown-menu.active {
    max-height: 500px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #D32F2F;
    padding-left: 25px;
}

.dropdown-menu a.category {
    font-weight: 600;
    color: #1F3A70;
    padding: 15px 20px 10px;
    background-color: #f5f5f5;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* ============ POPUP ============ */
.popup-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.popup-overlay.active {
    display: flex !important;
}

.popup-content {
    background: white;
    border-radius: 12px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    margin: auto;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10;
}

.popup-close:hover {
    color: #333;
}

.popup-header {
    margin-bottom: 25px;
}

.popup-header h2 {
    font-size: 24px;
    color: #1F3A70;
    margin: 0 0 10px 0;
    word-break: break-word;
}

.popup-date {
    color: #D32F2F;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.popup-body {
    margin: 25px 0;
}

.popup-body h3 {
    font-size: 16px;
    color: #2C5AA0;
    margin: 20px 0 12px 0;
    font-weight: 700;
    word-break: break-word;
}

.popup-body p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
    word-break: break-word;
}

.popup-body ul {
    list-style-position: inside;
    margin: 15px 0;
    padding-left: 10px;
}

.popup-body li {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    word-break: break-word;
}

.popup-body strong {
    color: #1F3A70;
}

.popup-warning {
    background-color: #fff3cd;
    border-left: 4px solid #D32F2F;
    padding: 20px;
    border-radius: 4px;
    margin: 25px 0;
}

.popup-warning h4 {
    color: #D32F2F;
    margin: 0 0 10px 0;
    font-size: 15px;
}

.popup-warning p {
    margin: 8px 0;
    font-size: 14px;
    word-break: break-word;
}

.popup-repeating-alert {
    background-color: #ffebee;
    border: 2px solid #D32F2F;
    border-radius: 4px;
    padding: 20px;
    margin: 25px 0;
}

.popup-repeating-alert h4 {
    color: #D32F2F;
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 700;
}

.popup-repeating-alert p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
    word-break: break-word;
}

.popup-repeating-alert strong {
    color: #D32F2F;
}

.popup-credit-scam {
    background-color: #ffe0e0;
    border: 2px solid #D32F2F;
    border-radius: 4px;
    padding: 20px;
    margin: 25px 0;
}

.popup-credit-scam h4 {
    color: #D32F2F;
    margin: 0 0 10px 0;
    font-size: 15px;
    font-weight: 700;
}

.popup-credit-scam p {
    margin: 8px 0;
    font-size: 14px;
    color: #555;
    word-break: break-word;
}

.popup-credit-scam strong {
    color: #D32F2F;
    font-weight: 900;
}

.email-evidence {
    background-color: #f5f5f5;
    border-left: 4px solid #D32F2F;
    padding: 15px;
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.6;
    word-break: break-word;
}

.popup-cta {
    background-color: #f9f9f9;
    border: 2px solid #D32F2F;
    border-radius: 8px;
    padding: 25px;
    margin-top: 25px;
    text-align: center;
}

.popup-cta h4 {
    color: #1F3A70;
    font-size: 16px;
    margin: 0 0 12px 0;
}

.popup-cta p {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
}

.popup-email {
    font-size: 18px;
    font-weight: 700;
    color: #D32F2F;
    word-break: break-all;
}

.popup-footer {
    text-align: center;
    margin-top: 25px;
}

.btn-close-popup {
    display: inline-block;
    background-color: #1F3A70;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 5px;
    font-size: 14px;
}

.btn-close-popup:hover {
    background-color: #D32F2F;
}

.btn-read-article {
    display: inline-block;
    background-color: #D32F2F;
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 5px;
    font-size: 14px;
}

.btn-read-article:hover {
    background-color: #1F3A70;
    transform: translateY(-2px);
}

/* ============ CONSTRUCTION BANNER ============ */
.construction-banner {
    background: linear-gradient(90deg, #3D5A80, #6B4C7A, #8B5A7D, #D32F2F);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.construction-banner span {
    font-size: 24px;
    margin-right: 10px;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #4A5F85 0%, #3D5A80 25%, #344D73 50%, #2C4A6B 75%, #1F3A70 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8em;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.hero-text p {
    font-size: 1.15em;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background-color: #D32F2F;
    color: white;
    padding: 14px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary:hover {
    background-color: white;
    color: #D32F2F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.megaphone-img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
    transition: all 0.3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* ============ FEATURES ============ */
.features {
    background: white;
    padding: 60px 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    background: #f0f7ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1F3A70;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.feature-card p {
    color: #666;
    font-size: 0.95em;
}

/* ============ CASES ============ */
.cases-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.cases-section h2 {
    text-align: center;
    color: #1F3A70;
    font-size: 2em;
    margin-bottom: 40px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.case-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #D32F2F;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.case-header h3 {
    color: #1F3A70;
    margin: 0 0 10px 0;
    font-size: 1em;
    line-height: 1.4;
}

.case-date {
    color: #D32F2F;
    font-size: 12px;
    font-weight: 600;
}

.case-excerpt {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 15px 0;
}

.case-link {
    color: #D32F2F;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    cursor: pointer;
}

.case-link:hover {
    text-decoration: underline;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    background: white;
    padding: 60px 20px;
}

.testimonials h2 {
    text-align: center;
    color: #1F3A70;
    font-size: 2em;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.testimonial {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2C5AA0;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #1F3A70;
    font-weight: 600;
    font-size: 13px;
}

/* ============ FOOTER ============ */
.footer {
    background: #1F3A70;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #fff;
    font-size: 0.95em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 0.9em;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #D32F2F;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9em;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85em;
    opacity: 0.8;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .header .container {
        gap: 40px;
        padding: 15px 20px;
    }

    .nav {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .header .container {
        gap: 20px;
    }

    .header-content {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 99;
    }

    .nav.active {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .popup-content {
        padding: 25px;
        margin: 20px;
    }

    .popup-header h2 {
        font-size: 18px;
    }

    .popup-body h3 {
        font-size: 13px;
    }

    .popup-body p {
        font-size: 13px;
    }

    .construction-banner {
        font-size: 14px;
        padding: 15px;
    }

    .construction-banner span {
        font-size: 18px;
    }

    .logo-text {
        font-size: 16px;
    }

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

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

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

@media (max-width: 480px) {
    .header .container {
        padding: 10px 15px;
        gap: 10px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    .logo-text {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 1.5em;
    }

    .hero-text p {
        font-size: 0.9em;
    }

    .btn-primary {
        padding: 10px 25px;
        font-size: 13px;
    }

    .popup-content {
        padding: 20px;
    }

    .cases-section h2 {
        font-size: 1.5em;
    }

    .testimonials h2 {
        font-size: 1.5em;
    }
}