/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== COLORS ===== */
:root {
  --primary: #0b3d91;
  --primary-dark: #062a66;
  --accent: #f39c12;
  --accent2: #e74c3c;
  --light: #f4f7fc;
  --white: #fff;
  --dark: #1a1a2e;
  --gray: #666;
  --gradient: linear-gradient(135deg, #0b3d91, #1a6dd4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.nav-container {
  max-width: 1200px; margin: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 50px; }
.nav-logo .lic-logo { height: 45px; border-radius: 5px; }
.nav-logo span { font-weight: 700; font-size: 1.1rem; color: var(--primary); line-height: 1.2; }
.nav-logo small { font-size: 0.65rem; color: var(--gray); display: block; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 0.95rem; color: var(--dark);
  padding: 8px 0; position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; position: static; width: auto; height: auto; background: none; }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--white); border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s; z-index: 1002; padding: 10px 0;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.9rem;
  color: var(--dark); transition: background 0.2s, color 0.2s;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--light); color: var(--primary); }

.nav-cta {
  background: var(--gradient); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 25px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; z-index: 1002; }
.hamburger span { width: 28px; height: 3px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative; width: 100%; height: 85vh; min-height: 500px;
  overflow: hidden; margin-top: 70px;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,61,145,0.85), rgba(26,109,212,0.6));
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.slide-content { color: var(--white); max-width: 700px; }
.slide-content h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
.slide-content p { font-size: 1.15rem; margin-bottom: 25px; opacity: 0.95; }
.slider-dots {
  position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dots span {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s;
}
.slider-dots span.active { background: var(--accent); transform: scale(1.3); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 32px; border-radius: 30px;
  font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: all 0.3s; border: none;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #e08e0b; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243,156,18,0.4); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.container { max-width: 1200px; margin: auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 10px; }
.section-header .underline {
  width: 60px; height: 4px; background: var(--accent);
  margin: 0 auto 15px; border-radius: 2px;
}
.section-header p { color: var(--gray); max-width: 600px; margin: auto; }
.section-dark .section-header h2 { color: var(--white); }

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--white); padding: 35px 25px; border-radius: 15px;
  text-align: center; transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.feature-card .icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.feature-card h3 { margin-bottom: 10px; color: var(--primary); }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.about-img { position: relative; }
.about-img img { border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.about-img::before {
  content: ''; position: absolute; top: -15px; left: -15px;
  width: 100%; height: 100%; border: 3px solid var(--accent);
  border-radius: 15px; z-index: -1;
}
.about-text h2 { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.about-text p { color: var(--gray); margin-bottom: 15px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 25px;
}
.stat { text-align: center; }
.stat h3 { font-size: 2rem; color: var(--accent); }
.stat p { font-size: 0.85rem; color: var(--gray); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white); border-radius: 15px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); transition: all 0.3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.service-card-img {
  height: 200px; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; color: var(--white);
}
.service-card-body { padding: 25px; }
.service-card-body h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.service-card-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 15px; }
.service-card-body .tag {
  display: inline-block; background: var(--light); color: var(--primary);
  padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
  margin-right: 5px; margin-bottom: 5px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.contact-info-card {
  display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start;
}
.contact-info-card .icon-box {
  width: 55px; height: 55px; min-width: 55px; border-radius: 12px;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.contact-info-card h4 { color: var(--primary); margin-bottom: 3px; }
.contact-info-card p { color: var(--gray); font-size: 0.9rem; }
.contact-form { background: var(--white); padding: 35px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { font-weight: 500; display: block; margin-bottom: 5px; color: var(--primary); font-size: 0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 12px 15px; border: 2px solid #e0e0e0;
  border-radius: 10px; font-family: inherit; font-size: 0.95rem;
  transition: border 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--primary); outline: none;
}
.contact-form textarea { height: 120px; resize: vertical; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}
.review-card {
  background: var(--white); padding: 30px; border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 10px; left: 20px;
  font-size: 5rem; color: rgba(11,61,145,0.08); font-family: serif; line-height: 1;
}
.review-stars { color: var(--accent); margin-bottom: 10px; font-size: 1.1rem; }
.review-card p { color: var(--gray); font-style: italic; margin-bottom: 15px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-author .avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--gradient); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.review-author h4 { font-size: 0.95rem; color: var(--primary); }
.review-author span { font-size: 0.8rem; color: var(--gray); }
.google-review-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 2px solid #4285f4; color: #4285f4;
  padding: 14px 30px; border-radius: 30px; font-weight: 600;
  font-size: 1rem; cursor: pointer; transition: all 0.3s;
}
.google-review-btn:hover { background: #4285f4; color: var(--white); transform: translateY(-2px); }
.google-review-btn img { height: 24px; }

/* ===== VIDEO SECTION ===== */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.video-card {
  border-radius: 15px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: var(--white);
}
.video-card video, .video-card iframe {
  width: 100%; aspect-ratio: 16/9; display: block;
}
.video-card .caption { padding: 15px; font-weight: 500; color: var(--primary); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-grid img {
  width: 100%; height: 250px; object-fit: cover;
  border-radius: 12px; transition: transform 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.gallery-grid img:hover { transform: scale(1.03); cursor: pointer; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: 8px;
  object-fit: contain; animation: zoomIn 0.3s;
}
@keyframes zoomIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  font-size: 2.5rem; color: #fff; background: none; border: none;
  cursor: pointer; z-index: 10; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  width: 50px; height: 50px; border-radius: 50%; font-size: 1.3rem;
  cursor: pointer; transition: background 0.3s; backdrop-filter: blur(4px);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient); color: var(--white);
  padding: 60px 20px; text-align: center;
}
.cta-banner h2 { font-size: 2rem; margin-bottom: 10px; }
.cta-banner p { opacity: 0.9; margin-bottom: 25px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); color: rgba(255,255,255,0.8);
  padding: 60px 20px 20px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px; max-width: 1200px; margin: auto;
}
.footer-col h3 { color: var(--white); margin-bottom: 15px; font-size: 1.1rem; }
.footer-col p, .footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--accent); }
.footer-col .footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-col .social-links { display: flex; gap: 12px; margin-top: 10px; }
.footer-col .social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; transition: 0.3s;
}
.footer-col .social-links a:hover { background: var(--accent); color: var(--white); }
.footer-bottom {
  text-align: center; padding-top: 30px; margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem; max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient); color: var(--white);
  padding: 120px 20px 60px; text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header .breadcrumb { opacity: 0.8; font-size: 0.95rem; }
.page-header .breadcrumb a { color: var(--accent); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 5px 20px rgba(37,211,102,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 5px 35px rgba(37,211,102,0.6); }
}

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed; bottom: 25px; left: 25px; z-index: 999;
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary); color: var(--white); border: none;
  cursor: pointer; font-size: 1.2rem;
  display: none; align-items: center; justify-content: center;
  transition: 0.3s;
}
.scroll-top.show { display: flex; }

/* ===== MARQUEE ===== */
.top-bar {
  background: var(--primary-dark); color: var(--white);
  padding: 8px 0; font-size: 0.85rem; text-align: center;
  position: relative; z-index: 999;
}
.top-bar a { color: var(--accent); margin: 0 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .hero-slider { height: 70vh; }
  .slide-content h1 { font-size: 2rem; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 70px; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 20px; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-120%); transition: transform 0.3s; z-index: 1001;
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.active { transform: translateY(0); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { width: 100%; }
  .nav-dropdown .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: var(--light); border-radius: 8px;
    margin: 8px 0 0; padding: 8px 0; min-width: unset;
  }
  .nav-dropdown .dropdown-menu a { padding: 10px 20px; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .nav-dropdown .dropdown-menu a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero-slider { height: 60vh; min-height: 400px; }
  .slide-content h1 { font-size: 1.6rem; }
  .slide-content p { font-size: 0.95rem; }
  .section { padding: 50px 15px; }
  .section-header h2 { font-size: 1.7rem; }
  .page-header { padding: 100px 15px 40px; }
  .page-header h1 { font-size: 1.8rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .stat h3 { font-size: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-bar { font-size: 0.75rem; padding: 6px 10px; }
  .top-bar span { display: inline-block; margin: 2px 5px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-grid img { height: 180px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .google-review-btn { padding: 12px 20px; font-size: 0.9rem; }
  .service-card-img { height: 180px; }
}

@media (max-width: 480px) {
  .nav-logo span { font-size: 0.9rem; }
  .nav-logo img { height: 40px; }
  .nav-logo .lic-logo { height: 35px; }
  .hero-slider { height: 55vh; min-height: 350px; }
  .slide-content h1 { font-size: 1.3rem; }
  .slide-content p { font-size: 0.85rem; }
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 200px; }
  .contact-form { padding: 20px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; bottom: 15px; right: 15px; }
  .scroll-top { width: 38px; height: 38px; bottom: 15px; left: 15px; }
  .cta-banner h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 0.9rem; }
  .slider-dots span { width: 10px; height: 10px; }
}
