/* Modern Design System for CLEAR Sliding Window Contractor */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary-dark: #11141a;
  --primary-navy: #1c1f26;
  --primary-blue: #b91c1c;
  --accent-blue: #dc2626;
  --accent-light: #ef4444;
  --accent-hover: #991b1b;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --bg-light: #fafaf9;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 8px 25px rgba(220, 38, 38, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  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 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: #e2e8f0;
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.top-info-item i, .top-info-item svg {
  color: var(--accent-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.top-info-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar a:hover {
  color: var(--accent-light);
}

/* Main Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  padding: 4px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styling */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 68px;
  max-height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.brand-logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-navy), var(--accent-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-navy);
  line-height: 1;
}

.logo-title span {
  color: var(--accent-blue);
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

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

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

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

.nav-cta {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
  color: #ffffff;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  color: var(--primary-navy);
  font-size: 1.5rem;
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: #ffffff;
  z-index: 999;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 1.1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 680px;
  background: url('images/slide1.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
  transition: background-image 0.4s ease-in-out;
}

.hero-overlay {
  display: none !important;
}

.hero-content {
  display: none !important;
}

.hero-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-title span {
  color: #ef4444;
  background: linear-gradient(90deg, #f87171, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: #f1f5f9;
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.btn-icon {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* Slider Arrow Controls - Hidden */
.slider-arrow {
  display: none !important;
}

.slider-dots {
  display: none !important;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--accent-light);
}

/* Section Formatting */
.section {
  padding: 90px 0;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px auto;
}

.section-tag {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.2rem;
  color: var(--primary-navy);
  font-weight: 800;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

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

.about-content .section-tag {
  text-align: left;
}

.about-title {
  font-size: 2.3rem;
  line-height: 1.25;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--accent-blue);
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--primary-navy);
}

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

/* Service Card Styling with Image, Description, and Direct Call/WhatsApp CTA Buttons */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.3);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

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

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

.service-tag-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(17, 20, 26, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(220, 38, 38, 0.1);
  color: var(--accent-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.card-btn {
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
}

.card-btn.call-btn {
  background: var(--accent-blue);
  color: #ffffff;
}

.card-btn.call-btn:hover {
  background: #11141a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.card-btn.wa-btn {
  background: #25d366;
  color: #ffffff;
}

.card-btn.wa-btn:hover {
  background: #1eb857;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: #ffffff;
  padding: 28px 18px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--accent-blue);
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.why-card h4 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}

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

/* How We Work Section */
.process-wrapper {
  position: relative;
  margin-top: 40px;
}

.process-line {
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #cbd5e1;
  z-index: 1;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.step-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 3px solid var(--accent-blue);
  border-radius: 50%;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step-card:hover .step-icon-wrapper {
  background: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.1);
}

.step-number {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.step-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

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

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.testimonials-section .section-title {
  color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.6;
}

.author-info h5 {
  color: #ffffff;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.author-info p {
  color: var(--accent-light);
  font-size: 0.82rem;
}

/* FAQ & Contact Section */
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px 24px;
}

/* Contact Form & Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary-navy);
}

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

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: #ffffff;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.btn-submit {
  background: var(--accent-blue);
  color: #ffffff;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-blue);
}

/* Luxury Redesigned Modern Footer */
.footer {
  background: linear-gradient(180deg, #11141a 0%, #0d0f14 100%);
  color: #94a3b8;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Pre-Footer Consultation CTA Strip */
.footer-cta-strip {
  padding: 40px 0 20px;
}

.footer-cta-box {
  background: linear-gradient(135deg, #1c1f26 0%, #2b1216 100%);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: var(--radius-lg);
  padding: 36px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.footer-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.2);
  color: #f87171;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.footer-cta-text h3 {
  color: #ffffff;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin-bottom: 6px;
  font-family: 'Outfit', sans-serif;
}

.footer-cta-text p {
  color: #cbd5e1;
  font-size: 0.92rem;
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.footer-cta-btn {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.footer-cta-btn.phone-btn {
  background: #ffffff;
  color: var(--primary-navy);
}

.footer-cta-btn.phone-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.footer-cta-btn.wa-btn {
  background: #25d366;
  color: #ffffff;
}

.footer-cta-btn.wa-btn:hover {
  background: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

/* Main Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1.6fr;
  gap: 36px;
  padding: 50px 0 40px;
}

.footer-logo-link {
  display: inline-block;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 18px;
}

.footer-trust-pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.trust-pill {
  font-size: 0.8rem;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-pill i {
  color: #f87171;
  font-size: 0.85rem;
}

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

.social-link.wa:hover {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  font-family: 'Outfit', sans-serif;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.65rem;
  color: #f87171;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: #ffffff;
}

/* Contact List in Footer */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 34px;
  height: 34px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #f87171;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}

.contact-label {
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-val {
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.5;
  transition: var(--transition);
}

.contact-val:hover {
  color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #94a3b8;
}

.footer-copy strong {
  color: #ffffff;
}

.footer-extra-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-extra-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-extra-links a:hover {
  color: #ffffff;
}

.developer-credit {
  font-size: 0.82rem;
  color: #94a3b8;
}

.developer-credit a {
  color: #f87171;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.developer-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .footer-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
  }
  .footer-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .footer-cta-btn {
    justify-content: center;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 35px 0 25px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-extra-links {
    justify-content: center;
  }
}

/* Mobile Fixed Quick Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 998;
  padding: 10px 16px;
  gap: 12px;
}

.action-btn {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.action-btn.call {
  background: var(--primary-navy);
  color: #ffffff;
}

.action-btn.whatsapp {
  background: #25d366;
  color: #ffffff;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-backdrop.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

/* Responsive Media Queries for All Screen Sizes */
@media (max-width: 1024px) {
  .hero { width: 100%; aspect-ratio: 16 / 9; height: auto; max-height: 550px; }
  .about-grid, .faq-contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrapper img { height: 360px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-line { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  
  /* Top bar on mobile - Only phone number */
  .top-bar {
    display: block !important;
    padding: 6px 0;
    background: #11141a;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .top-bar-content {
    justify-content: center;
  }
  .top-info-left {
    justify-content: center;
    width: 100%;
    gap: 0;
  }
  .top-address-item {
    display: none !important;
  }
  .top-phone-item {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #ffffff;
    text-decoration: none;
  }
  .top-phone-item i {
    color: #f87171;
    font-size: 0.85rem;
  }

  .navbar { height: 72px; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .logo-img { height: 52px; max-height: 52px; }

  .mobile-nav {
    overflow-y: auto;
    max-height: calc(100vh - 72px);
    top: 72px;
  }

  .hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: unset;
    min-height: unset;
    background-size: cover !important;
    background-position: center !important;
  }

  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; gap: 18px; }

  .faq-question { font-size: 0.95rem; padding: 14px 16px; }
  .contact-info-card { flex-direction: row; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: unset;
    background-size: cover !important;
    background-position: center !important;
  }
  .section { padding: 45px 0; }
  .section-title { font-size: 1.55rem; }
  .about-title { font-size: 1.5rem; }
  .about-image-wrapper img { height: 240px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 18px 14px; }
  .service-icon-box { width: 48px; height: 48px; margin-bottom: 12px; }
  .service-title { font-size: 0.96rem; }

  .modal-card { padding: 22px 16px; max-height: 90vh; overflow-y: auto; }
}

/* Floating Action Contact Buttons (WhatsApp & Phone Call) */
.floating-contact-wrap {
  position: fixed;
  bottom: 30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.float-wa {
  background: #25d366;
  animation: pulseGreen 2s infinite;
}

.float-wa:hover {
  background: #1eb857;
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.float-call {
  background: var(--primary-navy);
  animation: pulseBlue 2s infinite 1s;
}

.float-call:hover {
  background: var(--accent-blue);
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.5);
}

.float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
  visibility: visible;
  right: 65px;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

@media (max-width: 768px) {
  .floating-contact-wrap {
    bottom: 85px;
    right: 16px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
  .float-tooltip {
    display: none;
  }
}
