/* ===== SHOT BID - Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #4A6CF7;
  --primary-dark: #3A5BD9;
  --primary-light: #E8EDFF;
  --secondary: #1E2A5A;
  --white: #ffffff;
  --light-bg: #F4F7FF;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 5px 30px rgba(74, 108, 247, 0.15);
  --shadow-lg: 0 10px 40px rgba(74, 108, 247, 0.2);
  --radius: 12px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 45px; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 15px; color: var(--text);
  position: relative; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--primary); color: var(--white) !important;
  padding: 10px 24px; border-radius: 50px; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 25px; height: 3px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-light) 50%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,108,247,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container { display: flex; align-items: center; gap: 60px; }
.hero-content { flex: 1; }
.hero-content .badge {
  display: inline-block; background: var(--primary-light);
  color: var(--primary); padding: 8px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 48px; font-weight: 800; line-height: 1.2;
  color: var(--secondary); margin-bottom: 20px;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 17px; color: var(--text-light); line-height: 1.7; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: var(--white);
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: none; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent; color: var(--primary);
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: 2px solid var(--primary); cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 450px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-blue { background: var(--light-bg); }
.section-title {
  text-align: center; margin-bottom: 50px;
}
.section-title h2 {
  font-size: 36px; font-weight: 700; color: var(--secondary); margin-bottom: 15px;
}
.section-title h2 span { color: var(--primary); }
.section-title p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }
.section-title .line {
  width: 60px; height: 4px; background: var(--primary); margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-card .icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 30px;
  transition: var(--transition);
}
.service-card:hover .icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--secondary); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ===== STATS ===== */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  padding: 50px 0;
}
.stat-item { text-align: center; }
.stat-item h3 { font-size: 40px; font-weight: 800; color: var(--primary); }
.stat-item p { font-size: 15px; color: var(--text-light); margin-top: 5px; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
  margin-bottom: 25px;
}
.testimonial-card .stars { color: #FFC107; font-size: 18px; margin-bottom: 15px; }
.testimonial-card p { font-style: italic; color: var(--text-light); line-height: 1.7; margin-bottom: 15px; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author-avatar {
  width: 45px; height: 45px; border-radius: 50%;
  background: var(--primary-light); display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 18px;
}
.testimonial-card .author-info h4 { font-size: 15px; font-weight: 600; color: var(--secondary); }
.testimonial-card .author-info span { font-size: 13px; color: var(--text-light); }

/* ===== GOOGLE REVIEW ===== */
.review-section { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); padding: 60px 0; text-align: center; }
.review-section h2 { color: var(--white); font-size: 32px; margin-bottom: 15px; }
.review-section p { color: rgba(255,255,255,0.85); margin-bottom: 25px; font-size: 16px; }
.review-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--primary); padding: 15px 35px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  transition: var(--transition);
}
.review-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* ===== BLOG CARDS ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img {
  height: 200px; background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center; font-size: 50px; color: var(--white);
}
.blog-card .blog-body { padding: 25px; }
.blog-card .blog-date { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 18px; font-weight: 600; color: var(--secondary); margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 15px; }
.blog-card .read-more { color: var(--primary); font-weight: 600; font-size: 14px; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius); padding: 40px; color: var(--white);
}
.contact-info-card h3 { font-size: 24px; margin-bottom: 20px; }
.contact-info-card .info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.contact-info-card .info-item .icon-box {
  width: 45px; height: 45px; border-radius: 50%;
  background: rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-info-card .info-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-info-card .info-item p { font-size: 14px; opacity: 0.85; }
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 24px; font-weight: 600; color: var(--secondary); margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid #E5E9F5;
  border-radius: 8px; font-family: 'Poppins', sans-serif;
  font-size: 14px; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== PROFILE PAGE ===== */
.profile-hero {
  padding: 130px 0 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); text-align: center;
}
.profile-hero h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
.profile-hero p { font-size: 17px; opacity: 0.9; max-width: 700px; margin: 0 auto; }
.timeline { max-width: 800px; margin: 0 auto; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 50%;
  transform: translateX(-50%); width: 3px; height: 100%;
  background: var(--primary-light);
}
.timeline-item { display: flex; margin-bottom: 40px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item .timeline-content {
  width: 45%; background: var(--white); border-radius: var(--radius);
  padding: 25px; box-shadow: var(--shadow);
}
.timeline-item .timeline-content h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
.timeline-item .timeline-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.timeline-dot {
  width: 16px; height: 16px; background: var(--primary);
  border-radius: 50%; position: absolute; left: 50%;
  transform: translateX(-50%); top: 30px; z-index: 2;
  border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--primary);
}

/* ===== FOOTER ===== */
.footer { background: var(--secondary); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 18px; margin-bottom: 20px; font-weight: 600; }
.footer-col p { font-size: 14px; opacity: 0.8; line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; opacity: 0.8; transition: var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--primary); padding-left: 5px; }
.footer-col .social-links { display: flex; gap: 12px; margin-top: 15px; }
.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: var(--transition); font-size: 16px;
}
.footer-col .social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 14px; opacity: 0.7;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; box-shadow: 0 5px 25px rgba(37,211,102,0.4);
  transition: var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

/* ===== CONSULTATION POPUP ===== */
.popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6); z-index: 10000;
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(5px);
}
.popup-overlay.active { display: flex; }
.popup-box {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; width: 90%; max-width: 500px;
  position: relative; animation: popIn 0.3s ease;
}
@keyframes popIn { from{transform:scale(0.8);opacity:0} to{transform:scale(1);opacity:1} }
.popup-box .close-popup {
  position: absolute; top: 15px; right: 20px;
  font-size: 28px; cursor: pointer; color: var(--text-light);
  background: none; border: none; line-height: 1;
}
.popup-box h2 { font-size: 24px; color: var(--secondary); margin-bottom: 5px; }
.popup-box .subtitle { color: var(--primary); font-weight: 600; margin-bottom: 20px; font-size: 14px; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  text-align: center;
}
.page-header h1 { font-size: 40px; font-weight: 800; color: var(--secondary); }
.page-header h1 span { color: var(--primary); }
.page-header p { color: var(--text-light); margin-top: 10px; font-size: 16px; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; margin-top: 15px; font-size: 14px; }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 36px; }
  .hero-buttons { justify-content: center; }
  .hero-image img { max-width: 300px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; padding-left: 50px; }
  .timeline-item .timeline-content { width: 100%; }
  .timeline-dot { left: 20px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 70px; left: 0; width: 100%;
    background: var(--white); flex-direction: column;
    padding: 30px; gap: 20px;
    transform: translateX(-100%); transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  .nav-links.active { transform: translateX(0); }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 30px; }
  .section-title h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-item h3 { font-size: 30px; }
}
