/* Alycan - Corporate Website Custom CSS */
/* Color Palette */
:root {
  --primary-color: #003f7f;
  --accent-red: #e31c23;
  --neutral-white: #ffffff;
  --light-grey: #f5f5f5;
  --dark-grey: #333333;
  --border-grey: #e0e0e0;
  --success-green: #28a745;
  --transition-duration: 0.3s;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  background-color: var(--neutral-white);
}

/* Navbar Styling */
.navbar-brand,
.navbar-nav .nav-link,
.navbar .btn {
  font-family: 'Poppins', sans-serif;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Enhanced Service Cards */
.service-card-enhanced {
  background: var(--neutral-white);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card-enhanced:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 63, 127, 0.15);
  border-color: var(--primary-color);
}

.service-card-enhanced h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card-enhanced .icon-wrapper {
  transition: all 0.3s ease;
}

.service-card-enhanced:hover .icon-wrapper i {
  color: #ffd700;
  transform: scale(1.1);
}

/* Why Choose Alycan Cards */
.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s ease;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon i {
  transform: scale(1.15) rotate(5deg);
}

/* Industry Cards */
.industry-card {
  background: var(--neutral-white);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 16px rgba(0, 63, 127, 0.15);
}

.industry-card:hover i {
  color: #ffd700;
  transform: scale(1.2);
}

.industry-card i {
  transition: all 0.3s ease;
}

.industry-card p {
  font-weight: 600;
  color: var(--dark-grey);
}

/* Statistics Cards */
.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.stat-card h4 {
  color: var(--neutral-white);
  font-weight: 700;
  margin: 1rem 0;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* Action Cards */
.action-card {
  background: var(--neutral-white);
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.action-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 63, 127, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 24px rgba(0, 63, 127, 0.15);
}

.action-card:hover .action-card-bg {
  background: linear-gradient(135deg, rgba(0, 63, 127, 0.15) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.action-card:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: #ffd700;
}

.action-card i {
  transition: all 0.3s ease;
}

.action-card h4 {
  color: var(--primary-color);
  font-weight: 700;
}

.action-card p {
  color: var(--dark-grey);
}

/* About Us Section - Feature Cards */
.about-feature-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s ease;
}

.about-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(227, 28, 35, 0.05) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.about-feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.3) !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.about-feature-card:hover .about-card-bg {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(227, 28, 35, 0.1) 100%);
}

.about-feature-card:hover i {
  transform: scale(1.15) rotate(10deg);
}

.about-feature-card i {
  transition: all 0.3s ease;
}

/* About Us - Mission Card */
.mission-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  transition: all 0.3s ease;
}

.mission-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(227, 28, 35, 0.08) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.mission-card:hover {
  border-color: rgba(255, 215, 0, 0.4) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.mission-card:hover .mission-card-bg {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(227, 28, 35, 0.15) 100%);
}

/* About Us - Value Cards */
.value-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  transition: all 0.3s ease;
}

.value-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(227, 28, 35, 0.08) 100%);
  transition: all 0.3s ease;
  z-index: 1;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.3) !important;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.value-card:hover .value-card-bg {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(227, 28, 35, 0.12) 100%);
}

.value-card:hover i {
  transform: scale(1.15) rotate(10deg);
}

.value-card i {
  transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-duration) ease;
}

a:hover {
  color: var(--accent-red);
}

/* Navbar */
.navbar {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all var(--transition-duration) ease;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 8px rgba(227, 28, 35, 0.2));
}

.navbar-nav .nav-link {
  color: var(--dark-grey) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color var(--transition-duration) ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-red) !important;
}

.navbar-nav .nav-link.active {
  color: var(--accent-red) !important;
  font-weight: 700;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width var(--transition-duration) ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--transition-duration) ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

.btn-primary:hover {
  background-color: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 28, 35, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--accent-red);
  color: var(--neutral-white);
}

.btn-secondary:hover {
  background-color: #c71620;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(227, 28, 35, 0.3);
}

/* Bright CTA Buttons for Hero Section */
.btn-bright-cta {
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  color: #003f7f !important;
  border: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  animation: shine 3s linear infinite;
  transition: all 0.3s ease;
}

.btn-bright-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
  color: #003f7f !important;
}

.btn-bright-cta-outline {
  color: #ffd700 !important;
  border: 2px solid #ffd700;
  background-color: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-bright-cta-outline:hover {
  background-color: #ffd700;
  color: #003f7f !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

/* Gold-colored Headers */
.header-gold {
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  animation: shine 3s linear infinite;
}

/* Hero-style Section Background */
.section-hero-style {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 63, 127, 0.8) 100%);
  background-image: url('../images/theone.jpg'), linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 63, 127, 0.8) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.section-hero-style::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(227, 28, 35, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 63, 127, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.section-hero-style > .container {
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 63, 127, 0.8) 100%);
  background-image: url('../images/theone.jpg'), linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 63, 127, 0.8) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--neutral-white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(227, 28, 35, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 63, 127, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.animated-headline {
  color: #ffd700;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine 3s linear infinite;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
}
.hero-subheadline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subheadline {
    font-size: 1.1rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    text-align: center;
  }
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

section.light-background {
  background-color: var(--light-grey);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Cards */
.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-duration) ease;
  height: 100%;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-body {
  padding: 2rem;
}

.card-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-grey);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: all var(--transition-duration) ease;
}

.card:hover .card-icon {
  background-color: var(--accent-red);
  color: var(--neutral-white);
  transform: rotate(5deg) scale(1.1);
}

.card-text {
  color: #666;
  margin-bottom: 1rem;
  min-height: 3rem;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Why Choose Us / Feature Section */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  margin: 0;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-grey);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-white);
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.contact-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.contact-item a {
  color: var(--accent-red);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  border: 1px solid var(--border-grey);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-duration) ease;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 63, 127, 0.1);
  outline: none;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  color: var(--neutral-white);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-duration) ease;
}

footer a:hover {
  color: var(--accent-red);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--transition-duration) ease;
}

.social-links a:hover {
  background-color: var(--accent-red);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* Industries Section */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--light-grey);
  transition: all var(--transition-duration) ease;
}

.industry-item:hover {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

.industry-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.industry-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-red);
}

.bg-primary {
  background-color: var(--primary-color);
  color: var(--neutral-white);
}

.bg-light {
  background-color: var(--light-grey);
}

.mt-5 {
  margin-top: 3rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 2px solid var(--accent-red);
  outline-offset: 2px;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .section-title h2 {
    font-size: 1.75rem;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  footer {
    padding: 2rem 0 1rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  text-decoration: none;
  color: white;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

/* WhatsApp Float Mobile */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 24px;
  }
}

/* Print Styles */
@media print {
  .navbar,
  footer,
  .hero-cta-group,
  .btn,
  .whatsapp-float {
    display: none;
  }
}
