/*
Theme Name: Cleaning Pro Window
Theme URI: https://cleaningprowindow.com/
Author: Muhammad Atif
Author URI: https://cleaningprowindow.com/
Description: A custom, modern WordPress theme for Cleaning Pro Window, built with Bootstrap 5.
Version: 1.0
License: GPL v2 or later
Text Domain: cleaning-pro-window
*/

/* ===== CUSTOM STYLES (from your design) ===== */
:root {
  --navy: #1A2B4C;
  --teal: #00B4A0;
  --light-bg: #f4f8fa;
  --gray-text: #4a5a6e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: var(--navy);
}

/* Buttons */
.btn-teal {
  background-color: var(--teal);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}
.btn-teal:hover {
  background-color: #0e9a89;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 160, 0.35);
}

.btn-outline-teal {
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 600;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
  padding: 0.7rem 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--navy) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: var(--teal);
}
.navbar-brand small {
  font-size: 0.6rem;
  font-weight: 400;
  color: #7a8a9e;
  letter-spacing: 1px;
  display: block;
  margin-top: -2px;
}
.navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  margin: 0 0.4rem;
  transition: color 0.2s;
}
.navbar .nav-link:hover {
  color: var(--teal) !important;
}
.navbar .phone-link {
  color: var(--teal);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}
.navbar .phone-link i {
  margin-right: 6px;
}

/* Hero */
.hero {
  background: linear-gradient(145deg, #f0f6fa 0%, #e4f0ee 100%);
  padding: 4.5rem 0 4rem 0;
}
.hero h1 {
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.15;
  color: var(--navy);
}
.hero h1 .highlight {
  color: var(--teal);
}
.hero p {
  color: var(--gray-text);
  font-size: 1.2rem;
  max-width: 500px;
}
.hero-img-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 2rem 1.5rem 2rem;
  box-shadow: 0 20px 50px rgba(26, 43, 76, 0.08);
  display: inline-block;
}
.hero-img-wrapper i {
  font-size: 5.5rem;
  color: var(--teal);
}

/* Trust Bar — ONE LINE (flex-nowrap) */
.trust-bar {
  padding: 2rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f2f9f8 100%);
  border-bottom: 1px solid rgba(0, 180, 160, 0.12);
}
.trust-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.3rem 0.4rem;
  border-radius: 18px;
  transition: all 0.3s ease;
  cursor: default;
  flex: 1 1 0;
  min-width: 0;
}
.trust-item:hover {
  transform: translateY(-3px);
}
.trust-item .icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 180, 160, 0.10);
  border-radius: 50%;
  margin-bottom: 0.3rem;
  transition: background 0.3s;
  flex-shrink: 0;
}
.trust-item:hover .icon-wrapper {
  background: rgba(0, 180, 160, 0.20);
}
.trust-item .icon-wrapper i {
  font-size: 1.5rem;
  color: var(--teal);
}
.trust-item .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
  white-space: nowrap;
}
.trust-item .stat-number .plus {
  color: var(--teal);
}
.trust-item .stat-label {
  font-size: 0.75rem;
  color: var(--gray-text);
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.trust-divider {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.25;
  flex-shrink: 0;
  margin: 0 0.2rem;
}
@media (max-width: 576px) {
  .trust-item .icon-wrapper { width: 38px; height: 38px; }
  .trust-item .icon-wrapper i { font-size: 1.1rem; }
  .trust-item .stat-number { font-size: 1.2rem; }
  .trust-item .stat-label { font-size: 0.6rem; }
  .trust-divider { width: 4px; height: 4px; margin: 0 0.1rem; }
  .trust-wrapper { gap: 0.2rem; }
}
@media (max-width: 400px) {
  .trust-item .stat-number { font-size: 1rem; }
  .trust-item .stat-label { font-size: 0.5rem; }
  .trust-item .icon-wrapper { width: 30px; height: 30px; }
  .trust-item .icon-wrapper i { font-size: 0.9rem; }
}

/* Section Titles */
.section-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--navy);
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--teal);
  margin: 10px auto 0 auto;
  border-radius: 4px;
}

/* Service Cards */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 24px rgba(26, 43, 76, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 180, 160, 0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(26, 43, 76, 0.10);
  border-color: var(--teal);
}
.service-card i {
  font-size: 2.8rem;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.service-card h5 {
  font-weight: 700;
  color: var(--navy);
}
.service-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* Why Choose Us */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 18px rgba(26, 43, 76, 0.04);
  border-left: 4px solid var(--teal);
}
.why-card i {
  font-size: 2rem;
  color: var(--navy);
  background: rgba(0, 180, 160, 0.12);
  padding: 0.8rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.why-card h5 {
  font-weight: 700;
  color: var(--navy);
}
.why-card p {
  color: var(--gray-text);
  font-size: 0.95rem;
}

/* Contact */
.contact-info i {
  color: var(--teal);
  width: 28px;
  font-size: 1.2rem;
}
.contact-info li {
  list-style: none;
  margin-bottom: 0.9rem;
  color: #2d3e5a;
}

/* Newsletter */
.newsletter-box {
  background: var(--navy);
  border-radius: 24px;
  padding: 2.8rem 2.5rem;
  color: #fff;
}
.newsletter-box .form-control {
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  border: none;
}
.newsletter-box .btn-teal {
  border-radius: 50px;
  padding: 0.75rem 2.2rem;
}

/* Footer */
.footer {
  background: #0f1c30;
  color: #b0c4d9;
  padding: 2.5rem 0 1.5rem 0;
}
.footer a {
  color: #b0c4d9;
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--teal);
}
.footer .social-icons a {
  display: inline-block;
  margin-left: 1rem;
  font-size: 1.2rem;
}

/* ... your existing responsive code ... */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .hero { text-align: center; padding: 3rem 0; }
  .hero p { margin: 0 auto; }
  .section-title { font-size: 1.8rem; }
}

/* ========================================== */
/* NEW NAVIGATION & DROPDOWN TWEAKS           */
/* ========================================== */

/* 1. Style the Dropdown Menu to match your rounded design */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(26, 43, 76, 0.08);
  padding: 0.5rem 0;
}
.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s ease;
}
.dropdown-item:hover {
  background: rgba(0, 180, 160, 0.08);
  color: var(--teal);
}
.dropdown-item:active {
  background: var(--teal);
  color: #fff;
}

/* 2. Give your phone link a proper hover state */
.navbar .phone-link:hover {
  color: #0e9a89 !important; /* Slightly darker teal on hover */
  transform: translateY(-1px);
}