@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 {
  /* Colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  
  --primary: #0c4a6e;        
  --primary-hover: #0284c7;  
  --primary-light: #e0f2fe; 
  
  --accent: #b45309;         
  --accent-hover: #d97706;   
  --accent-light: #fef3c7;   
  
  --text-dark: #0f172a;      
  --text-main: #334155;     
  --text-muted: #64748b;     
  --text-light: #94a3b8;     
  
  --white: #ffffff;
  --success: #16a34a;        
  --success-bg: #dcfce7;     
  --border-color: #e2e8f0;   
  --border-light: #f1f5f9;   
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 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.03);
  --shadow-lg: 0 10px 15px -3px rgba(15, 76, 129, 0.05), 0 4px 6px -4px rgba(15, 76, 129, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 76, 129, 0.08), 0 8px 10px -6px rgba(15, 76, 129, 0.04);
  
  --max-width: 1200px;
  --header-height: 80px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.text-center {
  text-align: center;
}

.section-title-wrapper {
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.subtitle {
  color: var(--accent);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(12, 74, 110, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.btn-secondary {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}

.btn-secondary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

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

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

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

/*  Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}

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

.logo-icon {
  font-size: 1.75rem;
}

.logo-accent {
  color: var(--accent);
}

/* Checkbox Toggle hidden */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

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

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

/* CTA Header button */
.nav-cta {
  margin-left: 1rem;
}

/*  Hero Sections */
.hero-main {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 4rem 0;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(12, 74, 110, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-unsplash-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hero-unsplash-badge a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Standard Banner Hero for internal pages */
.hero-inner {
  background-color: var(--primary);
  background-image: linear-gradient(135deg, var(--primary) 0%, #032d45 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

.hero-inner h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

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

/*  Home Page Componentsn*/
/* Stats Bar */
.stats-bar {
  background-color: var(--bg-card);
  padding: 3rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: 3rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-item {
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Feature Cards */
.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.card-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.card-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Split Section Showcase */
.showcase-section {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.showcase-content {
  flex: 1;
}

.showcase-image-wrapper {
  flex: 1;
  position: relative;
}

.showcase-image {
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.showcase-image-badge {
  position: absolute;
  bottom: -1.5rem;
  left: 2rem;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
}

.badge-icon {
  font-size: 2rem;
  color: var(--accent);
}

.badge-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Feature Checkmarks */
.checklist {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.checklist-icon {
  color: var(--success);
  font-weight: 800;
}

/* Testimonials / Quote slider*/
.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

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

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-weight: 700;
  color: var(--text-dark);
}

.client-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Newsletter CTA Card */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #032d45 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 4.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

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

.form-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  white-space: nowrap;
}

/* Services Page Components */
.service-list-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image-col {
  flex: 1;
}

.service-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.service-content-col {
  flex: 1;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-title {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.service-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.service-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 550;
  font-size: 0.95rem;
}

.service-feature-bullet {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}

/* Consultation Form Section */
.inquiry-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
}

.inquiry-info {
  flex: 1;
  background-color: var(--primary);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.inquiry-info-title {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.inquiry-info-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.inquiry-bullets {
  margin-top: 2rem;
}

.inquiry-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.inquiry-bullet-check {
  color: var(--accent-light);
}

.inquiry-form-wrapper {
  flex: 1.3;
  padding: 3rem;
}

.standard-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-select, .form-textarea, .form-text-input {
  padding: 0.875rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

.form-select:focus, .form-textarea:focus, .form-text-input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.15);
}

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

/* Investments Page Components */
.investments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.investment-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

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

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

.investment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.investment-card:hover .investment-img {
  transform: scale(1.05);
}

.investment-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  border-radius: 20px;
}

.investment-card-content {
  padding: 2rem;
}

.investment-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.investment-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.investment-stats {
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
}

.inv-stat-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.15rem;
}

.inv-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Portfolio Allocation / Assessment Split */
.split-invest {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.invest-text-col {
  flex: 1.2;
}

.invest-image-col {
  flex: 0.8;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.portfolio-chart-mock {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.chart-header {
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.chart-bar-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
}

.chart-bar-bg {
  height: 10px;
  background-color: var(--bg-secondary);
  border-radius: 5px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 5px;
}

.fill-equities { width: 55%; background-color: var(--primary); }
.fill-fixed { width: 25%; background-color: var(--accent); }
.fill-realestate { width: 15%; background-color: #16a34a; }
.fill-cash { width: 5%; background-color: #94a3b8; }

.value-card {
  text-align: center;
  padding: 2.5rem;
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

.timeline-item {
  margin-bottom: 3.5rem;
  position: relative;
  width: 50%;
  padding-right: 3rem;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-right: 0;
  padding-left: 3rem;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent);
  border: 3px solid var(--bg-primary);
  position: absolute;
  right: -8px;
  top: 6px;
  z-index: 2;
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.2);
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
  right: auto;
}

.timeline-date {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-card {
  background-color: var(--bg-card);
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-img-wrapper {
  height: 280px;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.team-card:hover .team-img {
  transform: scale(1.03);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

/* Contact Page Components */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
}

.contact-card-box {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.contact-info-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

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

.office-card {
  background-color: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.office-city {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.office-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.faq-checkbox {
  display: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  background-color: var(--bg-card);
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--bg-secondary);
}

.faq-arrow {
  display: inline-block;
  transition: transform var(--transition-normal);
  font-size: 0.85rem;
  color: var(--text-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  background-color: var(--white);
  transition: all var(--transition-normal) ease-out;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 200px;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.faq-checkbox:checked ~ .faq-question .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Success Modal */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.success-modal-content {
  background-color: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(15, 76, 129, 0.25);
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.success-modal-icon {
  width: 70px;
  height: 70px;
  background-color: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem auto;
}

.success-modal-title {
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.success-modal-text {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.success-modal:target {
  opacity: 1;
  pointer-events: auto;
}

.success-modal:target .success-modal-content {
  transform: translateY(0);
}

/* Footer */
.footer {
  background-color: #032d45;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col-desc {
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--accent);
}

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

.footer-socials {
  display: flex;
  gap: 1.25rem;
}

.footer-socials a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .grid-3, .investments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }

  .grid-2, .grid-3, .grid-4, .investments-grid, .team-grid, .footer-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .showcase-section, .service-row, .service-row:nth-child(even), .split-invest {
    flex-direction: column;
    gap: 2.5rem;
  }

  .service-row:nth-child(even) {
    flex-direction: column;
  }
  
  .showcase-image, .service-img {
    height: 300px;
  }
  
  .showcase-image-badge {
    bottom: -1rem;
    left: 1rem;
  }
  
  .inquiry-container {
    flex-direction: column;
  }
  
  .inquiry-info, .inquiry-form-wrapper {
    padding: 2.5rem;
  }
  
  /* Hamburger Navigation Setup - Absolute Top-Most Right Corner */
  .nav-toggle-label {
    display: block;
    cursor: pointer;
    z-index: 10001;
    position: absolute;
    top: 30px; 
    right: 1.5rem;
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  /* Hamburger toggle indicator */
  .hamburger-icon {
    width: 70%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal);
  }
  
  .hamburger-icon .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 4px;
    transition: all var(--transition-normal);
  }
  
  .cross-icon {
    display: none;
    font-size: 1.85rem;
    line-height: 18px;
    font-weight: 500;
    color: var(--text-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-card);
    box-shadow: -10px 0 30px rgba(15, 76, 129, 0.1);
    z-index: 10000;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
    padding: 7rem 2rem 2rem 2rem;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  
  .nav-cta {
    /* margin-left: 0; */
    margin-top: 1rem;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  
  .nav-toggle:checked ~ .nav-menu {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-toggle:checked ~ .nav-toggle-label .hamburger-icon {
    display: none;
  }
  
  .nav-toggle:checked ~ .nav-toggle-label .cross-icon {
    display: block;
    color: var(--primary);
  }

  .header {
    background-color: var(--bg-primary);
  }
  
  .service-features-list {
    grid-template-columns: 1fr;
  }
  
  .form-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.0rem;
  }
  
  .hero-desc {
    font-size: 1.05rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
  }
  
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .cta-banner {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-banner h2 {
    font-size: 1.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-dot {
    left: 11px !important;
    right: auto;
  }
  
  .form-card {
    padding: 1.25rem;
  }
}
