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

:root {
  /* Colors extracted from the reference image */
  --primary-teal: #1ab79d;      /* Bright teal accent */
  --primary-teal-hover: #138c77;
  --dark-base: #0d221e;         /* Dark green/black footer/banner */
  --light-mint: #edf7f5;        /* Soft light green background */
  --light-mint-hover: #def0ec;
  
  --text-dark: #112d27;         /* Deep slate for text */
  --text-muted: #52605d;        /* Mid tone slate */
  --text-light: #f1f5f4;        /* Soft off-white for dark backgrounds */
  --bg-white: #ffffff;
  
  --border-color: #e2ece9;
  
  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Border Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows & Depth */
  --shadow-subtle: 0 10px 30px -10px rgba(17, 45, 39, 0.06);
  --shadow-medium: 0 20px 40px -15px rgba(17, 45, 39, 0.1);
  --shadow-hover: 0 30px 60px -20px rgba(26, 183, 157, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--primary-teal);
  background-color: var(--light-mint);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Header & Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 14px 0;
  box-shadow: var(--shadow-subtle);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 24px;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-teal);
}

.logo-icon {
  width: 10px;
  height: 10px;
  background-color: var(--primary-teal);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal);
  transition: var(--transition-smooth);
}

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

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

.nav-cta {
  background-color: var(--primary-teal);
  color: var(--bg-white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26, 183, 157, 0.2);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--primary-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 183, 157, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1010;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* Page Header (for subpages) */
.page-header {
  background-color: var(--light-mint);
  padding: 160px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* Hero Section */
.hero {
  background-color: var(--light-mint);
  padding: 160px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(26, 183, 157, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-teal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 183, 157, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

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

.hero-image-collage {
  position: relative;
  height: 480px;
}

.collage-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
  position: absolute;
  transition: var(--transition-smooth);
}

.collage-img-main {
  width: 80%;
  height: 320px;
  top: 0;
  right: 0;
  z-index: 2;
}

.collage-img-sub {
  width: 55%;
  height: 240px;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 6px solid var(--bg-white);
}

.badge-float {
  position: absolute;
  background-color: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.badge-students {
  top: 10%;
  left: -20px;
  animation: float-slow 6s ease-in-out infinite;
}

.badge-rating {
  bottom: 10%;
  right: -20px;
  animation: float-slow 6s ease-in-out infinite alternate;
}

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

.badge-float i {
  color: var(--primary-teal);
  font-size: 24px;
}

.badge-float span {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 15px;
}

/* Category Grid Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.category-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-subtle);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-teal);
}

.category-icon {
  width: 64px;
  height: 64px;
  background-color: var(--light-mint);
  color: var(--primary-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.category-card:hover .category-icon {
  background-color: var(--primary-teal);
  color: var(--bg-white);
}

.category-card h3 {
  font-size: 18px;
  font-weight: 700;
}

/* Split Feature Section (About/Stats) */
.about-section {
  background-color: var(--light-mint);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 480px;
}

.about-img-1 {
  width: 70%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
}

.about-img-2 {
  position: absolute;
  width: 60%;
  height: 280px;
  object-fit: cover;
  bottom: 0;
  right: 0;
  border-radius: var(--radius-lg);
  border: 6px solid var(--bg-white);
  box-shadow: var(--shadow-medium);
  z-index: 2;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.stat-box {
  background-color: var(--bg-white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border-left: 4px solid var(--primary-teal);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-teal);
  margin-bottom: 4px;
}

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

/* Grid of Cards (Services/Arrangements) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

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

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.service-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--primary-teal);
  color: var(--bg-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.service-body {
  padding: 24px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.service-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-teal);
}

.service-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Dark Green Ribbon Section */
.ribbon-banner {
  background-color: var(--dark-base);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ribbon-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(26,183,157,0.15) 0%, transparent 60%);
  z-index: 1;
}

.ribbon-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.ribbon-banner h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
}

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

.team-card {
  text-align: center;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

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

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

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

.team-body {
  padding: 20px;
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.team-role {
  font-size: 14px;
  color: var(--primary-teal);
  font-weight: 600;
}

/* Testimonial Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-teal);
}

.stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--light-mint);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* Accordion & Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.accordion-header {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  color: var(--primary-teal);
}

.accordion-icon {
  font-size: 18px;
  color: var(--primary-teal);
  transition: var(--transition-smooth);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.accordion-item.active {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-medium);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

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

.process-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.process-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  height: 220px;
  object-fit: cover;
}

.process-img-tall {
  grid-row: span 2;
  height: 460px;
}

/* Latest News / Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
}

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

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

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.blog-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-teal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

/* CTA Footer Ribbon */
.cta-footer {
  background-color: var(--light-mint);
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.cta-footer-inner {
  background-color: var(--dark-base);
  border-radius: var(--radius-lg);
  padding: 60px;
  color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-footer-inner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(26,183,157,0.1) 0%, transparent 80%);
  z-index: 1;
}

.cta-footer-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-footer-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-footer-content p {
  color: var(--text-light);
  font-size: 16px;
  opacity: 0.8;
}

.cta-footer-button {
  position: relative;
  z-index: 2;
}

/* Subpages Content Wrapper styles */
.content-wrapper {
  padding: 80px 0;
}

.content-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 40px;
}

.content-card h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.content-card ul, .content-card ol {
  margin-left: 20px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.content-card li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Contact Page Form styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--light-mint);
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.info-text p {
  margin-bottom: 0;
  font-size: 15px;
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  background-color: #fcfefe;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(26, 183, 157, 0.1);
  background-color: var(--bg-white);
}

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

/* Footer Section */
.footer {
  background-color: var(--dark-base);
  color: var(--bg-white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col.col-wide {
  flex: 1.5 1 300px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

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

.footer-col p {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  color: var(--text-light);
  opacity: 0.8;
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--primary-teal);
  opacity: 1;
  padding-left: 6px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
}

.newsletter-btn {
  background-color: var(--primary-teal);
  color: var(--bg-white);
  border: none;
  padding: 0 20px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-btn:hover {
  background-color: var(--primary-teal-hover);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-light);
  opacity: 0.7;
  font-size: 14px;
}

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--dark-base);
  color: var(--bg-white);
  padding: 20px 0;
  z-index: 10000;
  border-top: 2px solid var(--primary-teal);
  box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 14px;
  color: var(--text-light);
  opacity: 0.9;
  flex: 1 1 500px;
}

.cookie-text a {
  color: var(--primary-teal);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.cookie-accept {
  background-color: var(--primary-teal);
  color: var(--bg-white);
}

.cookie-accept:hover {
  background-color: var(--primary-teal-hover);
}

.cookie-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Thank You Page Styling */
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light-mint);
  padding: 24px;
}

.thank-you-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  box-shadow: var(--shadow-medium);
  text-align: center;
  max-width: 540px;
  width: 100%;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-mint);
  color: var(--primary-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 24px;
}

.thank-you-card h1 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.thank-you-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 46px;
  }
  
  .hero-image-collage {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 0;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    z-index: 1005;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }
}
