/* ===================================
   MINDFULRETURNS - MAIN STYLES
   =================================== */

:root {
  /* Brand Colors */
  --primary-accent: #07AF91;
  --secondary-blue: #016CA8;
  --light-blue: #61B5E4;
  --medium-blue: #1178B2;
  --dark-blue: #2A79C2;
  --light-bg: #CFDDEB;
  --white: #fff;
  
  /* Grays */
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --border-color: #e0e0e0;
  
  /* Spacing */
  --section-padding: 80px 0;
  --section-padding-sm: 50px 0;
  
  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */

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

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===================================
   HEADER STYLES
   =================================== */

.header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-accent);
  letter-spacing: -0.5px;
}

.header .navbar-brand:hover {
  color: var(--secondary-blue);
}

.header .navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 1.2rem;
  transition: var(--transition);
  position: relative;
}

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

.header .navbar-nav .nav-link.active {
  color: var(--primary-accent);
}

.header .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.header .navbar-toggler:focus {
  box-shadow: none;
}

.header .navbar-toggler .material-icons {
  font-size: 28px;
  color: var(--primary-accent);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
  background: linear-gradient(135deg, rgba(1, 108, 168, 0.92) 0%, rgba(7, 175, 145, 0.88) 100%),
              url('./img/hero-bg.webp') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  padding: 100px 0;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item strong {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.hero-stat-item span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   SECTION STYLES
   =================================== */

.section {
  padding: var(--section-padding);
}

.section-sm {
  padding: var(--section-padding-sm);
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.bg-light-custom {
  background-color: var(--light-bg);
}

/* ===================================
   CARD STYLES
   =================================== */

.custom-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border-color);
}

.custom-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.custom-card h4 {
  color: var(--secondary-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.custom-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.7;
}

.custom-card .card-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--light-blue);
  opacity: 0.3;
  margin-bottom: 1rem;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-custom {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  font-size: 0.95rem;
}

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

.btn-primary-custom:hover {
  background-color: #069981;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-custom:hover {
  background-color: var(--primary-accent);
  color: var(--white);
}

/* ===================================
   IMAGE WITH TEXT BLOCK
   =================================== */

.image-text-block {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.image-text-block img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 500px;
}

/* ===================================
   LIST STYLES
   =================================== */

.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-medium);
}

.custom-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--primary-accent);
  border-radius: 50%;
}

/* ===================================
   CAROUSEL CARD STYLES
   =================================== */

.carousel-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1rem 0;
  border: 1px solid var(--border-color);
}

.carousel-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.carousel-card-content h4 {
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}

.carousel-card-content p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ===================================
   STEPS / PROCESS BLOCK
   =================================== */

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.process-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-accent);
  line-height: 1;
  opacity: 0.8;
  flex-shrink: 0;
}

.process-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.process-content p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.7rem;
  transition: var(--transition);
}

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

.footer .contact-info {
  font-size: 0.9rem;
  line-height: 2;
}

.footer .contact-info .material-icons-outlined {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--primary-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===================================
   FORM STYLES
   =================================== */

.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 0.2rem rgba(7, 175, 145, 0.15);
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

/* ===================================
   COOKIE POPUP
   =================================== */

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.cookie-popup .btn {
  margin-right: 0.75rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* ===================================
   PAGE HEADER (for secondary pages)
   =================================== */

.page-header {
  background-color: var(--light-bg);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-card {
  max-width: 600px;
  margin: 5rem auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 4rem 3rem;
  text-align: center;
}

.thank-you-card .material-icons {
  font-size: 80px;
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
}

.thank-you-card h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-card p {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===================================
   CONTACT INFO BLOCK
   =================================== */

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  border-left: 4px solid var(--primary-accent);
}

.contact-info-block h4 {
  color: var(--secondary-blue);
  margin-bottom: 1.5rem;
}

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

.contact-item .material-icons-outlined {
  font-size: 24px;
  color: var(--primary-accent);
  margin-right: 1rem;
  margin-top: 2px;
}

.contact-item-content p {
  margin-bottom: 0.25rem;
  color: var(--text-medium);
}

/* ===================================
   MAP CONTAINER
   =================================== */

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-section {
    min-height: 500px;
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .image-text-block {
    flex-direction: column;
    gap: 2rem;
  }
  
  .carousel-card {
    flex-direction: column;
  }
  
  .carousel-card img {
    width: 100%;
    height: 250px;
  }
  
  .hero-stats {
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  
  .hero-section h1 {
    font-size: 1.85rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-stat-item strong {
    font-size: 2rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .custom-card {
    padding: 1.5rem;
  }
  
  .thank-you-card {
    margin: 3rem auto;
    padding: 3rem 2rem;
  }
  
  .process-step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-number {
    font-size: 3rem;
  }
}

