:root {
  /* Base Colors - Neutral Neumorphic Palette */
  --color-bg-main: #E0E5EC;
  --color-bg-alt: #F0F2F5;
  --color-surface: #E0E5EC; /* For cards and interactive elements */
  --color-surface-pressed: #D1D9E6; /* Slightly darker for pressed state */

  /* Text Colors */
  --color-text-primary: #3A3B3C;  /* Dark gray for body, high contrast */
  --color-text-secondary: #55595C; /* Slightly lighter gray */
  --color-text-headings: #222222; /* Very dark for headings, strong contrast */
  --color-text-light: #FFFFFF; /* For dark backgrounds like Hero */
  --color-text-accent: #6D5DFC; /* A muted purple for links or highlights */

  /* Accent Colors */
  --color-primary-accent: #6D5DFC; /* Muted Purple */
  --color-primary-accent-dark: #5345D0;
  --color-primary-accent-light: #9080f3;

  --color-secondary-accent: #4CAF50; /* Green for positive actions */
  --color-secondary-accent-dark: #388E3C;

  /* Neumorphic Shadows (ensure good contrast with --color-surface) */
  /* Lighter shadow component should be lighter than --color-surface */
  /* Darker shadow component should be darker than --color-surface */
  --shadow-light-neumorphic: rgba(255, 255, 255, 0.8); /* #FFFFFF with opacity */
  --shadow-dark-neumorphic: rgba(163, 177, 198, 0.6); /* #A3B1C6 with opacity */

  --neumorphic-shadow-convex: 6px 6px 12px var(--shadow-dark-neumorphic), -6px -6px 12px var(--shadow-light-neumorphic);
  --neumorphic-shadow-concave: inset 6px 6px 12px var(--shadow-dark-neumorphic), inset -6px -6px 12px var(--shadow-light-neumorphic);
  --neumorphic-shadow-convex-hover: 8px 8px 16px var(--shadow-dark-neumorphic), -8px -8px 16px var(--shadow-light-neumorphic);
  --neumorphic-shadow-concave-active: inset 4px 4px 8px var(--shadow-dark-neumorphic), inset -4px -4px 8px var(--shadow-light-neumorphic);

  /* Borders & Radii */
  --border-radius-soft: 10px;
  --border-radius-medium: 15px;
  --border-radius-large: 25px;

  /* Fonts */
  --font-primary: 'Source Sans Pro', Arial, sans-serif;
  --font-headings: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --transition-fast: 0.2s ease-out;
  --transition-normal: 0.3s ease-out;

  /* Header & Spacing */
  --header-height: 80px;
  --header-height-mobile: 70px;
  --section-padding-y: 60px; /* Vertical padding for sections */
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%; /* 16px default */
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--color-text-headings);
  margin-bottom: 0.75em;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for better contrast on light bg */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 1.5em; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
  margin-bottom: 1em;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover, a:focus {
  color: var(--color-primary-accent-dark);
  text-decoration: underline;
}

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

/* Main Wrapper & Container */
.main-wrapper {
  width: 100%;
  overflow: hidden; /* For animations and transitions */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-padding {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

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

/* Column system for Asymmetric Balance */
.columns {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}
.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}
.column {
  display: block;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 0.75rem;
}
.column.is-two-thirds {
  flex: none;
  width: 66.6666%;
}
/* Add more column sizes as needed */

/* Header & Navigation */
.site-header {
  background-color: var(--color-surface);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Standard shadow for fixed header */
  height: var(--header-height);
  display: flex;
  align-items: center;
}

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

.logo {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-accent);
  text-decoration: none;
}
.logo:hover {
  color: var(--color-primary-accent-dark);
}

.main-nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.main-nav .nav-menu li {
  margin-left: 1.5rem;
}

.main-nav .nav-menu a {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 0.5em 0;
  position: relative;
  transition: color var(--transition-fast);
}
.main-nav .nav-menu a:hover,
.main-nav .nav-menu a:focus {
  color: var(--color-primary-accent);
}
.main-nav .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-accent);
  transition: width var(--transition-normal);
}
.main-nav .nav-menu a:hover::after,
.main-nav .nav-menu a:focus::after {
  width: 100%;
}

.nav-toggle { /* Burger Menu Button */
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.nav-toggle .hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-text-headings);
  position: relative;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-text-headings);
  transition: transform var(--transition-normal), top var(--transition-normal), bottom var(--transition-normal);
}
.nav-toggle .hamburger::before { top: -8px; }
.nav-toggle .hamburger::after { bottom: -8px; }

.nav-toggle.active .hamburger { background-color: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); bottom: 0; }


/* Global Button Styles */
.btn, button, input[type="submit"], input[type="button"] {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0.8em 1.8em;
  border-radius: var(--border-radius-medium);
  background-color: var(--color-surface);
  color: var(--color-primary-accent);
  box-shadow: var(--neumorphic-shadow-convex);
  transition: all var(--transition-fast);
  transform-style: preserve-3d; /* For 3D effects */
}

.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  box-shadow: var(--neumorphic-shadow-convex-hover);
  transform: translateY(-2px) scale(1.02);
  color: var(--color-primary-accent-dark);
}

.btn:active, button:active, input[type="submit"]:active, input[type="button"]:active {
  box-shadow: var(--neumorphic-shadow-concave-active);
  transform: translateY(1px) scale(0.98);
  background-color: var(--color-surface-pressed);
}

.btn-primary {
  background-color: var(--color-primary-accent);
  color: var(--color-text-light);
  box-shadow: 4px 4px 8px rgba(0,0,0,0.2), -4px -4px 8px rgba(255,255,255,0.7),
              inset 2px 2px 4px rgba(255,255,255,0.3), inset -2px -2px 4px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background-color: var(--color-primary-accent-dark);
  color: var(--color-text-light);
  box-shadow: 6px 6px 12px rgba(0,0,0,0.25), -6px -6px 12px rgba(255,255,255,0.6);
}
.btn-primary:active {
  background-color: var(--color-primary-accent-dark);
  box-shadow: inset 4px 4px 8px rgba(0,0,0,0.2), inset -4px -4px 8px rgba(255,255,255,0.7);
}

.btn-secondary { /* Different styling if needed */
  background-color: var(--color-surface);
  color: var(--color-secondary-accent);
}
.btn-secondary:hover {
  color: var(--color-secondary-accent-dark);
}

.btn-large {
  padding: 1em 2.5em;
  font-size: 1.1rem;
}


/* Hero Section */
.hero-section {
  position: relative;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 85vh; /* Use vh for responsiveness */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: var(--section-padding-y) 0;
  margin-top: var(--header-height); /* Account for fixed header */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  z-index: 1;
}

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

.hero-title {
  font-size: 3.5rem;
  color: var(--color-text-light); /* Explicitly white */
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-light); /* Explicitly white */
  margin-bottom: 1.5em;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.btn-hero {
  font-size: 1.2rem;
  padding: 0.8em 2.2em;
}

/* Cards (Neumorphic) */
.neomorphic-card, .card, .product-card, .resource-card, .info-card, .testimonial-item, .process-step {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-medium);
  padding: 1.5rem;
  box-shadow: var(--neumorphic-shadow-convex);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  /* align-items: center; /* Centering content inside card */
  text-align: center; /* Default text align for card content */
}

.neomorphic-card:hover, .card:hover, .product-card:hover, .resource-card:hover, .info-card:hover, .testimonial-item:hover, .process-step:hover {
  transform: translateY(-5px) perspective(1000px) rotateX(1deg) rotateY(-1deg); /* Subtle 3D lift */
  box-shadow: var(--neumorphic-shadow-convex-hover);
}

.card-image, .image-container { /* Container for images within cards */
  width: 100%;
  /* height: 200px; /* Example fixed height, adjust per card type if needed */
  border-radius: var(--border-radius-soft); /* Rounded corners for image area */
  overflow: hidden;
  margin-bottom: 1rem; /* Space between image and content */
  display: flex; /* For centering image */
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg-alt); /* Placeholder bg for image area */
}

.card-image img, .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the container */
  display: block;
  border-radius: var(--border-radius-soft);
}

.card-content {
  flex-grow: 1; /* Allows content to take up space and push button down */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes button to bottom if card has fixed height or min-height */
}
.card-content h3, .card-content h4 {
    margin-top: 0;
    color: var(--color-text-headings);
}
.card-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.card-content .btn {
    margin-top: auto; /* Pushes button to the bottom of card-content */
}


/* Specific Sections */

/* Mission Section */
.mission-section .mission-content {
  align-items: center;
}
.mission-section .neomorphic-card img {
    border-radius: var(--border-radius-medium);
}

/* Features Section */
.features-section {
  background-color: var(--color-bg-alt); /* Alternate background */
  background-size: cover;
  background-position: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  padding: 2rem 1.5rem;
}
.feature-icon {
  margin-bottom: 1rem;
}
.feature-icon img {
  width: 60px;
  height: 60px;
  margin: 0 auto; /* Center icon if it's a block */
  filter: drop-shadow(2px 2px 3px var(--shadow-dark-neumorphic)); /* Icon shadow */
}
.feature-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Our Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  position: relative;
  padding-top: 3rem; /* Space for number */
}
.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary-accent);
  color: var(--color-text-light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--neumorphic-shadow-convex);
}
.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Methodology Section */
.methodology-section {
  background-color: var(--color-bg-alt);
}
.methodology-section .columns {
  align-items: center;
}

/* Services (Products) Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.product-card .card-image {
  height: 220px; /* Specific height for product images */
}
.product-title {
  font-size: 1.6rem;
  margin-top: 0.5rem;
}
.product-description {
  font-size: 0.9rem;
  min-height: 80px; /* Ensure consistent card height */
}
.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-accent);
  margin: 0.5rem 0 1rem 0;
}

/* Innovation Section */
.innovation-section {
  background-size: cover;
  background-position: center;
  position: relative;
}
/* Add overlay if text readability is an issue on bg image */
.innovation-section .columns {
  align-items: center;
}
.toggles-section {
  margin-top: 2rem;
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-concave); /* Inset appearance */
}
.subsection-title {
  text-align: left;
  margin-bottom: 1rem;
}
.toggle-container {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}
.toggle-container span {
  margin-left: 0.8rem;
  color: var(--color-text-primary);
}
/* Basic Switch Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-surface-pressed);
  transition: var(--transition-normal);
  border-radius: 28px;
  box-shadow: var(--neumorphic-shadow-concave-subtle);
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(--color-bg-main);
  transition: var(--transition-normal);
  border-radius: 50%;
  box-shadow: var(--neumorphic-shadow-convex-subtle);
}
input:checked + .slider {
  background-color: var(--color-primary-accent);
}
input:checked + .slider:before {
  transform: translateX(22px);
  box-shadow: none; /* Or adjust shadow for "on" state */
}

/* Portfolio Section */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.gallery-container .card-image { height: 200px; }


/* Clientele (Testimonials) Section */
.clientele-section { background-color: var(--color-bg-alt); }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  /* JS will handle actual sliding. This is for layout. */
}
.testimonial-item {
  text-align: left;
  padding: 2rem;
}
.neomorphic-card-flat { /* For testimonials if a flatter design is desired */
    box-shadow: var(--neumorphic-shadow-convex-subtle);
}
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: var(--neumorphic-shadow-convex-subtle);
  object-fit: cover;
  /* For left alignment: float: left; margin-right: 1rem; */
  /* For center alignment: margin-left: auto; margin-right: auto; */
  margin-left: auto; margin-right: auto; /* Center avatar */
}
.testimonial-item p {
  font-style: italic;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  text-align: center;
}
.testimonial-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: center;
}

/* Awards Section */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.award-item.info-card { /* Reuse .info-card if defined or style as neumorphic */
  padding: 1.5rem;
}
.award-icon-placeholder {
  font-size: 2.5rem; /* Placeholder for icon */
  margin-bottom: 0.5rem;
  color: var(--color-primary-accent);
}

/* Resources Section */
.resources-section { background-color: var(--color-bg-alt); }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.resource-card {
  text-align: left;
}
.resource-title a {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  color: var(--color-primary-accent);
}
.resource-title a:hover {
  color: var(--color-primary-accent-dark);
}
.resource-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

/* Contact Quick Section */
.contact-quick-section .btn-large {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-short p {
  font-size: 1rem;
  color: var(--color-text-primary);
}
.contact-info-short a {
  font-weight: 600;
}

/* Contact Page Specifics (contacts.html) */
.contact-form-section {
    padding-top: calc(var(--header-height) + var(--section-padding-y)); /* Adjust for fixed header */
    padding-bottom: var(--section-padding-y);
}
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--neumorphic-shadow-convex);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    text-align: left;
}
.form-control {
    width: 100%;
    padding: 0.9em 1em;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-bg-main); /* Slightly different from surface for depth */
    border: 1px solid transparent; /* Keep space for focus border */
    border-radius: var(--border-radius-soft);
    box-shadow: var(--neumorphic-shadow-concave);
    transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.form-control:focus {
    outline: none;
    box-shadow: var(--neumorphic-shadow-concave), 0 0 0 2px var(--color-primary-accent-light);
    border-color: var(--color-primary-accent-light); /* Visible focus outline */
    background-color: var(--color-bg-alt);
}
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.site-footer {
  background-color: var(--color-text-headings); /* Dark footer */
  color: #B0B8C5; /* Light gray text on dark bg */
  padding: 3rem 0 1.5rem 0;
  font-size: 0.9rem;
}
.site-footer h4 {
  font-family: var(--font-headings);
  color: var(--color-text-light);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-column a {
  color: #B0B8C5; /* Light gray links */
  text-decoration: none;
}
.footer-column a:hover, .footer-column a:focus {
  color: var(--color-text-light); /* White on hover */
  text-decoration: underline;
}
.social-links a {
  display: inline-block; /* For text links */
  padding: 0.2rem 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #4A4E58; /* Subtle separator */
  font-size: 0.85rem;
}

/* Page Transitions */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-bg-main);
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}
body.loaded .page-transition {
  opacity: 0;
}

/* Privacy, Terms, About Pages Content Styling */
.static-page-content {
  padding-top: calc(var(--header-height) + 40px); /* Header height + some margin */
  padding-bottom: var(--section-padding-y);
  min-height: calc(100vh - var(--header-height) - 180px); /* Approx footer height */
}
.static-page-content .container {
  max-width: 800px; /* Readable width for text pages */
  background-color: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius-medium);
  box-shadow: var(--neumorphic-shadow-convex);
}
.static-page-content h1 {
    margin-bottom: 1em;
    text-align: center;
}
.static-page-content h2 {
    font-size: 1.8rem;
    margin-top: 1.5em;
    text-align: left;
}

/* Success Page Styling */
.success-page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
  background-color: var(--color-bg-alt);
}
.success-content {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--neumorphic-shadow-convex);
  max-width: 500px;
}
.success-content h1 {
  color: var(--color-secondary-accent);
  font-size: 2.5rem;
}
.success-content p {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem 0;
}

/* Cookie Popup (Basic styles from HTML, can be enhanced here) */
#cookie-popup {
    font-family: var(--font-primary);
}
#cookie-popup p {
    color: var(--color-text-light);
}
#accept-cookie {
    background-color: var(--color-secondary-accent); /* Match site's positive action color */
    color: var(--color-text-light);
}
#accept-cookie:hover {
    background-color: var(--color-secondary-accent-dark);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.3rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }

  .column.is-two-thirds { width: 100%; }
}

@media (max-width: 768px) {
  :root {
    --header-height: var(--header-height-mobile);
  }
  .site-header { height: var(--header-height-mobile); }
  .hero-section { margin-top: var(--header-height-mobile); }
  .static-page-content { padding-top: calc(var(--header-height-mobile) + 20px); }
  .contact-form-section { padding-top: calc(var(--header-height-mobile) + var(--section-padding-y)); }


  .nav-toggle { display: block; }
  .main-nav .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    background-color: var(--color-surface);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
  }
  .main-nav .nav-menu.active { display: flex; }
  .main-nav .nav-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .main-nav .nav-menu a {
    display: block;
    padding: 1em;
    width: 100%;
    border-bottom: 1px solid var(--color-bg-main);
  }
  .main-nav .nav-menu li:last-child a { border-bottom: none; }
  .main-nav .nav-menu a::after { display: none; } /* Remove underline effect on mobile */

  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .columns { margin-left: 0; margin-right: 0; }
  .column { width: 100% !important; padding-left: 0; padding-right: 0; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-column { margin-bottom: 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .btn, button, input[type="submit"] { font-size: 0.9rem; padding: 0.7em 1.5em; }
  .contact-form-container { padding: 1.5rem; }
  .success-content { padding: 2rem 1.5rem; }
}
