/* ============================================
   ブログスタート学院 — vast-cat-229.css
   ============================================ */

:root {
  --primary: #069ae4;
  --primary-dark: #0083c6;
  --primary-light: #50c2f6;
  --accent: #50c2f6;
  --text: #333;
  --text-light: #666;
  --bg: #fff;
  --footer-bg: #0f172a;
  --border: #e0e0e0;
  --white: #fff;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================
   UTILITY
   ============================================ */
.section-padding { padding: 80px 60px; }
.left-padding { padding-left: 60px; padding-right: 60px; }
.banner-padding { padding: 0 60px; }
.no-padding { padding: 0; }
.text-primary-col { color: var(--primary); }

/* ============================================
   HEADER / NAV
   ============================================ */
#new-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}

#new-main.scrolled {
  box-shadow: 0 4px 30px rgba(6,154,228,0.15);
}

#new-main .navbar {
  padding: 0;
  min-height: 80px;
}

#new-main .container-fluid { align-items: center; }

.header-img {
  height: 52px;
  width: auto;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.main-nav .nav-item > a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 16px;
  display: block;
  transition: color var(--transition);
}
.main-nav .nav-item > a:hover { color: var(--primary); }

.main-nav .nav-item.contact > a {
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 10px 22px;
  margin-left: 8px;
  font-weight: 600;
  transition: background var(--transition);
}
.main-nav .nav-item.contact > a:hover {
  background: var(--primary-dark);
}

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 8px 0;
  min-width: 200px;
  display: none;
}
.dropdown-menu.show { display: block; }
.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition);
}
.dropdown-item:hover {
  background: #f0f8ff;
  color: var(--primary);
}

/* ============================================
   HERO (home-banner)
   ============================================ */
.home-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fc 60%, #d6edf8 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.home-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,154,228,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.home-banner .container-fluid {
  padding-top: 80px;
  padding-bottom: 80px;
}

.home-banner .content-area {
  padding-right: 40px;
}

.home-banner h1 {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 24px;
}

.home-banner h1 span {
  color: var(--primary);
}

.home-banner .lead-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.8;
}

/* Magnetic button */
.magnetic { display: inline-block; }

.btn.magnet-button,
.btn.btn-outline-primary.magnet-button {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn.magnet-button:hover,
.btn.btn-outline-primary.magnet-button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6,154,228,0.35);
}

/* Counter area */
.count-area {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}
.count-area .corner,
.count-area .corner2 {
  border-right: 1px solid var(--border);
}
.count-area .corner2 { border-right: none; }

.count-area h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.count-area h2 .count { font-size: inherit; }
.count-area p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* Hero image area */
.home-banner .image-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-banner .image-area img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(6,154,228,0.2);
}

/* SVG diamond decorations */
.hero-diamonds {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-diamonds svg { position: absolute; }
.dimond-two-1 { fill: #069ae4; }
.dimond-two-2 { fill: #50c2f6; }
.dimond-two-3 { fill: #0083c6; }
.dimond-three-1 { isolation: isolate; }
.dimond-three-2 { opacity: 0.18; mix-blend-mode: multiply; }
.dimond-three-3 { fill: #cdd7db; }
.dimond-three-4 { fill: #ebeef0; }
.dimond-three-5 { fill: #fff; }
.dimond-four-1 { fill: #069ae4; }
.dimond-four-2 { fill: #50c2f6; }
.dimond-four-3 { fill: #0083c6; }

/* ============================================
   ABOUT SECTION (home-about)
   ============================================ */
.home-about {
  background: var(--white);
  text-align: center;
}

.home-about h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.3;
}
.home-about h2 span { color: var(--primary); }
.home-about .desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.btn-area { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   BRANDING / VIDEO SECTION (home-branding)
   ============================================ */
.home-branding {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.home-branding h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.home-branding h2 span { color: var(--accent); }
.home-branding p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 16px; line-height: 1.8; }
.home-branding .magnet-button {
  border-color: var(--white);
  color: var(--white);
}
.home-branding .magnet-button:hover {
  background: var(--white);
  color: var(--primary);
}
.home-branding .iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.home-branding .iframe-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================
   COURSES / SERVICES (home-services)
   ============================================ */
.home-services { background: #f8fafd; }
.home-services .content-area {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 15px 40px;
}
.home-services .content-area h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
}
.home-services .content-area h2 span { color: var(--primary); }

.services-section { padding: 0 0 60px; }
.services-section .row { margin: 0; }

.services-section .item {
  background: var(--white);
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.services-section .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6,154,228,0.15);
}

.services-section .image-area {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.services-section .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-section .image-area .img-hover {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-section .item:hover .img-normal { opacity: 0; }
.services-section .item:hover .img-hover { opacity: 1; }
.services-section .item:hover .image-area img { transform: scale(1.05); }

.services-section .content-area {
  padding: 28px 24px;
}
.services-section .content-area h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.services-section .content-area p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}
.services-section .content-area .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 12px;
}
.services-section .arrow { margin-top: 16px; }
.services-section .arrow i {
  color: var(--primary);
  font-size: 20px;
  transition: transform var(--transition);
}
.services-section .item:hover .arrow i { transform: translateX(6px); }

/* ============================================
   WHY CHOOSE US (why-automate)
   ============================================ */
.why-automate { background: var(--white); }
.why-automate h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.why-automate h2 span { color: var(--primary); }
.why-automate .intro { color: var(--text-light); margin-bottom: 28px; font-size: 16px; line-height: 1.8; }
.why-automate .features-label { font-weight: 600; color: #0f172a; margin-bottom: 16px; }

.why-automate .item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.why-automate .item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-automate .item .content-area p { margin: 0; font-size: 15px; color: var(--text); line-height: 1.6; }
.why-automate .item .content-area strong { color: #0f172a; }

.why-automate .image-area img {
  border-radius: 12px;
  box-shadow: 0 16px 50px rgba(6,154,228,0.15);
}

/* ============================================
   HOME RESULTS / TESTIMONIALS
   ============================================ */
.home-recent-work { background: #f8fafd; }
.home-recent-work .content-area { margin-bottom: 40px; }
.home-recent-work h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
}
.home-recent-work h2 span { color: var(--primary); }

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(6,154,228,0.12);
}
.testimonial-card .quote-icon {
  font-size: 48px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-card .author-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.testimonial-card .author-info span {
  font-size: 13px;
  color: var(--text-light);
}
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 8px; }

/* ============================================
   COUNTER (home-clients styled)
   ============================================ */
.home-clients { background: var(--white); }
.home-clients h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
}
.home-clients h2 span { color: var(--primary); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 40px;
}
.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: #f0f8ff; }
.stat-item h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item h2 .count { font-size: inherit; }
.stat-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.section.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.section.cta h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.3;
}
.section.cta .btn-cta {
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  transition: all var(--transition);
  display: inline-block;
}
.section.cta .btn-cta:hover {
  background: #0f172a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.section.cta .magnet-button.btn-cta {
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--primary);
}
.section.cta .magnet-button.btn-cta:hover {
  background: transparent;
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--footer-bg);
  color: var(--white);
}
.footer-contact { margin-bottom: 40px; }
.footer-contact .div { display: flex; flex-wrap: wrap; gap: 30px; }
.footer-contact h3 { font-size: 18px; font-weight: 600; }
.footer-contact h3 a { color: var(--white); transition: color var(--transition); }
.footer-contact h3 a:hover { color: var(--accent); }
.footer-contact h3.phone::before {
  content: '';
  margin-right: 8px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 12px; margin-bottom: 24px; }
.footer-social li a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social li a:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.footer-links h4,
.footer-products h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links li,
.footer-products li {
  margin-bottom: 10px;
}
.footer-links li a,
.footer-products li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-links li a:hover,
.footer-products li a:hover {
  color: var(--white);
}

.footer-address { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.8; }
.footer-address i { color: var(--accent); margin-right: 8px; }

.footer-newsletter h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-newsletter .emailer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  width: 100%;
  margin-bottom: 8px;
}
.footer-newsletter .emailer::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter .button-subscribe {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
}
.footer-newsletter .button-subscribe:hover { background: var(--primary-dark); }

/* ============================================
   COPYRIGHT
   ============================================ */
.copyright {
  background: #080f1e;
  padding: 20px 0;
}
.copyright .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright span { color: rgba(255,255,255,0.5); font-size: 13px; }
.copyright span a { color: rgba(255,255,255,0.7); }
.copyright span a:hover { color: var(--white); }
.copyright ul { display: flex; gap: 16px; }
.copyright ul li a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color var(--transition); }
.copyright ul li a:hover { color: var(--white); }
.copyright .forward { color: rgba(255,255,255,0.2); }

/* ============================================
   COOKIES / GDPR
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: var(--white);
  padding: 20px 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.8); flex: 1; line-height: 1.6; }
#cookie-banner p a { color: var(--accent); text-decoration: underline; }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
#cookie-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
#cookie-accept:hover { background: var(--primary-dark); }
#cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}
#cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ============================================
   INNER PAGE HERO
   ============================================ */
.inner-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(80,194,246,0.06);
  border-radius: 50%;
}
.inner-hero h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.inner-hero h1 span { color: var(--accent); }
.inner-hero .breadcrumb {
  justify-content: center;
  background: none;
  margin: 0;
}
.inner-hero .breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 14px; }
.inner-hero .breadcrumb-item.active { color: var(--accent); }
.inner-hero .breadcrumb-item a { color: rgba(255,255,255,0.6); }
.inner-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: var(--white); }
.about-intro h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; color: #0f172a; margin-bottom: 20px; }
.about-intro h2 span { color: var(--primary); }
.about-intro p { color: var(--text-light); line-height: 1.85; margin-bottom: 20px; font-size: 16px; }
.about-intro .image-area img { border-radius: 12px; box-shadow: 0 16px 50px rgba(6,154,228,0.12); }

.team-section { background: #f8fafd; }
.team-section h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 12px; }
.team-section h2 span { color: var(--primary); }
.team-section .subtitle { color: var(--text-light); margin-bottom: 40px; }

.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-4px); }
.team-card .card-img { height: 200px; overflow: hidden; }
.team-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card .card-body { padding: 24px 20px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--primary); }

.values-section { background: var(--white); }
.values-section h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; margin-bottom: 40px; }
.values-section h2 span { color: var(--primary); }
.value-card {
  background: #f8fafd;
  border-radius: 12px;
  padding: 32px 24px;
  border-left: 4px solid var(--primary);
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.value-card:hover { transform: translateX(4px); }
.value-card i { font-size: 32px; color: var(--primary); margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--white); }
.contact-form-area, .contact-info-area { height: 100%; }

.contact-form {
  background: #f8fafd;
  padding: 40px;
  border-radius: 12px;
}
.contact-form h2 { font-size: 26px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.contact-form .subtitle { color: var(--text-light); font-size: 15px; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.form-group .required { color: #ef4444; margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  font-family: inherit;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6,154,228,0.1);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.btn-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
  font-family: inherit;
}
.btn-submit:hover { background: var(--primary-dark); }

.contact-info { padding: 40px 30px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: #0f172a; margin-bottom: 24px; }
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.info-item .icon-wrap {
  width: 44px; height: 44px;
  background: #f0f8ff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item .icon-wrap i { color: var(--primary); font-size: 18px; }
.info-item .info-text h4 { font-size: 15px; font-weight: 700; color: #0f172a; margin-bottom: 4px; }
.info-item .info-text p, .info-item .info-text a {
  font-size: 14px; color: var(--text-light);
  transition: color var(--transition);
}
.info-item .info-text a:hover { color: var(--primary); }

/* ============================================
   LEGAL / POLICY PAGES
   ============================================ */
.legal-section { background: var(--white); }
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 28px; font-weight: 700; color: #0f172a; margin-bottom: 16px; }
.legal-content h3 { font-size: 20px; font-weight: 700; color: #0f172a; margin: 32px 0 12px; }
.legal-content p { color: var(--text-light); line-height: 1.85; margin-bottom: 16px; font-size: 15px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-light); font-size: 15px; line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.legal-content a { color: var(--primary); }
.legal-content .last-updated { font-size: 13px; color: rgba(0,0,0,0.35); margin-bottom: 32px; }

/* ============================================
   HOME FEATURE SECTION (intro banner block)
   ============================================ */
.home-feature-program {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 50px 0;
}
.home-feature-program .content {
  text-align: center;
  padding: 0 60px;
}
.home-feature-program h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.home-feature-program p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}

/* ============================================
   AOS fallback
   ============================================ */
[data-aos] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate { opacity: 1; transform: none; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-down-right"] { transform: translateX(-20px) translateY(-20px); }
[data-aos="zoom-in"] { transform: scale(0.92); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 30px; }
  .left-padding { padding-left: 20px; padding-right: 20px; }
  .banner-padding { padding: 0 20px; }
  .home-banner .content-area { padding-right: 0; margin-bottom: 40px; }
  .home-services .content-area { padding: 40px 15px 20px; }
  .count-area .corner, .count-area .corner2 { border-right: none; }
  .count-area [class*="col-"] { border-bottom: 1px solid var(--border); padding: 16px 0; }
  .contact-form { padding: 24px; }
  #cookie-banner { padding: 16px 20px; }
}

@media (max-width: 767.98px) {
  .section-padding { padding: 48px 20px; }
  .home-branding .iframe-container { margin-top: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .copyright .content { justify-content: center; text-align: center; }
  .footer-contact .div { flex-direction: column; gap: 12px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575.98px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .home-banner h1 { font-size: 28px; }
  .home-services .content-area { flex-direction: column; align-items: flex-start; }
}
