:root {
    --bg-dark: #0a192f;
    --bg-card: rgba(16, 33, 58, 0.7);
    --cyan: #00f2ff;
    --cyan-glow: rgba(0, 242, 255, 0.4);
    --text-main: #e6f1ff;
    --text-dim: #8892b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: 'Inter', sans-serif;*/
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.logo span { color: var(--cyan); }

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at top right, #112240 0%, #0a192f 100%);
    position: relative;
}

.hero-content {
    z-index: 2;
    padding: 0 20px;
}

h1 {
    /*font-size: clamp(2.5rem, 6vw, 4rem);*/
    line-height: 1.1;
    margin-bottom: 20px;
}

.glow-text {
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.hero p {
    color: var(--text-dim);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* BUTTONS */
.btn-cyan, .btn-outline {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: inline-block;
    margin: 5px;
}

.btn-cyan {
    background: var(--cyan);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--cyan-glow);
}

.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px var(--cyan);
}

.btn-outline {
    border: 1px solid var(--cyan);
    color: var(--cyan);
}

.btn-outline:hover {
    background: rgba(0, 242, 255, 0.1);
}

/* AREA GRID */
.areas { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.area-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.area-card:hover {
    border-color: var(--cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.area-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.pin-icon {
    width: 20px;
    height: 20px;
    border: 2px solid var(--cyan);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin-bottom: 15px;
}

/* MAP PLACEHOLDER */
.map-section { padding-bottom: 100px; }

.map-placeholder {
    height: 400px;
    background: rgba(16, 33, 58, 0.5);
    border-radius: 20px;
    border: 1px dashed var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--cyan);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* CTA SECTION */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, var(--bg-dark), #112240);
}

.cta-section h2 { font-size: 2.2rem; margin-bottom: 15px; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .navbar .nav-links { display: none; }
    .hero { height: 70vh; }
    .area-grid { grid-template-columns: 1fr; }
}

.contact iframe{
  height: 30rem;
  width: 100%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}