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

:root {
  --brand:#0b63b3;
  --brand-dark:#084a8a;
  --accent:#e63946;
  --accent-dark:#c92a36;
  --muted:#64748b;
  --bg:#ffffff;
  --bg-secondary:#f8fafc;
  --text:#0f172a;
  --text-light:#475569;
  --border:#e2e8f0;
  --shadow:0 1px 3px rgba(0,0,0,0.05);
  --shadow-md:0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1);
  --shadow-xl:0 20px 25px -5px rgba(0,0,0,0.1);
  --radius:12px;
  --radius-lg:16px;
}








/* Video Background Styles */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.9) 100%);
  z-index: 1;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  filter: brightness(0.9) contrast(1.1);
  object-fit: cover;
}

.background-video.active {
  opacity: 0.2; /* Adjust opacity as needed */
}

/* Ensure content stays above video */
header, .hero, section, footer {
  position: relative;
  z-index: 2;
}

/* Remove the hero::before gradient if you want full video background */
.hero::before {
  display: none;
}

/* Adjust hero background for better text readability */
.hero {
  background: transparent;
}

/* For hero section specifically, you might want more overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}












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

body {
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
  overflow-x:hidden;
}

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

/* Header with glassmorphism effect */
header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,0.8);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
  padding:16px 0;
  transition:all 0.3s ease;
}

header.scrolled {
  box-shadow:var(--shadow-md);
}

.header-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}

.brand {
  display:flex;
  gap:14px;
  align-items:center;
}

.logo {
  width:52px;
  height:52px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--brand),#3b9eff);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:900;
  font-size:20px;
  box-shadow:0 4px 12px rgba(11,99,179,0.3);
  transition:transform 0.3s ease;
}

.logo:hover {
  transform:rotate(-5deg) scale(1.05);
}

.brand-text > div:first-child {
  font-weight:800;
  font-size:18px;
  color:var(--text);
}

.brand-text .muted {
  font-size:13px;
  color:var(--muted);
}

nav {
  display:flex;
  gap:8px;
}

nav a {
  text-decoration:none;
  color:var(--text-light);
  font-weight:600;
  font-size:15px;
  padding:10px 18px;
  border-radius:10px;
  transition:all 0.3s ease;
  position:relative;
}

nav a:hover {
  background:var(--bg-secondary);
  color:var(--brand);
  transform:translateY(-2px);
}

/* Hero Section */
.hero {
  position:relative;
  padding:80px 0 60px 0;
  overflow:hidden;
}

.hero::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:100%;
  background:linear-gradient(135deg, rgba(11,99,179,0.05), rgba(59,158,255,0.08), rgba(11,99,179,0.03));
  z-index:0;
}

.hero-content {
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.badge {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--accent);
  color:white;
  padding:8px 16px;
  border-radius:100px;
  font-weight:700;
  font-size:13px;
  box-shadow:0 4px 12px rgba(230,57,70,0.3);
  animation:pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow:0 4px 12px rgba(230,57,70,0.3); }
  50% { box-shadow:0 4px 20px rgba(230,57,70,0.5); }
}

.hero h1 {
  font-size:clamp(32px, 5vw, 56px);
  font-weight:900;
  line-height:1.15;
  color:var(--text);
  margin:24px 0;
  letter-spacing:-0.02em;
}

.hero h1 span {
  background:linear-gradient(135deg, var(--brand), #3b9eff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero p {
  font-size:18px;
  color:var(--text-light);
  margin:0 auto 32px auto;
  max-width:600px;
}

.hero-cta {
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:15px;
  transition:all 0.3s ease;
  border:none;
  cursor:pointer;
  white-space:nowrap;
}

.btn-primary {
  background:linear-gradient(135deg, var(--brand), #3b9eff);
  color:white;
  box-shadow:0 4px 14px rgba(11,99,179,0.4);
}

.btn-primary:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(11,99,179,0.5);
}

.btn-call {
  color:white;
  box-shadow:var(--shadow-md);
  position:relative;
  overflow:hidden;
}

.btn-call::before {
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background:rgba(255,255,255,0.2);
  transform:translate(-50%, -50%);
  transition:width 0.6s, height 0.6s;
}

.btn-call:hover::before {
  width:300px;
  height:300px;
}

.btn-icon {
  width:20px;
  height:20px;
  position:relative;
  z-index:1;
}

/* Social buttons */
.whatsapp { background:#25D366; }
.whatsapp:hover { background:#20b358; transform:translateY(-2px); }
.facebook { background:#1877F2; }
.facebook:hover { background:#0d65d9; transform:translateY(-2px); }
.tiktok { background:#000; }
.tiktok:hover { background:#222; transform:translateY(-2px); }

/* Sections */
section { padding:80px 0; }

.section-header { text-align:center; margin-bottom:48px; }
.section-header h2 { font-size:clamp(32px,4vw,42px); font-weight:900; color:var(--text); margin-bottom:12px; letter-spacing:-0.02em; }
.section-header p { font-size:18px; color:var(--text-light); max-width:600px; margin:0 auto; }

/* Grid & Card */
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; }

.card {
  background:white;
  padding:32px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}

.card::before {
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,var(--brand),#3b9eff);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.4s ease;
}

.card:hover { transform:translateY(-8px); box-shadow:var(--shadow-xl); border-color:var(--brand); }
.card:hover::before { transform:scaleX(1); }

.service-icon {
  width:56px;
  height:56px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(11,99,179,0.1), rgba(59,158,255,0.1));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:20px;
}

.service-title { font-weight:800; font-size:22px; margin-bottom:12px; color:var(--text); }
.card p { color:var(--text-light); font-size:15px; line-height:1.7; }

/* Gallery */
#gallery { background:var(--bg-secondary); }

.gallery { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; }
.thumb {
  width:100%;
  height:240px;
  border-radius:var(--radius);
  object-fit:cover;
  cursor:pointer;
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  border:3px solid transparent;
  position:relative;
  overflow:hidden;
}

.thumb::after {
  content:'🔍';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(0);
  font-size:48px;
  opacity:0;
  transition:all 0.3s ease;
}

.thumb:hover { transform:scale(1.02); box-shadow:var(--shadow-lg); border-color:var(--brand); }
.thumb:hover::after { transform:translate(-50%,-50%) scale(1); opacity:1; }

.gallery-buttons { display:flex; justify-content:center; margin-top:32px; }
.gallery-btn {
  background:var(--brand);
  color:white;
  border:none;
  padding:14px 32px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:var(--shadow-md);
}
.gallery-btn:hover { background:var(--brand-dark); transform:translateY(-2px); box-shadow:var(--shadow-lg); }

/* Contact */
.contact-wrapper {
  background:linear-gradient(135deg, rgba(11,99,179,0.05), rgba(59,158,255,0.05));
  padding:48px;
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
}

.contact {
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}

.contact-info h3 {
  font-size:24px;
  font-weight:800;
  margin-bottom:24px;
  color:var(--text);
}

.contact-item { display:flex; align-items:center; gap:16px; padding:16px 0; border-bottom:1px solid var(--border); }
.contact-item:last-child { border-bottom:none; }

.contact-icon {
  width:48px;
  height:48px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--brand),#3b9eff);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.contact-details { flex:1; }
.contact-label { font-size:13px; color:var(--muted); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.contact-value { font-size:16px; font-weight:700; color:var(--text); margin-top:4px; }
.contact-value a { color:var(--brand); text-decoration:none; transition:color 0.3s ease; }
.contact-value a:hover { color:var(--brand-dark); }

.contact img { width:100%; max-width:400px; margin:0 auto; display:block; filter:drop-shadow(0 10px 25px rgba(0,0,0,0.1)); }

/* Footer */
footer {
  background:var(--text);
  color:white;
  padding:32px 0;
  text-align:center;
}
.footer-content { display:flex; flex-direction:column; gap:16px; align-items:center; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.footer-links a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:14px; transition:color 0.3s ease; }
.footer-links a:hover { color:white; }

/* Popup */
#image-popup {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:rgba(0,0,0,0.95);
  backdrop-filter:blur(10px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:1000;
  padding:20px;
  animation:fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

#image-popup img {
  max-width:90%;
  max-height:90vh;
  border-radius:var(--radius);
  box-shadow:0 25px 50px rgba(0,0,0,0.5);
  object-fit:contain;
  animation:zoomIn 0.3s ease;
}
@keyframes zoomIn { from { transform:scale(0.9); opacity:0; } to { transform:scale(1); opacity:1; } }

#close-btn {
  position:absolute;
  top:20px;
  right:20px;
  background:var(--accent);
  color:white;
  border:none;
  padding:12px 24px;
  border-radius:10px;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:all 0.3s ease;
  z-index:1001;
}
#close-btn:hover { background:var(--accent-dark); transform:scale(1.05); }

/* Responsive */
@media(min-width:768px){
  .hero { padding:100px 0 80px 0; }
  .contact { grid-template-columns:1fr 1fr; }
  .gallery { grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:20px; }
  .thumb { height:280px; }
}
@media(min-width:1024px){
  .hero { padding:120px 0 100px 0; }
  nav a { padding:10px 20px; }
  .gallery { grid-template-columns:repeat(4,1fr); }
}
html { scroll-behavior:smooth; }
