/* Import Bulma CSS Framework */
@import url('https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css');

/* Bio-Organic Forms Styling */
:root {
  --primary-color: #3273dc;
  --secondary-color: #209cee;
  --success-color: #23d160;
  --warning-color: #ffdd57;
  --danger-color: #ff3860;
  --dark-color: #363636;
  --light-color: #f5f5f5;
  --white-color: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  margin: 0;
  padding: 0;
}

/* Header Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand .navbar-item img {
  max-height: 3.5rem;
}

.navbar-item, .navbar-link {
  color: var(--white-color) !important;
  font-weight: 500;
  transition: var(--transition);
}

.navbar-item:hover, .navbar-link:hover {
  background-color: rgba(255,255,255,0.1) !important;
  color: var(--white-color) !important;
}

.navbar-burger {
  color: var(--white-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(50,115,220,0.8), rgba(32,156,238,0.8)), url('/img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-body {
  padding: 4rem 1.5rem;
}

.hero .title {
  color: var(--white-color);
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero .subtitle {
  color: var(--white-color);
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin-bottom: 2rem;
}

/* Bio-Organic Form Styles */
.bio-form {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 2rem 0;
}

.bio-field {
  margin-bottom: 1.5rem;
}

.bio-label {
  display: block;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.bio-input, .bio-textarea, .bio-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white-color);
  font-family: inherit;
}

.bio-input:focus, .bio-textarea:focus, .bio-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(50,115,220,0.1);
}

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

.bio-button {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bio-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(50,115,220,0.3);
}

.bio-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.bio-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.2);
}

.bio-checkbox label {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Honeypot field */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Content Sections */
.content-section {
  padding: 4rem 0;
}

.content-section:nth-child(even) {
  background-color: var(--light-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 1rem auto;
  border-radius: 2px;
}

.service-card {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--dark-color);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--success-color);
}

/* Gallery Styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Contact Info */
.contact-info {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 20px;
}

.contact-item a {
  color: var(--dark-color);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* Social Media */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white-color);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(50,115,220,0.4);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: var(--white-color);
  padding: 3rem 0 1rem;
}

.footer h4 {
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
  font-size: 0.9rem;
}

/* Utilities */
.text-center {
  text-align: center;
}

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

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

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.btn-cta {
  background: linear-gradient(135deg, var(--success-color), #20c65a);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(35,209,96,0.4);
  color: var(--white-color);
}

/* Company Info Styles */
.company-info {
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 2rem 0;
}

.company-info h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.company-info p {
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-color);
  padding: 1rem 0;
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Error and Success Messages */
.message {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
}

.message.is-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.message.is-danger {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

/* JSON-LD Schema Markup - Hidden */
script[type="application/ld+json"] {
  display: none;
}