/* =========================================
   VARIABLES
========================================= */
:root {
  /* Colors */
  --primary: #0B3D91;
  /* Dark Blue */
  --primary-light: #1853B3;
  --primary-dark: #072B6B;
  --secondary: #EAF0FB;
  /* Light Blue/Grey background */

  --accent: #FFC107;
  /* Accent color */
  --whatsapp: #25D366;
  /* WhatsApp Green */
  --whatsapp-hover: #1EBE5D;

  --bg-light: #F8FAFC;
  /* Very Light Grey */
  --bg-white: #FFFFFF;

  --text-main: #1F2937;
  /* Dark Charcoal */
  --text-muted: #6B7280;
  /* Secondary Text */
  --text-light: #F3F4F6;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Layout & Helpers */
  --container-width: 1200px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 25px 50px -12px rgba(11, 61, 145, 0.25);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections */
.section-padding {
  padding: 100px 0;
}

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

/* Section Headers */
.section-title-wrapper {
  margin-bottom: 24px;
}

.subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
}

.subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.subtitle.text-center::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-description {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

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

.mt-4 {
  margin-top: 2rem;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(11, 61, 145, 0.4);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 61, 145, 0.6);
}

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

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-block {
  width: 100%;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
  background-color: transparent;
}

.navbar.scrolled {
  background-color: var(--bg-white);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 65px;
  width: auto;
  background-color: var(--bg-white);
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.navbar.scrolled .logo img {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--bg-white);
  position: relative;
  padding-bottom: 4px;
}

.navbar.scrolled .nav-link {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.navbar.scrolled .nav-link::after {
  background-color: var(--primary);
}

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

.btn-whatsapp-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--whatsapp);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--bg-white);
  background: none;
  border: none;
  cursor: pointer;
}

.navbar.scrolled .mobile-toggle {
  color: var(--primary);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('../images/background.png') center/cover no-repeat;
  color: var(--bg-white);
  padding-top: 80px;
  /* Offset for navbar */
}

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

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

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--bg-white);
}

.hero-title .highlight {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-quick-info {
  display: flex;
  gap: 40px;
  padding: 30px 40px;
  background-color: rgba(11, 61, 145, 0.85); /* Darkens background perfectly */
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-item i {
  font-size: 2rem;
  color: var(--accent);
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-item strong {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--bg-white); /* Ensures heavy contrast */
}

.info-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg-white);
  z-index: 2;
}

.experience-badge .number {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.experience-badge .text {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.about-description strong {
  color: var(--primary-dark);
}

.about-features {
  margin-bottom: 32px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
}

.about-features i {
  color: var(--primary);
  font-size: 1.25rem;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.1);
}

.card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(11, 61, 145, 0.8) 100%);
}

.icon-wrapper {
  position: absolute;
  bottom: 0;
  right: 20px;
  transform: translateY(50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 4px solid var(--bg-white);
  transition: var(--transition);
}

.service-card:hover .icon-wrapper {
  background-color: var(--accent);
  color: var(--primary-dark);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* =========================================
   WHY CHOOSE US SECTION
========================================= */
.why-choose-us {
  position: relative;
  overflow: hidden;
}

.wcu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.wcu-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
}

.feature-text h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.wcu-stats-bg {
  background: url('../images/background.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  min-height: 500px;
}

.wcu-stats-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 61, 145, 0.85);
  /* Dark blue overlay */
  border-radius: var(--radius-lg);
}

.stats-card {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  width: 250px;
  color: var(--bg-white);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 500;
}

/* =========================================
   CTA BANNER
========================================= */
.cta-banner {
  position: relative;
  background: url('../images/background.png') center/cover fixed no-repeat;
  padding: 80px 0;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 43, 107, 0.9);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--bg-white);
}

.cta-content p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-container {
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 40px;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info::after {
  content: '';
  position: absolute;
  top: 40px;
  left: -30px;
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--bg-white);
  position: relative;
  z-index: 2;
}

.contact-info>p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.info-block:hover .info-icon {
  background-color: var(--bg-white);
  color: var(--primary);
}

.info-content h5 {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--bg-white);
}

.contact-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.info-content span {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Form */
.contact-form-wrapper {
  padding: 50px 40px 50px 0;
}

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

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #E5E7EB;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(11, 61, 145, 0.1);
}

/* Floating Label implementation logic */
.form-group label {
  position: absolute;
  top: 16px;
  left: 20px;
  color: var(--text-muted);
  transition: var(--transition);
  pointer-events: none;
  background-color: var(--bg-white);
  padding: 0 4px;
  opacity: 0;
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

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

/* =========================================
   FOOTER
========================================= */
.footer {
  background-color: #051A3B;
  /* Very dark blue */
  color: var(--text-light);
  padding-top: 80px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.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%;
  color: var(--bg-white);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 5px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #031229;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* =========================================
   SCROLL UP BUTTON
========================================= */
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.scroll-up.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-up:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .about-container,
  .wcu-layout {
    gap: 40px;
  }

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

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-info::before,
  .contact-info::after {
    display: none;
  }

  .contact-form-wrapper {
    padding: 40px;
  }
}

@media screen and (max-width: 992px) {

  /* Navbar adjustments */
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    flex-direction: column;
    gap: 0;
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--bg-light);
  }

  .nav-link {
    display: block;
    padding: 16px;
    color: var(--text-main);
  }

  .nav-link::after {
    display: none;
  }

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

  .btn-whatsapp-nav {
    margin: 16px;
    display: inline-flex;
  }

  /* Reset scrolled navbar properties for mobile nav elements */
  .navbar:not(.scrolled) .nav-links {
    background-color: var(--bg-white);
  }

  .navbar:not(.scrolled) .nav-link {
    color: var(--text-main);
  }

  .about-container,
  .wcu-layout {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    margin-bottom: 20px;
  }

  .experience-badge {
    right: 20px;
  }

  .wcu-stats-bg {
    min-height: 400px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    padding: 10px 0;
  }
  .navbar.scrolled {
    padding: 8px 0;
  }
  .logo {
    position: relative;
  }

  .logo img {
    height: 45px;
    padding: 6px 12px;
  }

  .hero-content {
    padding-top: 60px;
  }

  .hero-badge {
    margin-top: 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
    padding: 0 10px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-quick-info {
    flex-direction: column;
    gap: 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-padding {
    padding: 50px 0;
  }

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

  .cta-buttons {
    flex-direction: column;
  }
  
  .contact-container {
    padding-bottom: 10px;
  }

  .contact-info {
    padding: 40px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    padding-bottom: 110px; /* Space for floating buttons entirely */
  }

  /* Floating Buttons Fix for Mobile */
  .whatsapp-float {
    bottom: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    font-size: 22px !important;
  }

  .scroll-up {
    bottom: 75px !important; /* Higher than WhatsApp */
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .experience-badge {
    padding: 15px;
    right: 10px;
    bottom: -15px;
  }

  .experience-badge .number {
    font-size: 1.1rem;
  }

  .stats-card {
    width: 100%;
    padding: 20px;
  }
  
  .section-description {
    font-size: 0.95rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-5px);
}