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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Poppins", sans-serif;
  line-height: 1.6;
  color: #334155;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Variables */
:root {
  --primary: #004e94;
  --secondary: #95007a;
  --background: #ffffff;
  --foreground: #334155;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e2e8f0;
  --accent: #95007a;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-float {
  animation: float 8s ease-in-out infinite;
}
.animate-slide-in-up {
  animation: slideInUp 0.8s ease-out;
}
.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}
.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}
.animate-scale-in {
  animation: scaleIn 0.6s ease-out;
}
.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}
.animate-bounce {
  animation: bounce 2s infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white !important;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 78, 148, 0.3);
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 78, 148, 0.4);
}

.logo span {
  color: white !important;
  font-weight: 800;
}

.brand-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--foreground);
  transition: color 0.3s ease;
}

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

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--foreground);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(0, 78, 148, 0.03) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(149, 0, 122, 0.03) 100%
  );
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 78, 148, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(149, 0, 122, 0.1) 0%, transparent 50%);
  animation: pulse 6s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.float-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(0, 78, 148, 0.2), rgba(0, 78, 148, 0.1));
  animation: float 8s ease-in-out infinite;
}

.float-2 {
  top: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(149, 0, 122, 0.2), rgba(149, 0, 122, 0.1));
  border-radius: 20px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite 2s;
}

.float-3 {
  bottom: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 78, 148, 0.3), rgba(149, 0, 122, 0.2));
  animation: float 8s ease-in-out infinite 4s;
}

.float-4 {
  bottom: 30%;
  right: 5%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(149, 0, 122, 0.3), rgba(0, 78, 148, 0.2));
  border-radius: 8px;
  animation: float 8s ease-in-out infinite 6s;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.hero-logo {
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  /* box-shadow: 0 15px 40px rgba(0, 78, 148, 0.2);*/
  transition: all 0.3s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05) rotate(5deg);
  /*box-shadow: 0 20px 50px rgba(0, 78, 148, 0.3);*/
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--foreground);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 32px;
  color: var(--muted-foreground);
  font-weight: 500;
}

.rotating-text {
  color: var(--accent);
  font-weight: 700;
  position: relative;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 48px;
  color: var(--muted-foreground);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 90%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-mouse {
  width: 28px;
  height: 45px;
  border: 2px solid var(--primary);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.scroll-mouse:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}

.scroll-wheel {
  width: 4px;
  height: 15px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 2px;
  margin-top: 10px;
  animation: pulse 2s ease-in-out infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 78, 148, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 78, 148, 0.4);
}

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

.btn-outline:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(149, 0, 122, 0.3);
}

.btn-cta {
  background: white;
  color: var(--primary);
  border: 2px solid white;
}

.btn-cta:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 24px;
  border-radius: 2px;
}

.section-description {
  font-size: 1.2rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 120px 0;
  background: var(--background);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

.about-image {
  position: relative;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-section {
  padding: 0;
}

.about-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--muted-foreground);
  line-height: 1.8;
  text-align: justify;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Services Section */
.services {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    rgba(0, 78, 148, 0.02) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(149, 0, 122, 0.02) 100%
  );
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.service-item {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-item:hover::before {
  transform: scaleX(1);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 28px;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-title a {
  color: inherit;
  text-decoration: none;
}

.service-description {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
  text-align: justify;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--secondary);
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.7;
  text-align: justify;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.cta-btn-container {
  display: flex;
  justify-content: center;
}

/* Contact Section */
.contact {
  padding: 120px 0;
  background: var(--muted);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  font-size: 20px;
  margin-bottom: 1rem;
}

.contact-details {
  flex: 1;
}

.contact-details p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.success-message,
.error-message {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  display: none;
}

.success-message {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.error-message {
  background: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.success-message.show,
.error-message.show {
  display: block;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
  background: var(--background);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 78, 148, 0.1);
}

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

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

.privacy-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.privacy-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.form-submit {
  display: flex;
  justify-content: center;
}

.validation {
  color: var(--error);
  font-size: 0.875rem;
  margin-top: 8px;
  display: none;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 80px 0 30px;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

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

.footer-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 78, 148, 0.3);
}

.whatsapp-btn:hover {
  background: #25d366 !important;
}

.phone-btn:hover {
  background: var(--success) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 78, 148, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    min-height: 90vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-item {
    padding: 30px;
  }

  .about,
  .services,
  .contact,
  .cta {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .contact-form-container {
    padding: 30px;
  }

  .floating-elements {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .service-item {
    padding: 24px;
  }

  .contact-form-container {
    padding: 24px;
  }

  .about,
  .services,
  .contact,
  .cta {
    padding: 60px 0;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Print Styles */
@media print {
  .header,
  .nav-toggle,
  .floating-elements,
  .scroll-indicator,
  .back-to-top {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}
