/* ============================================
   CORPORATE CRANE SERVICES WEBSITE STYLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Work+Sans:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Color Scheme */
:root {
  --primary-dark: #062841;
  --primary-blue: #0b6b8b;
  --accent-teal: #15a29d;
  --accent-light: #49c6c2;
  --accent-orange: #ff8c00;
  --accent-red: #e74c3c;
  --text-dark: #142e48;
  --text-light: #f6f9fb;
  --bg-light: #eef3f7;
  --border-color: #cdd7e2;
  --success: #27ae60;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* Typography */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Work Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* Container & Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: stretch;
}

.col {
  flex: 1;
  min-width: 250px;
}

.col-2 { flex: 2; }
.col-3 { flex: 3; }

/* Header & Navigation */
header {
  background-color: var(--primary-dark);
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo span {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: white;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: url('../images/logo.jpeg') center/cover no-repeat;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: white;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-orange);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-dark);
  border-radius: 8px;
  padding: 0.25rem 0;
  margin-top: 0.75rem;
  list-style: none;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background-color: var(--accent-orange);
  color: white;
  padding-left: 1.75rem;
}

.dropdown-toggle {
  cursor: default !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Contact Button */
.cta-button {
  background-color: var(--accent-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-button:hover {
  background-color: var(--accent-red);
}

/* Hero Banner */
.hero {
  background: linear-gradient(rgba(6, 40, 65, 0.88), rgba(6, 40, 65, 0.88)), 
              url('../images/banner-image.png') center/cover no-repeat;
  color: white;
  padding: 6rem 0 2rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-wrapper {
  width: 100%;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  color: var(--text-dark);
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-logo {
  width: 88px;
  height: 88px;
  background: url('../images/logo.jpeg') center/cover no-repeat;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.hero-subtitle,
.hero-lead,
.eyebrow {
  margin: 0;
}

.eyebrow {
  color: var(--accent-teal);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-panel h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-top: 0.25rem;
  font-weight: 600;
}

.hero-lead {
  font-size: 1.2rem;
  color: #4f6477;
  margin: 0 auto 2rem;
  max-width: 760px;
  line-height: 1.8;
  text-align: left;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-service {
  background: white;
  border: 1px solid rgba(14, 59, 91, 0.08);
  border-radius: 18px;
  padding: 1rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 120px;
  justify-content: center;
}

.hero-service p {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Standardize crane images inside hero service cards */
.hero-service .service-icon {
  width: 72px;
  height: 72px;
  background: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.hero-service .service-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.license-badge {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  background: var(--primary-dark);
  color: white;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.hero-contact-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: white;
  padding: 1.75rem 0 2rem;
}

.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.contact-box p {
  margin: 0.15rem 0;
  color: #f4f7fb;
}

a:hover {
  color: var(--accent-teal);
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: white;
  border-color: var(--primary-dark);
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

section.alt-bg {
  background-color: var(--bg-light);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-orange);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-red);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-card a {
  color: var(--accent-orange);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

/* Project Gallery */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  padding: 1.5rem;
}

.project-info h3 {
  margin-bottom: 0.5rem;
}

.project-category {
  color: var(--accent-orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

input, textarea, select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.form-row .form-group {
  margin-bottom: 0;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section a {
  color: #bbb;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-section p {
  color: #bbb;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 2rem;
  text-align: center;
  color: #bbb;
}

..social-links {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin: 1rem 0;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0b6b8b;
  color: transparent;
  text-indent: -9999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.14);
}

.social-facebook {
  background-image: url(/assets/images/icons/facebook.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-color: #3b5998;
}

.social-linkedin {
  background-image: url(/assets/images/icons/linkedin.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-color: #0077b5;
}

.social-twitter {
  background-image: url(/assets/images/icons/twitter.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-color: #1da1f2;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  background-image: url('../images/icons/whatsapp.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 99;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 55, 91, 0.1);
  border-radius: 999px;
  padding: 0.9rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.breadcrumb a {
  color: var(--primary-dark);
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

.breadcrumb span {
  margin: 0;
  color: #6c7a89;
}

.breadcrumb img {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 0.35rem;
  vertical-align: middle;
}

/* Download Section */
.download-item {
  background: white;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.download-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-blue);
}

.download-info h4 {
  margin-bottom: 0.25rem;
}

.download-meta {
  color: #999;
  font-size: 0.85rem;
}

.download-btn {
  background-color: var(--primary-blue);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.download-btn:hover {
  background-color: var(--primary-dark);
}

/* Alert Messages */
.alert {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav.active {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav li {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Mobile Dropdown Menu */
  .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    padding: 0.25rem 0;
  }

  .dropdown-menu a {
    padding-left: 2.5rem;
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    background-color: var(--accent-orange);
    padding-left: 2.75rem;
  }

  .hero {
    padding: 4rem 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .row {
    flex-direction: column;
  }

  section {
    padding: 2rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-button {
    bottom: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .download-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-btn {
    width: 100%;
    margin-top: 1rem;
  }

  input, textarea, select {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }

  .hero {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    width: 35px;
    height: 35px;
  }

  section {
    padding: 1.5rem 0;
  }

  .cta-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Loading & Transitions */
.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.page-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  color: #4f6477;
  line-height: 1.8;
}

.feature-grid,
.stat-grid,
.cert-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cert-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature-card,
.stat-card,
.cert-card {
  background: white;
  border: 1px solid rgba(14, 59, 91, 0.08);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stat-card {
  text-align: center;
}

.cert-card {
  text-align: center;
  padding: 1.8rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: 2rem;
}

.section-heading p {
  color: #5b6b7a;
  max-width: 640px;
  margin: 1rem auto 0;
}

.cta-panel {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: white;
  padding: 3rem 2rem;
  border-radius: 24px;
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2,
.cta-panel p {
  color: white;
}

.text-accent {
  color: var(--accent-teal) !important;
}

.info-card {
  text-align: center;
}

.info-icon {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.info-card h4 {
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #666;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-orange);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
}

.testimonial-role {
  color: #999;
  font-size: 0.9rem;
}

.stars {
  color: var(--accent-orange);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Spinner for modals */
.spinner {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 3px solid var(--primary-blue);
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-muted { color: #999; }
.text-primary { color: var(--primary-blue); }
.text-orange { color: var(--accent-orange); }
.margin-top { margin-top: 2rem; }
.margin-bottom { margin-bottom: 2rem; }
.padding-top { padding-top: 2rem; }
.padding-bottom { padding-bottom: 2rem; }

/* Print Styles */
@media print {
  header, footer, .whatsapp-button {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }
}
