/* ==================== LANDING PAGE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #008080;        /* Teal (Crafts) */
  --secondary: #10B981;      /* Emerald Green (Cleaning) */
  --accent: #D4AF37;         /* Gold (Crafts) */
  --green-deep: #059669;     /* Deep Green (Cleaning) */
  --dark: #0F172A;
  --light: #F8FAFC;
  --white: #FFFFFF;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ==================== PARTICLES BACKGROUND ==================== */
#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, #008080 0%, #10B981 50%, #059669 100%);
}

/* ==================== NAVIGATION ==================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.logo-icon {
  font-size: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-btn {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-btn:hover::before {
  opacity: 1;
}

.nav-btn:hover {
  color: var(--white);
}

.nav-btn span {
  position: relative;
  z-index: 1;
}

.nav-btn-cta {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-btn-cta::before {
  content: '🧹';
  font-size: 1.2rem;
}

.nav-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Hamburger Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HERO LANDING ==================== */
.hero-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* SPLIT IMAGE BACKGROUND */
.hero-split-image {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
}

.hero-image-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Image Slider Container */
.image-slider {
  position: absolute;
  inset: 0;
}

.slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide-image.active {
  opacity: 1;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.6));
  z-index: 1;
}

.cleaning-half .image-overlay {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.85), rgba(29, 78, 216, 0.75));
}

.crafts-half .image-overlay {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.85), rgba(190, 24, 93, 0.75));
}

.split-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, 
    rgba(255,255,255,0.1),
    rgba(255,255,255,0.8),
    rgba(255,255,255,0.1));
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-container {
  max-width: 1200px;
  text-align: center;
  z-index: 1;
  position: relative;
}

/* Title Background to prevent split */
.hero-title {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 20px;
  display: inline-block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.title-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF, var(--accent), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-subtitle {
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 400;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.85;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cta-button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 3rem;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 400px;
  height: 400px;
}

.cleaning-btn {
  background: linear-gradient(135deg, var(--secondary), var(--green-deep));
  color: var(--white);
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.cleaning-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6);
}

.crafts-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0, 128, 128, 0.4);
}

.crafts-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(212, 175, 55, 0.6);
}

.btn-icon {
  font-size: 3rem;
  z-index: 1;
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
}

.btn-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.btn-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
}

.btn-arrow {
  font-size: 2rem;
  z-index: 1;
  transition: transform 0.3s;
}

.cta-button:hover .btn-arrow {
  transform: translateX(10px);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.6;
}

.scroll-indicator span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 30px;
  height: 50px;
  border: 2px solid var(--white);
  border-radius: 25px;
  margin: 0 auto;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

/* ==================== DEPARTMENTS SECTION ==================== */
.departments-section {
  padding: 8rem 2rem;
  position: relative;
  background: var(--white);
  color: var(--dark);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
}

.dept-card {
  position: relative;
  padding: 4rem;
  border-radius: 32px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s ease;
}

.dept-background {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.5s;
}

.cleaning-dept .dept-background {
  background: linear-gradient(135deg, #10B981, #059669);
}

.crafts-dept .dept-background {
  background: linear-gradient(135deg, #8B5CF6, #6366F1);
}

.dept-card:hover .dept-background {
  opacity: 1;
}

.dept-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.dept-icon {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.dept-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.dept-card p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.dept-features {
  list-style: none;
  margin-bottom: 2rem;
}

.dept-features li {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

.dept-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: gap 0.3s;
}

.dept-card:hover .dept-link {
  gap: 1.5rem;
}

.dept-hover-effect {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.dept-card:hover .dept-hover-effect {
  opacity: 1;
}

/* ==================== WHY CHOOSE US SECTION ==================== */
.why-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #F9FAFB, #F3F4F6);
  position: relative;
  overflow: hidden;
}

.why-content {
  max-width: 1400px;
  margin: 0 auto;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--dark);
}

.why-description {
  font-size: 1.2rem;
  color: #64748B;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stat-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: var(--primary);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #64748B;
  font-weight: 600;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
}

.feature-point:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-text p {
  font-size: 0.95rem;
  color: #64748B;
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.visual-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #E5E7EB;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.3;
}

/* Color accents for new business cards */
.card-4 .card-icon {
  filter: drop-shadow(0 4px 10px rgba(16, 185, 129, 0.3));
}

.card-5 .card-icon {
  filter: drop-shadow(0 4px 10px rgba(0, 128, 128, 0.3));
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  padding: 8rem 2rem;
  background: var(--white);
  color: var(--dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-desc {
  font-size: 1.1rem;
  color: #64748B;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.12);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.15);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 70px;
}

.faq-question:hover {
  background: linear-gradient(to right, #F9FAFB, #FFFFFF);
}

.faq-question-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.faq-toggle {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--primary);
  font-weight: bold;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #6B7280;
  line-height: 1.7;
  font-size: 0.98rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
  color: var(--dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 32px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-item p {
  opacity: 0.7;
  margin: 0;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.quick-link:hover {
  padding-left: 10px;
}

.contact-form-box {
  background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
}

.success-message h3 {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.success-message p {
  opacity: 0.7;
}

/* ==================== FOOTER ==================== */
.main-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-brand p {
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: all 0.3s;
}

.footer-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0.6;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* ==================== FLOATING QUOTE BUTTON ==================== */
.quote-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, #10B981, #008080, #D4AF37, #059669);
  background-size: 300% 300%;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  z-index: 1000;
  font-weight: 700;
  transition: all 0.3s;
  animation: gradient-shift 4s ease-in-out infinite, pulse-quote 2s ease-in-out infinite;
}

.quote-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(16, 185, 129, 0.6);
  animation: gradient-shift 2s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  }
  25% {
    background-position: 25% 50%;
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.4);
  }
  50% {
    background-position: 50% 50%;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }
  75% {
    background-position: 75% 50%;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.4);
  }
  100% {
    background-position: 100% 50%;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
  }
}

@keyframes pulse-quote {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.quote-icon {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

.quote-text {
  font-size: 0.95rem;
}

@keyframes pulse-quote {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.6);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

/* ==================== WHATSAPP BUTTON ==================== */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #25D366;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.wa-icon {
  font-size: 1.8rem;
}

.wa-text {
  display: none;
}

/* ==================== ANIMATIONS ==================== */
.animate-in {
  animation: fadeInUp 1s ease backwards;
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.3s; }
.animate-in:nth-child(3) { animation-delay: 0.5s; }
.animate-in:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .departments-grid {
    grid-template-columns: 1fr;
  }
  
  .why-content {
    grid-template-columns: 1fr;
  }
  
  .why-visual {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile Navigation */
  .nav-content {
    padding: 1rem 1.5rem;
  }
  
  .logo-main {
    font-size: 1.2rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    display: block;
    font-size: 1.1rem;
  }
  
  .hero-landing {
    padding: 6rem 1.5rem 3rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .cta-button {
    min-width: 100%;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }
  
  .why-visual {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .card-4, .card-5 {
    grid-column: 1 / -1;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
  
  /* Mobile Split Image - Stack Vertically */
  .hero-split-image {
    flex-direction: column;
  }

  .split-line {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
  }
  
  /* Mobile floating button */
  .nav-btn-cta {
    top: 15px;
    right: 15px;
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
  
  /* Hero title mobile */
  .hero-title {
    padding: 1.5rem 2rem;
    margin: 0 1rem;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .whatsapp-btn {
    padding: 0.8rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    bottom: 20px;
    right: 20px;
  }
  
  .wa-icon {
    font-size: 1.5rem;
  }

  .quote-btn {
    padding: 0.8rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
    bottom: 20px;
    left: 20px;
  }
  
  .quote-text {
    display: none;
  }
  
  .quote-icon {
    font-size: 1.3rem;
  }
  
  .why-features {
    grid-template-columns: 1fr;
  }
  
  .why-stats {
    grid-template-columns: 1fr;
  }

  /* Mobile Split Image - Stack Vertically */
  .hero-split-image {
    flex-direction: column;
  }

  .split-line {
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
  }
}
