/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #0b203c;
  --secondary-color: #1c75bc;
  --accent-color: #f97316;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-color: #f9fafb;
  --gradient-dark: linear-gradient(135deg, #0b203c 0%, #1c355e 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-accent { color: var(--accent-color); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 2rem; }

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 5rem 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 179, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 179, 136, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-color);
  color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-top {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  color: var(--white);
}

.header-top a:hover {
  color: var(--accent-color);
}

.contact-info-top span {
  margin-right: 20px;
}
.contact-info-top i {
  margin-right: 5px;
  color: var(--accent-color);
}

.nav-container {
  display: flex;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  color: var(--accent-color);
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links li a {
  font-weight: 500;
  color: var(--primary-color);
  font-size: 1rem;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent-color);
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  margin-top: 150px;
  background: linear-gradient(rgba(11, 32, 60, 0.8), rgba(11, 32, 60, 0.8)), url('../images/home_banner.png') center/cover no-repeat;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
}

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

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  color: #e5e7eb;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* Quick Links Cards */
.quick-links {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ql-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 25px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-bottom: 4px solid transparent;
}

.ql-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--accent-color);
}

.ql-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.ql-card:hover i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.ql-card h3 {
  font-size: 1.125rem;
  margin: 0;
}

/* Panel Section */
.consultation-panel {
  background: var(--white);
  padding: 4rem 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.panel-item {
  padding: 20px;
}

.panel-item h4 {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.panel-item p {
  font-weight: 500;
  color: var(--text-dark);
}

.panel-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

/* Services / Insurance Categories */
.services-section {
  background: var(--bg-color);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.category-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 30px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
}

.category-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.category-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.category-link i {
  font-size: 1rem;
  margin: 0;
  transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
  transform: translateX(5px);
}

/* Inner Page Header */
.page-header {
  margin-top: 150px;
  background: var(--gradient-dark);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-header.products { background-image: linear-gradient(rgba(11, 32, 60, 0.7), rgba(11, 32, 60, 0.7)), url('../images/products_banner.png'); }
.page-header.about { background-image: linear-gradient(rgba(11, 32, 60, 0.7), rgba(11, 32, 60, 0.7)), url('../images/about_banner.png'); }
.page-header.why-us { background-image: linear-gradient(rgba(11, 32, 60, 0.7), rgba(11, 32, 60, 0.7)), url('../images/why_us_banner.png'); }
.page-header.testimonials { background-image: linear-gradient(rgba(11, 32, 60, 0.7), rgba(11, 32, 60, 0.7)), url('../images/testimonials_banner.png'); }
.page-header.contact, .page-header.quote { background-image: linear-gradient(rgba(11, 32, 60, 0.7), rgba(11, 32, 60, 0.7)), url('../images/contact_banner.png'); }

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
}

.page-header p {
  color: #e5e7eb;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Forms */
.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(28, 117, 188, 0.1);
}

select.form-control {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center;
}

/* Footer */
.footer {
  background: var(--bg-color);
  color: var(--text-light);
  padding: 5rem 0 0;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .header-top {
    display: none;
  }
  
  .hero {
    margin-top: 120px;
    padding: 6rem 0 5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
/* Infinite Carousel */  
  
/* Infinite Carousel */  
.partners-section { padding: 5rem 0; background: white; overflow: hidden; }  
.carousel-container { width: 100%; overflow: hidden; position: relative; }  
.carousel-container::before, .carousel-container::after { content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }  
.carousel-container::before { left: 0; background: linear-gradient(to right, white, transparent); }  
.carousel-container::after { right: 0; background: linear-gradient(to left, white, transparent); }  
.carousel-track { display: flex; width: calc(150px * 14); animation: scroll 20s linear infinite; }
.carousel-slide { width: 150px; display: flex; align-items: center; justify-content: center; padding: 0 15px; }
.carousel-slide img { max-width: 100%; max-height: 60px; object-fit: contain; opacity: 0.9; transition: all 0.3s ease; }
.carousel-slide img:hover { opacity: 1; transform: scale(1.05); }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-150px * 7)); } }

.header-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}
