/*
 * Bayi Hosting - Premium Design System (white, dark-blue, blue tones)
 * Domain: bayihosting.online
 */

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

:root {
  /* Color Palette */
  --primary: #0a1f44;          /* Dark Blue / Lacivert */
  --primary-rgb: 10, 31, 68;
  --secondary: #0061ff;        /* Vibrant Blue / Mavi */
  --secondary-rgb: 0, 97, 255;
  --accent: #00b4d8;           /* Light Blue / Turkuaz-Mavi */
  --bg-light: #f8fafc;         /* Light Gray Background */
  --bg-white: #ffffff;
  --text-dark: #0f172a;        /* Slate 900 */
  --text-gray: #475569;        /* Slate 600 */
  --text-light: #94a3b8;       /* Slate 400 */
  --border-color: #e2e8f0;     /* Slate 200 */
  --success: #10b981;          /* Emerald 500 */
  --warning: #f59e0b;          /* Amber 500 */
  --danger: #ef4444;           /* Red 500 */

  /* Fonts */
  --font-main: 'Poppins', sans-serif;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 97, 255, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(10, 31, 68, 0.12), 0 10px 10px -5px rgba(0, 97, 255, 0.05);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Width */
  --max-width: 1200px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Grid / Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}

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

.section-dark {
  background-color: var(--primary);
  color: var(--bg-light);
}

.section-dark h2, .section-dark h3, .section-dark p {
  color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.05rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 97, 255, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

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

.btn-white:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Header */
.top-bar {
  background-color: var(--primary);
  color: var(--bg-light);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 15px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--secondary);
  background-color: rgba(0, 97, 255, 0.04);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 10;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
}

.dropdown-link:hover {
  background-color: var(--bg-light);
  color: var(--secondary);
  padding-left: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 992px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    padding-left: 20px;
    transform: none;
    width: 100%;
    display: none;
  }
  .nav-item:hover .dropdown-menu {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a1f44 0%, #1e3a8a 50%, #0061ff 100%);
  color: var(--bg-white);
  padding: 100px 0 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, rgba(0,0,0,0) 70%);
  border-radius: 50%;
  z-index: 1;
}

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

.hero-content h1 {
  color: var(--bg-white);
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content h1 span {
  background: linear-gradient(90deg, #38bdf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-graphic {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }
}

/* Domain Search Bar */
.domain-search-sec {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.domain-search-box {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(10,31,68,0.12);
  border: 1px solid var(--border-color);
}

.domain-form {
  display: flex;
  gap: 15px;
}

.domain-input-wrap {
  flex: 1;
  position: relative;
}

.domain-input-wrap i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.2rem;
}

.domain-input {
  width: 100%;
  padding: 16px 20px 16px 55px;
  font-size: 1.05rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  outline: none;
  transition: var(--transition);
}

.domain-input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.1);
}

.domain-tld-prices {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tld-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  background-color: var(--bg-light);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
}

.tld-badge strong {
  color: var(--secondary);
}

@media (max-width: 768px) {
  .domain-form {
    flex-direction: column;
  }
}

/* Features */
.features-grid {
  margin-top: 20px;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0,97,255,0.2);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(0, 97, 255, 0.08);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--secondary);
  color: var(--bg-white);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* Why Choose Us */
.why-sec {
  background-color: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.why-content h2 {
  margin-bottom: 25px;
}

.why-points {
  margin-top: 30px;
  display: grid;
  gap: 20px;
}

.why-point-item {
  display: flex;
  gap: 15px;
}

.why-point-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background-color: rgba(0, 180, 216, 0.08);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-point-text h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.why-point-text p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Pricing Grid */
.pricing-tabs-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.pricing-tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  transition: var(--transition);
}

.pricing-tab-btn.active, .pricing-tab-btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--bg-white);
}

.pricing-container {
  min-height: 400px;
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.03);
  padding: 45px 35px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(10, 31, 68, 0.08), 0 4px 12px rgba(0, 97, 255, 0.03);
  border-color: rgba(0, 97, 255, 0.25);
}

.pricing-card.popular {
  border: 2px solid var(--secondary);
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 97, 255, 0.08);
  background: radial-gradient(120% 120% at 50% 10%, #ffffff 60%, rgba(0, 97, 255, 0.02) 100%);
}

.pricing-card.popular::before {
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 97, 255, 0.15);
}

.popular-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--bg-white);
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 97, 255, 0.2);
}

.pricing-card-header {
  text-align: left;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}

.pricing-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
  min-height: 42px;
  line-height: 1.5;
}

.pricing-price-box {
  margin: 20px 0 10px 0;
  display: flex;
  align-items: baseline;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 2px;
}

.pricing-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -1px;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-left: 6px;
}

.pricing-features-list {
  margin-bottom: 35px;
  flex: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-gray);
  font-weight: 500;
}

.pricing-feature-item i {
  color: var(--secondary);
  font-size: 1.15rem;
  background-color: rgba(0, 97, 255, 0.08);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pricing-feature-item.muted {
  color: var(--text-light);
  text-decoration: line-through;
}

.pricing-feature-item.muted i {
  color: var(--text-light);
  background-color: var(--border-color);
}

.pricing-card .btn {
  width: 100%;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
}

@media (max-width: 992px) {
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
}

/* Testimonials */
.testimonials-grid {
  margin-top: 20px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  position: relative;
}

.testimonial-quote {
  font-size: 3.5rem;
  color: rgba(0, 97, 255, 0.1);
  position: absolute;
  top: 15px;
  right: 25px;
  line-height: 1;
}

.testimonial-stars {
  color: var(--warning);
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}

.testimonial-text {
  color: var(--text-gray);
  font-size: 0.98rem;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--border-color);
  background-size: cover;
  background-position: center;
}

.client-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* FAQ / SSS Accordion */
.faq-sec {
  background-color: var(--bg-white);
}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-header {
  padding: 22px 30px;
  background-color: var(--bg-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  transition: var(--transition);
}

.faq-header:hover {
  background-color: rgba(0, 97, 255, 0.02);
}

.faq-icon {
  font-size: 1.1rem;
  transition: var(--transition);
  color: var(--secondary);
}

.faq-body {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  background-color: var(--bg-white);
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header {
  background-color: var(--bg-white);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  padding: 20px 30px 30px 30px;
  max-height: 500px;
}

/* CTA Support Band */
.support-cta-band {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1e3a 100%);
  padding: 60px 0;
  color: var(--bg-white);
}

.cta-band-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cta-band-content h3 {
  color: var(--bg-white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-band-content p {
  color: rgba(255, 255, 255, 0.8);
}

.cta-band-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cta-band-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .cta-band-actions {
    width: 100%;
    justify-content: center;
  }
}

/* Blog Section & Cards */
.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 97, 255, 0.2);
}

.blog-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: var(--primary);
}

.blog-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  min-height: 48px;
}

.blog-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.blog-readmore {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-readmore:hover {
  gap: 10px;
}

/* Breadcrumbs */
.breadcrumbs {
  background-color: var(--bg-white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
}

.breadcrumb-item a {
  color: var(--text-gray);
}

.breadcrumb-item a:hover {
  color: var(--secondary);
}

.breadcrumb-item::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--text-light);
  font-size: 0.8rem;
}

.breadcrumb-item:last-child {
  color: var(--text-dark);
  font-weight: 600;
}

.breadcrumb-item:last-child::after {
  display: none;
}

/* Inner Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0d1e3a 100%);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* SEO Content & Layout */
.seo-layout {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 40px;
  margin-top: 40px;
}

.seo-content {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.seo-content h2, .seo-content h3 {
  margin: 30px 0 15px 0;
}

.seo-content h2:first-of-type {
  margin-top: 0;
}

.seo-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.seo-content ul, .seo-content ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.seo-content li {
  color: var(--text-gray);
  margin-bottom: 8px;
  position: relative;
  list-style: disc;
}

.seo-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 0.95rem;
}

.seo-content th, .seo-content td {
  border: 1px solid var(--border-color);
  padding: 12px 15px;
  text-align: left;
}

.seo-content th {
  background-color: var(--bg-light);
  color: var(--primary);
  font-weight: 600;
}

.seo-content tr:nth-child(even) td {
  background-color: rgba(248, 250, 252, 0.5);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.widget {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary);
}

.widget-menu li {
  margin-bottom: 12px;
}

.widget-menu a {
  color: var(--text-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget-menu a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.widget-menu li.active a {
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 992px) {
  .seo-layout {
    grid-template-columns: 1fr;
  }
  .seo-content {
    padding: 30px 20px;
  }
}

/* Contact Page Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 97, 255, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info-list {
  display: grid;
  gap: 25px;
}

.contact-info-card {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  background-color: rgba(0, 97, 255, 0.08);
  color: var(--secondary);
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.contact-info-text p {
  color: var(--text-gray);
  font-size: 0.9rem;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Footer */
.footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer h4 {
  color: var(--bg-white);
  font-size: 1.15rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about p {
  margin: 15px 0 25px 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255,255,255,0.05);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.social-link:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  transform: translateY(-3px);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-contact span {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

.secure-payments {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255,255,255,0.4);
}

.secure-payments i {
  font-size: 1.4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
