:root {
  --bg: #f5f7fa;
  --panel: #ffffff;
  --text: #1a3a52;
  --muted: #5a7280;
  --accent: #3b9dd9;
  --accent-dark: #1a3a52;
  --highlight: #ffc107;
  --border: rgba(26, 58, 82, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8f1f7 45%, #f0f4f8 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  padding: 1.1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid var(--accent);
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-brand-dropdown {
  position: relative;
  display: inline-block;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  display: block;
  padding: 0.5rem 1rem;
}

.brand:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(59, 157, 217, 0.4));
}

.brand span { color: var(--highlight); }

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.98);
  padding: 1rem;
  border: 2px solid var(--accent);
  border-radius: 0.75rem;
  margin-top: 0.5rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(59, 157, 217, 0.2);
  z-index: 200;
}

.nav-brand-dropdown:hover .nav-links {
  display: flex;
}

.nav-links a {
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--highlight);
  color: var(--text);
  font-weight: 600;
}

.hero {
  padding: 4.5rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 auto 1.5rem;
  max-width: 700px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: scale(1.08) translateY(-2px); }
.btn-primary { background: var(--highlight); color: var(--text); font-weight: 700; }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-secondary:hover { background: var(--accent); color: white; }

.hero-card {
  max-width: 460px;
  width: 100%;
}

.hero-card img {
  width: 100%;
  display: block;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 1.2rem 0 3.2rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.card:hover { 
  border-color: var(--accent);
  transform: scale(1.05);
}
.card h3 { margin-top: 0; color: var(--accent-dark); }
.card p { color: var(--muted); }

.destinations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.destination:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(59, 157, 217, 0.2);
}

.destination img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.destination .content { padding: 1rem; text-align: center; }
.destination .content h3 { color: var(--accent-dark); }

.portfolio-section {
  background: linear-gradient(135deg, rgba(59, 157, 217, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.before-after-card {
  background: var(--panel);
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 4px 20px rgba(26, 58, 82, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.before-after-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(26, 58, 82, 0.2);
}

.before-after-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  background: #f0f0f0;
}

.before-after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-label {
  position: absolute;
  top: 10px;
  padding: 6px 12px;
  background: rgba(26, 58, 82, 0.85);
  color: white;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 10;
}

.before { left: 10px; }
.after { right: 10px; }

.before-after-info {
  padding: 1rem;
  text-align: center;
}

.before-after-info h4 {
  color: var(--accent-dark);
  margin: 0 0 0.5rem;
}

.before-after-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  background: var(--panel);
  border-radius: 1rem;
  border: 2px solid var(--border);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

.contact-item strong { color: var(--accent-dark); }
.contact-icon { font-size: 1.2rem; width: 24px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1rem;
}

.social-links a { color: var(--accent); font-weight: 600; transition: color 0.2s; }
.social-links a:hover { color: var(--highlight); }

footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  border-top: 2px solid var(--accent);
  text-align: center;
}

@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero, .cards, .destinations { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding-top: 3rem; }
  .stats { flex-direction: column; gap: 0.4rem; }
}










/* =========================
   PROFESSIONAL HEADER
========================= */


.va-header{

position:sticky;
top:0;
z-index:500;

background:rgba(255,255,255,0.92);

backdrop-filter:blur(12px);

border-bottom:2px solid var(--accent);

}


.va-nav{

display:flex;

justify-content:space-between;

align-items:center;

height:75px;

}



/* LOGO */

.va-brand{

font-size:1.5rem;

font-weight:900;

letter-spacing:2px;

color:var(--accent-dark);

}


.va-brand span{

color:var(--highlight);

}



/* MENU */

.va-links{

display:flex;

gap:2rem;

align-items:center;

}


.va-links a{

font-weight:600;

color:var(--text);

transition:.25s;

position:relative;

}


.va-links a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:3px;

background:var(--highlight);

transition:.25s;

}


.va-links a:hover::after{

width:100%;

}



.va-links a:hover{

color:var(--accent);

}



/* BUTTON */

.va-quote{

background:var(--highlight);

color:var(--text);

font-weight:800;

padding:.75rem 1.3rem;

border-radius:50px;

transition:.25s;

}


.va-quote:hover{

transform:translateY(-3px);

box-shadow:0 8px 20px rgba(255,193,7,.35);

}



/* MOBILE */

@media(max-width:768px){


.va-nav{

flex-direction:column;

height:auto;

padding:1rem 0;

gap:1rem;

}


.va-links{

gap:1rem;

flex-wrap:wrap;

justify-content:center;

font-size:.9rem;

}


.va-quote{

display:none;

}


}