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

:root {
  --bg-color: #F6F9FC;
  --primary-color: #12355B;
  --secondary-color: #0E7490;
  --accent-color: #2E8B57;
  --gold-color: #C8A951;
  --text-color: #1F2937;
  --light-gray: #E5E7EB;
  --white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 16px 24px rgba(0, 0, 0, 0.06);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
}

.logo i {
  color: var(--gold-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-color);
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

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

.search-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.search-btn:hover {
  background-color: var(--light-gray);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: 1px solid var(--light-gray);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-accent {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-accent:hover {
  background-color: #246B43;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: var(--gold-color);
  color: var(--primary-color);
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background-color: #B29543;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background: rgba(18, 53, 91, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 30px;
}

.mobile-nav.active {
  transform: translateX(0);
  visibility: visible;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  width: 100%;
}

.mobile-nav-links a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  display: block;
  padding: 10px;
}

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

.mobile-nav-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 250px;
}

.hero {
  position: relative;
  background-image: linear-gradient(rgba(18, 53, 91, 0.85), rgba(18, 53, 91, 0.85)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 140px 20px 100px 20px;
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 50px;
}

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

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

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  margin-top: 40px;
}

.stat-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.stat-badge:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-color);
}

.stat-badge h3 {
  font-size: 32px;
  color: var(--gold-color);
  margin-bottom: 5px;
}

.stat-badge p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  opacity: 0.8;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.trust-badge i {
  color: var(--gold-color);
}

section {
  padding: 90px 20px;
}

.section-alt {
  background-color: var(--white);
}

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

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

.section-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #6B7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--light-gray);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(14, 116, 144, 0.1);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  color: var(--secondary-color);
}

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

.guides-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.guide-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-color);
}

.guide-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.guide-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.guide-card:hover .guide-img-wrapper img {
  transform: scale(1.08);
}

.guide-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.guide-content {
  padding: 25px;
}

.guide-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 12px;
}

.guide-meta span i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.guide-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.guide-content p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
}

.split-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.split-col {
  flex: 1;
}

.split-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

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

.tip-icon {
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 4px;
}

.tip-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.tip-text p {
  font-size: 14px;
  color: #555;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--light-gray);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-badge {
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--gold-color);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.2);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -10px;
}

.timeline-panel {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.timeline-panel:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.timeline-step {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.timeline-panel h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.timeline-panel p {
  font-size: 14px;
  color: #555;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.why-us-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold-color);
}

.why-us-item i {
  font-size: 24px;
  color: var(--gold-color);
}

.why-us-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-us-info p {
  font-size: 14px;
  color: #555;
}

.stats-counter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-card {
  background: var(--white);
  padding: 40px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
}

.counter-card i {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.counter-card h3 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.counter-card p {
  color: #6B7280;
  font-weight: 500;
  font-size: 14px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

.testimonial-quote {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-quote i {
  color: rgba(200, 169, 81, 0.3);
  font-size: 20px;
  margin-right: 5px;
}

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

.testimonial-user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 12px;
  color: #6B7280;
}

.rating-stars {
  color: var(--gold-color);
  font-size: 12px;
  margin-top: 4px;
}

.newsletter-box {
  background-image: linear-gradient(135deg, var(--primary-color) 0%, #0E2743 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.newsletter-box h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--gold-color);
}

.faqs-layout {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 16px;
  color: var(--primary-color);
}

.faq-question i {
  color: var(--secondary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  color: #555;
  font-size: 14px;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-item:hover {
  border-color: var(--secondary-color);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

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

.cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-banner-content h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 10px;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

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

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 20px 30px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--gold-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-subscribe p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-subscribe form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-subscribe input {
  padding: 12px 15px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe input:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-color);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.inner-hero {
  background-image: linear-gradient(rgba(18, 53, 91, 0.9), rgba(18, 53, 91, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px 70px 20px;
  color: var(--white);
  text-align: center;
}

.inner-hero h1 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 15px;
}

.inner-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.planner-intro {
  display: flex;
  gap: 50px;
  align-items: center;
}

.planner-intro-content {
  flex: 1;
}

.planner-intro-image {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.planner-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.budget-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.budget-plan-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.budget-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--secondary-color);
}

.budget-plan-card.pro::before {
  background-color: var(--gold-color);
}

.budget-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.budget-card-header {
  margin-bottom: 25px;
}

.budget-card-header h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.budget-card-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}

.budget-card-price span {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
}

.budget-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.budget-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.budget-card-features li i {
  color: var(--accent-color);
}

.budget-card-features li.disabled {
  color: #9CA3AF;
  text-decoration: line-through;
}

.budget-card-features li.disabled i {
  color: #9CA3AF;
}

.expense-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.expense-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.expense-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.expense-card i {
  font-size: 30px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.expense-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.expense-card p {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 15px;
}

.expense-percent {
  display: inline-block;
  background-color: rgba(14, 116, 144, 0.1);
  color: var(--secondary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.strategy-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.strategy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 25px;
}

.strategy-card i {
  font-size: 36px;
  color: var(--gold-color);
}

.strategy-info h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.strategy-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.strategy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.strategy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4B5563;
}

.strategy-list li i {
  font-size: 14px;
  color: var(--accent-color);
}

.inquiry-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

.invest-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.invest-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.invest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.invest-card-img {
  height: 200px;
  overflow: hidden;
}

.invest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.invest-card:hover .invest-card-img img {
  transform: scale(1.08);
}

.invest-card-content {
  padding: 30px;
}

.invest-card-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.invest-card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  min-height: 66px;
}

.invest-meta-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--light-gray);
  padding-top: 15px;
  font-size: 13px;
  font-weight: 600;
  color: #4B5563;
}

.invest-meta-row span i {
  color: var(--gold-color);
  margin-right: 5px;
}

.risk-management-row {
  display: flex;
  gap: 50px;
  align-items: center;
}

.risk-content {
  flex: 1.2;
}

.risk-image {
  flex: 0.8;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.risk-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 18px 24px;
  font-weight: 600;
  font-size: 15px;
}

.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
  color: #4B5563;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: var(--bg-color);
}

.comparison-type {
  font-weight: 700;
  color: var(--primary-color);
}

.risk-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.risk-badge.low {
  background-color: rgba(46, 139, 87, 0.1);
  color: var(--accent-color);
}

.risk-badge.medium {
  background-color: rgba(200, 169, 81, 0.1);
  color: var(--gold-color);
}

.risk-badge.high {
  background-color: rgba(18, 53, 91, 0.1);
  color: var(--primary-color);
}

.calculator-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.calculator-card {
  flex: 1.2;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.calculator-results {
  flex: 0.8;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0E2743 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.calculator-results h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
}

.calc-result-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
}

.calc-result-item span {
  color: rgba(255, 255, 255, 0.7);
}

.calc-result-item strong {
  font-size: 18px;
  color: var(--gold-color);
}

.calc-total {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  margin-top: 10px;
}

.calc-total strong {
  font-size: 26px;
}

.calculator-card h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.range-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.range-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}

.range-label span:last-child {
  color: var(--secondary-color);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--light-gray);
  border-radius: 5px;
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-download-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.resource-download-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-color);
}

.resource-type-icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.resource-download-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.resource-download-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.roadmap-step {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.roadmap-step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background-color: var(--light-gray);
  z-index: 1;
}

.roadmap-step:last-child::after {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px auto;
  border: 4px solid var(--bg-color);
  box-shadow: 0 0 0 4px var(--primary-color);
}

.roadmap-step h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.roadmap-step p {
  font-size: 13px;
  color: #555;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.contact-info-card i {
  font-size: 24px;
  color: var(--secondary-color);
}

.contact-card-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-card-text p {
  font-size: 14px;
  color: #555;
}

.contact-hours-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.contact-hours-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 10px;
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #555;
}

.hours-list li.closed span:last-child {
  color: var(--primary-color);
  font-weight: 700;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
}

.map-placeholder {
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-gray);
  position: relative;
  background-color: var(--light-gray);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.map-overlay h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.map-overlay p {
  font-size: 12px;
  color: #555;
}

.nav-links {
  gap: 22px;
}

.nav-links a {
  font-size: 13px;
}

#search-btn {
  display: none;
}

/* Center-align contents for requested elements */
.service-card {
  text-align: center !important;
  align-items: center !important;
}

.guide-card {
  text-align: center !important;
}

.guide-card .guide-meta {
  justify-content: center !important;
}

.budget-card-header,
.budgrt-card-header {
  text-align: center !important;
}

.timeline-item,
.timeline-item:nth-child(odd),
.timeline-item:nth-child(even) {
  text-align: center !important;
}

.timeline-panel {
  text-align: center !important;
}

.planner-intro-content {
  text-align: center !important;
}

.invest-card-content h3,
.invest-card-content p {
  text-align: center !important;
}

.risk-content h2,
.risk-content p {
  text-align: center !important;
}

.calculator-card h3 {
  text-align: center !important;
}

.guide-content a {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.footer-subscribe .btn-gold {
  justify-content: center;
}

.resource-download-card {
  text-align: center !important;
  align-items: center !important;
}

@media (max-width: 1024px) {
  .mobile-nav {
    width: 70% !important;
  }
  .mobile-nav-links a {
    white-space: nowrap !important;
  }
}

@media (max-width: 768px) {
  .risk-image img {
    height: auto !important;
    object-fit: contain !important;
  }
}
