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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f8f9fa;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
.boxshadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.bg-light {
  background: #eaeef2;
}
.bg-white {
  background: #fff;
}
/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  gap: 10px;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #000;
}
.nav-logo a {
  text-decoration: none;
}
.nav-logo span {
  color: #4285f4;
}
.nav-menu {
  display: flex;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: #000;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}
.breadcrumbs-area {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f1f1f1;
}
.breadcrumbs {
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #007cba;
  font-weight: bold;
  text-decoration: none;
}
.breadcrumbs .separator {
  padding: 10px;
  color: #dadce0;
}
/* Container System */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col-md-3 {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 0 16px;
}

.col-md-9 {
  flex: 0 0 70%;
  max-width: 70%;
  padding: 0 16px;
}

/* Hero Section */
.hero {
  padding: 140px 0 100px;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.25rem;
  color: #5f6368;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  align-items: center;
  justify-content: center;
}

.text-gradient {
  background: linear-gradient(45deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #dadce0;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #5f6368;
  margin-bottom: 24px;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
    0 1px 3px 1px rgba(60, 64, 67, 0.15);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 30px;
  font-weight: 600;
  font-size: 14px;
  flex-wrap: wrap;
}
.hero-stats .stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 2px solid #dadce0;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}

.compare-card.sad {
  border-color: #ffebee;
}
.compare-card.happy {
  border-color: #e8f5e9;
  background: linear-gradient(180deg, #fff 0%, #f1f8f4 100%);
}
.compare-icon {
  font-size: 60px;
  margin-bottom: 20px;
}
.compare-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.compare-card ul {
  text-align: left;
}
.compare-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #dadce0;
  font-size: 0.95rem;
}
compare-card li:last-child {
  border: none;
}
.card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e8f0fe;
  color: #4285f4;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}
.features {
  margin-bottom: 30px;
}
.features li {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #202124;
}

.detail-link {
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #5f6368;
}
.detail-link:hover {
  color: #2160c6;
  font-weight: bold;
}
.scrollable {
  height: 160px;
  overflow: auto;
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  margin-bottom: 30px;
}
.scrollable::-webkit-scrollbar {
  width: 8px; /* Kaydırma çubuğunun genişliği */
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: #807e7e; /* Kaydırma çubuğunun rengi */
  border-radius: 4px; /* Yuvarlatılmış köşeler */
}

.scrollable::-webkit-scrollbar-track {
  background: #e0e0e0; /* Kaydırma çubuğunun arka planı */
  border-radius: 4px; /* Yuvarlatılmış köşeler */
}

.table-scrollable {
  height: 300px;
  overflow: auto;
  border-radius: 8px; /* Yuvarlatılmış köşeler */
  margin-bottom: 30px;
}
.table-scrollable::-webkit-scrollbar {
  width: 8px; /* Kaydırma çubuğunun genişliği */
}

.table-scrollable::-webkit-scrollbar-thumb {
  background-color: #807e7e; /* Kaydırma çubuğunun rengi */
  border-radius: 4px; /* Yuvarlatılmış köşeler */
}

.table-scrollable::-webkit-scrollbar-track {
  background: #e0e0e0; /* Kaydırma çubuğunun arka planı */
  border-radius: 4px; /* Yuvarlatılmış köşeler */
}
.section {
  padding: 100px 0;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.1rem;
  color: #5f6368;
}
.text-center {
  text-align: center;
}
.blue-cta {
  background: #d2e2fc;
  color: white;
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  margin: 50px 0;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.blue-cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.blue-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-block {
  width: 100%;
}
.btn-dark {
  background: #000;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
}
.btn-primary {
  background: #2160c6;
  color: white;
  box-shadow: 0 4px 20px rgba(66, 133, 244, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #1251b6;
  color: white;
  box-shadow: 0 8px 30px rgba(66, 133, 244, 0.3);
}

.btn-secondary {
  background: white;
  color: #000;
  border: 2px solid #dadce0;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: white;
  color: #1251b6;
  border: 2px solid #1251b6;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 8px;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 68, 68, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}

.btn-info {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.btn-purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-pink {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.4);
}

.btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid #e5e5e5;
}

.btn-outline:hover {
  background: #000;
  color: white;
  border-color: #000;
}

.text-gradient {
  background: linear-gradient(45deg, #4285f4, #34a853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid Section */
.grid-section {
  padding: 120px 0;
}

.grid-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

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

.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

/* Cards */
.card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #f8f9fa;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border-color: #1251b6;
}

.card-icon {
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

.card p {
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 24px;
  margin-top: 24px;
  flex-grow: 1;
}
.col {
  background: white;
  padding: 40px 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.col h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}

.col p {
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 24px;
  margin-top: 12px;
  flex-grow: 1;
}
.col a {
  text-decoration: none;
}
.col a:hover {
  font-weight: bold;
}

/* Nasıl */

.howto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}
.howto-card {
  background: white;
  border: 2px solid #dadce0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: 0.3s;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #4285f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}
.howto-card:hover {
  border-color: #4285f4;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
.howto-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.howto-card p {
  font-size: 0.95rem;
  color: #3e4146;
  line-height: 1.6;
}

.content ul {
  margin: 20px 0;
  padding-left: 20px;
  list-style: none;
}

.content ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.blue-box {
  background: linear-gradient(135deg, #4285f4 20%, #3367d6 80%);
  color: white;
  padding: 50px;
  border-radius: 24px;
  text-align: center;
  margin: 50px 0;
  -webkit-border-radius: ;
  -moz-border-radius: ;
  -ms-border-radius: ;
  -o-border-radius: ;
}
.blue-box h2,
.blue-box p {
  color: #fff !important;
}
/* Sidebar Demo */
.sidebar-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #d9e8f6 0%, #fff 100%);
}

.sidebar {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
}

.sidebar h2,
.sidebar h3,
.sidebar h4 {
  margin-bottom: 24px;
  font-weight: 700;
  color: #000;
}

.sidebar-list {
  list-style: none;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  text-decoration: none;
  color: #202124;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s;
  font-weight: 500;
}

.sidebar-list a:hover {
  background: #ebf2fe;
  color: #2160c6;
  border: 1px solid #2160c6;
}

.sidebar-features {
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dadce0;
}
.sidebar-features li {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #e8f0fe 0%, #fff 100%);
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  border-left: 2px solid #2160c6;
  padding: 4px 6px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.secure-note {
  font-size: 13px;
  color: #5f6368;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.content {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
}
.content img {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.content h2 {
  font-size: 1.8rem;
  margin: 50px 0 20px;
  font-weight: 800;
  color: #000;
  border-left: 4px solid #4285f4;
  padding-left: 20px;
}

.content h3 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #000;
}

.content p {
  color: #666;
  line-height: 1.6;
}
.content .lead-text {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 500;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #e8f0fe 0%, #fff 100%);
  border-radius: 24px;
  margin: 40px 0;
  flex-wrap: wrap;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.badge-shield {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #5f6368;
  font-weight: 600;
}
.package-summary {
  text-align: center;
}
.rating-display {
  margin: 20px 0;
  text-align: center;
}
.stars-big {
  color: #fbbc05;
  font-size: 20px;
  margin-bottom: 8px;
  text-align: center;
}
.rating-text {
  font-size: 0.9rem;
  color: #5f6368;
  text-align: center;
}
.box-shadow {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}
/* Table */
.table-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.table-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid #f5f5f5;
}

.table th {
  background: #fafafa;
  font-weight: 600;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table tbody tr:hover {
  background: #fafafa;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  font-weight: 600;
}

.faq-question:hover {
  background: #fafafa;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
  color: #666;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  line-height: 1.6;
}

.faq-answer.active {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #2160c6;
}

/* List Section */
.list-section {
  padding: 120px 0;
  background: white;
}

.list-section h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.feature-list {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
}

.feature-list li {
  padding: 20px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s;
  font-weight: 500;
}

.feature-list li:hover {
  color: #667eea;
}
/* Testimonial */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #d9e8f6 0%, #fff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #dadce0;
  transition: 0.3s;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(60, 64, 67, 0.15);
}
.test-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.test-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}
.test-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.test-info p {
  font-size: 0.85rem;
  color: #5f6368;
}
.test-stars {
  color: #fbbc05;
  font-size: 14px;
  margin-bottom: 15px;
}
.test-text {
  font-size: 0.95rem;
  color: #202124;
  line-height: 1.6;
  font-style: italic;
}

/* CITY GRID */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.city-card {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
  padding: 16px;
  color: #202124;
  background: #f8f9fa;
  border-radius: 16px;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #dadce0;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.city-card:hover {
  background: #dbe8fc;
  color: #1c5eca;
  border: 2px solid #1c5eca;
}
.all-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  padding-top: 30px;
  border-top: 1px solid #dadce0;
  margin-top: 30px;
}
.all-cities-grid a {
  font-size: 13px;
  color: #5f6368;
  padding: 5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.all-cities-grid a:hover {
  color: #1c5eca;
  transform: translateX(3px);
}
/* Footer */
.footer {
  background: white;
  color: #202124;
  padding: 40px 24px;
  font-size: 14px;
  border-top: 1px solid #dadce0;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #dadce0;
  color: #5f6368;
  font-size: 0.9rem;
}
.footer-logo {
  font-weight: 800;
}
.footer-logo span {
  color: #4285f4;
}
.footer .col a {
  color: #202124;
  display: flex;
  margin-bottom: 12px;
  font-size: 0.95rem;
  transition: 0.2s;
}
.footer .col a img {
  margin-right: 10px;
}
.footer .col a:hover {
  color: #4285f4;
}
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6 {
  font-size: 1.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}
.phone-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #3775dd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgb(84 202 255 / 39%);
    z-index: 999;
    transition: 0.3s;
    animation: bounce 2s infinite;
}
.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgb(84 202 255 / 39%);
}
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: 0.3s;
    animation: bounce 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .howto-grid {
    grid-template-columns: 1fr;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 60px;
    transition: left 0.3s;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .col-md-3,
  .col-md-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .grid {
    grid-template-columns: 1fr;
  }

  .grid-section h2,
  .table-section h2,
  .faq-section h2,
  .list-section h2 {
    font-size: 2.5rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container,
  .container-fluid {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .card,
  .col,
  .sidebar,
  .content {
    padding: 24px;
  }
}
