@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {

    --color-primary: #0163a6;      
    --color-primary-dark: #004d85;
    --color-secondary: #56616a;    
    --color-accent: #f1c40f;       
    --color-success: #2ecc71;      

    --color-text-heading: #2c3e50;
    --color-text-body: #56616a;
    --color-text-muted: #95a5a6;
    --color-white: #ffffff;
    --color-bg-light: #f4f6f8;

    --bg-body: #f8f9fa;
    --bg-surface: #ffffff;

    --container-max: 1240px;
    --container-padding: 1.5rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;             
    --radius-pill: 50px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(1, 99, 166, 0.15);

    --border-light: 1px solid #e9ecef;

    --font-primary: 'Roboto', sans-serif;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    background-color: var(--bg-body);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex; flex-direction: column;
}
h1, h2, h3, h4 { font-weight: 700; color: var(--color-text-heading); letter-spacing: -0.5px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); }

.site-header {
    background: #fff;
    border-bottom: 1px solid #eef2f6;
    position: sticky; top: 0; z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.site-header .logo img { height: 50px!important; width: auto; }

.menu { display: flex; gap: 1rem; align-items: center; }
.menu a {
    font-weight: 500;
    color: var(--color-secondary);
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.menu a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-icon { width: 24px; height: 2px; background: var(--color-secondary); position: relative; }
.menu-icon::before, .menu-icon::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-secondary); transition: 0.3s; }
.menu-icon::before { top: -8px; }
.menu-icon::after { top: 8px; }

.hero-section {
    padding: 8rem 0 10rem;
    background-color: #1a202c; 

    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center bottom;
    color: white;
    position: relative;
    overflow: hidden;
    perspective: 1000px; 
margin: 5rem 0;
}

.hero-section::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(1, 99, 166, 0.15), transparent);
    pointer-events: none;
}

.gps-route {
    position: absolute; width: 4px; height: 200px;
    background: linear-gradient(to bottom, transparent, var(--color-success), transparent);
    opacity: 0.6; transform: rotate(45deg);
    animation: gpsFlow 4s infinite linear;
}
.gps-route:nth-child(1) { top: -10%; left: 20%; animation-duration: 5s; }
.gps-route:nth-child(2) { top: 20%; left: 80%; animation-duration: 7s; height: 300px; background: linear-gradient(to bottom, transparent, var(--color-primary), transparent); }

@keyframes gpsFlow {
    0% { transform: translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100%) rotate(45deg); opacity: 0; }
}

.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem;
    align-items: center; position: relative; z-index: 2;
}

.hero-text-content { padding-right: 1rem; }

.hero-status-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(46, 204, 113, 0.15); border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--color-success); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; padding: 0.5rem 1rem; border-radius: 50px;
    margin-bottom: 1.5rem;
}
.pulsing-dot {
    width: 8px; height: 8px; background: var(--color-success); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.hero-title {
    font-size: 3.8rem; line-height: 1.1; margin-bottom: 1.5rem; color: #fff;
    font-weight: 900; letter-spacing: -1px;
}
.hero-title span {
    background: linear-gradient(120deg, #3498db, #0163a6);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem; color: #a0aec0; margin-bottom: 2.5rem;
    max-width: 90%; line-height: 1.7; border-left: 2px solid var(--color-primary);
    padding-left: 1.5rem;
}

.hero-actions { display: flex; gap: 1.2rem; align-items: center; }

.btn-nav-start {
    background: var(--color-primary); color: white;
    padding: 1.2rem 3rem; border-radius: 12px; font-weight: 700;
    font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(1, 99, 166, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; align-items: center; gap: 10px;
}
.btn-nav-start:hover { transform: translateY(-4px); box-shadow: 0 15px 30px rgba(1, 99, 166, 0.5); background: #0984e3; }

.btn-nav-outline {
    background: transparent; border: 2px solid rgba(255,255,255,0.2);
    color: white; padding: 1.1rem 2.5rem; border-radius: 12px; font-weight: 700;
    transition: 0.3s;
}
.btn-nav-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }

.hero-visual {
    position: relative; height: 450px;
    display: flex; justify-content: center; align-items: center;
    transform: rotateX(10deg) rotateY(-10deg); 
}

.gps-radar {
    width: 350px; height: 350px;
    border: 2px solid rgba(1, 99, 166, 0.3);
    border-radius: 50%;
    position: relative;
    display: flex; justify-content: center; align-items: center;
    background: radial-gradient(circle, rgba(1, 99, 166, 0.19) 0%, #22222236 70%);
    box-shadow: 0 0 50px rgba(1, 99, 166, 0.1);
}

.gps-radar::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(1, 99, 166, 0.4) 60deg, transparent 60deg);
    animation: radarScan 4s infinite linear;
}
@keyframes radarScan { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }



.map-marker {
    position: absolute; width: 40px; height: 40px;
    background: white; border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: popIn 0.5s ease-out forwards;
    opacity: 0;
}
.map-marker::after { content: 'P'; font-weight: 900; color: var(--color-primary); transform: rotate(45deg); font-size: 1.2rem; }

.marker-1 { top: 20%; right: 20%; animation-delay: 1s; }
.marker-2 { bottom: 30%; left: 10%; animation-delay: 2s; }
.marker-3 { top: 10%; left: 40%; animation-delay: 3s; transform: scale(0.8) rotate(-45deg); opacity: 0.5; }

@keyframes popIn {
    0% { transform: scale(0) rotate(-45deg); opacity: 0; }
    80% { transform: scale(1.1) rotate(-45deg); opacity: 1; }
    100% { transform: scale(1) rotate(-45deg); opacity: 1; }
}

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

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { border-left: none; padding-left: 0; margin: 0 auto 2.5rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; } 
    .gps-route { display: none; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-nav-start, .btn-nav-outline { width: 100%; justify-content: center; }
}

.bento-section { margin-top: -4rem; position: relative; z-index: 5; margin-bottom: 6rem; }

.bento-grid {
    display: grid;

    grid-template-columns: 1.6fr 1fr;

    grid-template-rows: 250px 250px;
    gap: 1.5rem;
}

.bento-item:first-child {
    grid-row: span 2; 
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.bento-item:first-child .post-card { 
    height: 100%; border: none; background: transparent; display: block;
}

.bento-item:first-child .post-thumbnail {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    padding-top: 0 !important; margin: 0; z-index: 0;
}
.bento-item:first-child .post-thumbnail::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;

    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.bento-item:first-child .post-thumbnail img {
    height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.bento-item:first-child:hover .post-thumbnail img { transform: scale(1.05); }

.bento-item:first-child .post-content {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 2.5rem; z-index: 1; color: white;
    display: flex; flex-direction: column; justify-content: flex-end;
}

.bento-item:first-child .post-meta {
    background: var(--color-primary); padding: 4px 12px; border-radius: var(--radius-pill);
    font-size: 0.8rem; font-weight: 700; display: inline-block; width: fit-content; margin-bottom: 1rem;
    color: white;
}
.bento-item:first-child .post-title { 
    font-size: 2.2rem; margin-bottom: 0.5rem; color: white; line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.bento-item:first-child .post-excerpt { 
    font-size: 1.1rem; opacity: 0.9; margin-bottom: 0; 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.bento-item:not(:first-child) {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);

    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.bento-item:not(:first-child):hover { 
    transform: translateY(-4px); box-shadow: var(--shadow-lg); 
}

.bento-item:not(:first-child) .post-card {
    display: flex;
    flex-direction: row; 
    height: 100%;
    width: 100%;
    align-items: stretch; 
}

.bento-item:not(:first-child) .post-thumbnail {
    width: 40%; 
    min-width: 140px; 
    height: 100%; 
    padding-top: 0 !important; 
    margin: 0; 
    position: relative;
    flex-shrink: 0; 
}

.bento-item:not(:first-child) .post-thumbnail img {
    height: 100%; width: 100%; object-fit: cover;
}

.bento-item:not(:first-child) .post-content {
    width: 60%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
}

.bento-item:not(:first-child) .post-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
    color: var(--color-text-heading); 
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bento-item:not(:first-child) .post-title a {
    color: inherit; text-decoration: none;
}
.bento-item:not(:first-child):hover .post-title a {
    color: var(--color-primary);
}

.bento-item:not(:first-child) .post-meta {
    font-size: 0.75rem; 
    color: var(--color-text-muted); 
    font-weight: 700; 
    text-transform: uppercase;
    margin-bottom: 0;
}

.bento-item:not(:first-child) .post-excerpt { display: none; }

@media (max-width: 992px) {
    .bento-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
        gap: 2rem;
    }
    .bento-item:first-child { 
        height: 450px; 
        grid-row: auto; 
    }

    .bento-item:not(:first-child) { 
        height: 180px; 
    }
}

@media (max-width: 576px) {

    .bento-item:not(:first-child) { 
        height: auto; 
    }
    .bento-item:not(:first-child) .post-card { 
        flex-direction: column; 
    }
    .bento-item:not(:first-child) .post-thumbnail { 
        width: 100%; height: 200px; 
    }
    .bento-item:not(:first-child) .post-content { 
        width: 100%; padding: 1.5rem; 
    }
}

.section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2.5rem; padding-bottom: 1rem;
}
.section-title { font-size: 2rem; color: var(--color-text-heading); margin: 0; display: flex; align-items: center; gap: 10px; }

.section-title::before { 
    content: 'P'; background: var(--color-primary); color: white; width: 32px; height: 32px; 
    border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; 
}

.view-all { 
    color: var(--color-primary); font-weight: 600; font-size: 0.9rem; 
    background: rgba(1, 99, 166, 0.1); padding: 0.5rem 1rem; border-radius: var(--radius-pill); transition: 0.2s; 
}
.view-all:hover { background: var(--color-primary); color: white; }

.posts-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 5rem;
}

.post-card {
    background: white; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition); height: 100%; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

a.post-thumbnail {
    display: block; width: 100%; position: relative; padding-bottom: 60%;
    overflow: hidden; background: #eee;
}
a.post-thumbnail img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.post-card:hover a.post-thumbnail img { transform: scale(1.08); }

.post-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }

.post-meta {
    font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.8rem;
    font-weight: 500; display: flex; justify-content: space-between; align-items: center;
}
.post-category { color: var(--color-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.post-title { font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.4; color: var(--color-text-heading); }
.post-title a { transition: color 0.2s; }
.post-title a:hover { color: var(--color-primary); }

.post-excerpt { font-size: 0.95rem; color: var(--color-text-body); margin-bottom: 0; line-height: 1.6; }

.post-card::after { display: none; }

.post-single {
    background: white; padding: 3rem; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid #eef2f6;
    max-width: 900px; margin: 0 auto 5rem;
}
.post-single h1 { font-size: 2.8rem; color: var(--color-text-heading); margin-bottom: 1rem; }
.breadcrumbs { 
    color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 2.5rem; 
    background: #f8f9fa; padding: 0.8rem 1.2rem; border-radius: var(--radius-sm); 
    display: inline-block;
}

.post-single .post-content { font-size: 1.15rem; line-height: 1.8; color: #374151; }
.post-single h2 { color: var(--color-primary); margin-top: 3rem; margin-bottom: 1.2rem; font-size: 1.8rem; }
.post-single p { margin-bottom: 1.5rem; }
.post-single ul { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style-type: none; }
.post-single ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.post-single ul li::before { 
    content: '✓'; color: var(--color-success); position: absolute; left: 0; font-weight: bold; 
}
.post-single blockquote {
    background: #f0f7ff; border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem; margin: 2rem 0; font-style: italic; color: var(--color-text-heading);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.post-single table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    margin: 3rem 0; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden;
}
.post-single th { background: var(--color-primary); color: white; padding: 1rem; text-align: left; font-weight: 600; }
.post-single td { padding: 1rem; border-bottom: 1px solid #e2e8f0; }

.site-footer {
    background: #f1f3f5; color: var(--color-text-body);
    padding: 5rem 0 2rem; margin-top: 6rem;
    border-top: 1px solid #e0e0e0;
}
.footer-widgets { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; margin-bottom: 4rem; }
.footer-widget h3 { color: var(--color-primary); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-widget a { color: var(--color-text-body); transition: 0.3s; font-weight: 500; }
.footer-widget a:hover { color: var(--color-primary); transform: translateX(5px); display: inline-block; }
.policies-links {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem;
}
.policies-links a { font-size: 0.85rem; color: var(--color-text-muted); }
.footer-bottom { text-align: center; margin-top: 2rem; font-size: 0.9rem; color: #95a5a6; }

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 2rem; }
    .bento-item:first-child { height: 450px; grid-row: auto; }
    .bento-item:not(:first-child) { flex-direction: row; height: 180px; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-content { padding-right: 0; display: flex; flex-direction: column; align-items: center; }
    .hero-visual { display: none; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 2.5rem; }
    .posts-grid { grid-template-columns: 1fr; }
    .bento-item:not(:first-child) { flex-direction: column; height: auto; }
    .bento-item:not(:first-child) .post-thumbnail { width: 100%; height: 200px; }
    .bento-item:not(:first-child) .post-content { width: 100%; }
}