:root {
  --primary: #0057B8;
  --secondary: #2E8B57;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --dark: #2D3748;
  --text: #4A5568;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }

img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6, p, li, a, button, label, span { overflow-wrap: anywhere; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; }

.section-padding { padding: 90px 0; }
.section-title { margin-bottom: 45px; }
.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title p { max-width: 650px; margin: 0 auto; color: var(--text); }

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-light { background-color: var(--light) !important; }

.btn-primary, .btn-outline-primary, .btn-secondary {
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.3s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #1d6fd7);
  border: none;
  color: var(--white);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--white); }
.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }
.btn-secondary {
  background: var(--secondary);
  border: none;
  color: var(--white);
}
.btn-secondary:hover { background: #287d4f; color: var(--white); }

.site-header .navbar {
  padding: 14px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.site-header .navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header .navbar-brand img { width: 48px; height: 48px; }
.site-header .nav-link {
  font-weight: 600;
  color: var(--dark) !important;
  margin: 0 4px;
  white-space: normal;
}
.site-header .nav-link:hover, .site-header .nav-link.active { color: var(--primary) !important; }
.site-header .btn-book { background: var(--primary); color: var(--white); border-radius: 999px; padding: 10px 18px; }

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background: linear-gradient(90deg, rgba(7, 28, 52, 0.94) 0%, rgba(7, 28, 52, 0.76) 48%, rgba(7, 28, 52, 0.28) 100%), url('../../images/solokats-roof-cleaning.jpg') center/cover no-repeat;
}
.hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 760px;
}
.hero-content p { font-size: 1.08rem; max-width: 680px; margin-bottom: 28px; }
.hero-visual { position: relative; max-width: 430px; margin-left: auto; }
.hero-visual img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border: 8px solid rgba(255,255,255,0.92); box-shadow: 0 24px 55px rgba(0,0,0,0.26); }
.hero-visual .hero-visual-label { position: absolute; left: -28px; bottom: 28px; max-width: 230px; padding: 16px 18px; background: var(--white); color: var(--dark); border-left: 4px solid var(--secondary); box-shadow: var(--shadow); }
.hero-visual-label strong { display: block; color: var(--primary); font-family: 'Montserrat', sans-serif; }
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.badge-pill {
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 9px 13px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.feature-card, .service-card, .price-card, .team-card, .blog-card, .faq-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover, .service-card:hover, .price-card:hover, .team-card:hover, .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12); }
.feature-card { padding: 28px; text-align: center; }
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0,87,184,0.16), rgba(46,139,87,0.16));
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.service-card { padding: 24px; }
.service-card .icon-box {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.process-step { position: relative; }
.process-step .step-number {
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); font-weight: 700; margin-bottom: 16px;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary), #0d5fb2 60%, var(--secondary));
  color: var(--white);
}
.stat-card { text-align: center; padding: 24px; }
.stat-card h3 { font-size: 2rem; font-weight: 700; }

.testimonial-card { padding: 24px; background: var(--white); border-radius: 18px; }
.testimonial-card .quote-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; }
.swiper { padding-bottom: 24px; }
.swiper-pagination-bullet-active { background: var(--primary); }

.cta-banner {
  background: linear-gradient(135deg, rgba(0,87,184,0.95), rgba(46,139,87,0.95));
  color: var(--white);
  padding: 45px;
  border-radius: 22px;
}

.what-we-do .carousel-item img {
  height: 460px;
  object-fit: cover;
}
.what-we-do .carousel-caption {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
  text-align: left;
  min-height: 130px;
}
.what-we-do .carousel-caption h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.what-we-do .carousel-caption p { margin-bottom: 0; }

.homepage-main { display: flex; flex-direction: column; }
.homepage-main .home-intro { order: 1; }
.homepage-main .home-services { order: 2; }
.homepage-main .home-proof { order: 3; }
.homepage-main .home-process { order: 4; }
.homepage-main .home-showcase { order: 5; }
.homepage-main .home-stats { order: 6; }
.homepage-main .home-testimonials { order: 7; }
.homepage-main .home-cta { order: 8; }

.home-intro .intro-image { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 4px; box-shadow: 18px 18px 0 rgba(0,87,184,0.09); }
.home-services .service-card { padding: 24px; }
.home-services .service-card .image-card { margin: -24px -24px 22px; }
.home-services .service-card h4 { font-family: 'Montserrat', sans-serif; color: var(--dark); }
.home-proof { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.home-proof .feature-card { box-shadow: none; border: 0; border-radius: 0; background: transparent; padding: 18px 14px; }
.home-proof .feature-icon { width: 48px; height: 48px; font-size: 1.1rem; }

.about-badge { display: inline-block; background: rgba(0,87,184,0.08); color: var(--primary); padding: 8px 14px; border-radius: 999px; font-weight: 600; margin-bottom: 12px; }

.page-hero { padding: 120px 0 80px; background: linear-gradient(90deg, rgba(0,46,92,0.92), rgba(0,87,184,0.72)), url('../../images/giorgio-trovato-5TXz228u4eo-unsplash.jpg') center/cover no-repeat; color: var(--white); }
.page-hero .page-title { font-family: 'Montserrat', sans-serif; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 700; }

.hero-image-card { position: relative; }
.hero-image-card::after { content: ''; position: absolute; inset: 14px -14px -14px 14px; border: 2px solid rgba(255,255,255,0.45); border-radius: 18px; z-index: 0; }
.hero-image-card img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }

.founder-section { position: relative; background: linear-gradient(135deg, rgba(0,87,184,0.07), rgba(46,139,87,0.05)); }
.founder-portrait-card { position: relative; padding: 16px; background: linear-gradient(145deg, #ffffff, #f3f8ff); border-radius: 32px; box-shadow: 0 28px 60px rgba(7, 28, 52, 0.12); border: 1px solid rgba(0,87,184,0.13); overflow: hidden; }
.founder-portrait-card::before { content: ''; position: absolute; inset: auto -40px -40px auto; width: 190px; height: 190px; border-radius: 50%; background: rgba(46,139,87,0.14); }
.founder-image-frame { position: relative; overflow: hidden; border-radius: 24px; }
.founder-image-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; border-radius: 24px; }
.founder-quote-badge { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(255,255,255,0.95); border: 1px solid rgba(255,255,255,0.75); backdrop-filter: blur(8px); border-radius: 999px; box-shadow: 0 12px 28px rgba(0,0,0,0.12); font-weight: 700; color: var(--primary); font-size: 0.94rem; }
.founder-story-card { position: relative; padding: 36px; background: linear-gradient(135deg, #ffffff, #f8fbff); border-radius: 32px; box-shadow: 0 28px 60px rgba(7, 28, 52, 0.12); border: 1px solid rgba(0,87,184,0.13); overflow: hidden; }
.founder-story-card::before { content: ''; position: absolute; top: -70px; right: -70px; width: 220px; height: 220px; border-radius: 50%; background: rgba(0,87,184,0.08); }
.founder-story-header { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.founder-name-block h2 { margin: 0; font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 700; color: var(--dark); letter-spacing: -0.02em; }
.founder-role { font-weight: 700; color: var(--secondary); margin-bottom: 0; font-size: 1rem; }
.founder-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.founder-highlights span { display: inline-block; padding: 9px 13px; border-radius: 999px; background: rgba(0,87,184,0.08); color: var(--primary); font-weight: 700; }

.page-feature-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 4px; box-shadow: 16px 16px 0 rgba(0,87,184,0.08); }
.page-feature-image.tall { aspect-ratio: 4 / 5; }
.image-caption { margin-top: 14px; font-size: 0.86rem; color: var(--text); }
.page-image-band { padding: 0 0 90px; }
.page-image-band img { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; }
.price-card { overflow: hidden; padding: 0 !important; }
.price-card .price-image { width: 100%; height: 150px; object-fit: cover; }
.price-card .price-content { padding: 24px; }
.contact-visual { width: 100%; height: 235px; object-fit: cover; border-radius: 12px; margin-bottom: 22px; }
.faq-visual { width: 100%; height: 100%; min-height: 380px; object-fit: cover; border-radius: 4px; }

.image-card { position: relative; overflow: hidden; border-radius: 16px 16px 0 0; }
.image-card img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .image-card img, .blog-card:hover .card-img-top { transform: scale(1.04); }
.service-card .image-card { margin: -24px -24px 24px; }
.service-card .image-card img { height: 220px; }
.service-card .image-card + .icon-box { margin-top: 0; }

.gallery-card { padding: 20px; overflow: hidden; }
.gallery-card h3 { margin-bottom: 18px; }
.gallery-tile { position: relative; display: block; overflow: hidden; border-radius: 12px; background: var(--light); }
.gallery-tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.5s ease, filter 0.5s ease; }
.gallery-tile::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 12px; bottom: 12px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.92); color: var(--primary); opacity: 0; transform: translateY(8px); transition: 0.3s ease; }
.gallery-tile:hover img { transform: scale(1.06); filter: brightness(0.86); }
.gallery-tile:hover::after { opacity: 1; transform: translateY(0); }

.timeline-item { position: relative; padding-left: 28px; margin-bottom: 20px; }
.timeline-item::before { content: ''; position: absolute; left: 8px; top: 6px; width: 2px; height: calc(100% + 8px); background: var(--border); }
.timeline-item .timeline-dot { position: absolute; left: 0; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); }

.price-card.featured { border: 2px solid var(--secondary); transform: translateY(-6px); }
.price-card .price { font-size: 2rem; color: var(--primary); font-weight: 700; }

.form-card { padding: 24px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.form-control, .form-select { border-radius: 12px; padding: 12px 14px; border: 1px solid var(--border); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 0.2rem rgba(0,87,184,0.16); }

.faq-item { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-bottom: 10px; background: var(--white); }
.faq-item .faq-question { padding: 16px 18px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-item .faq-answer { display: none; padding: 0 18px 18px; color: var(--text); }
.faq-item.active .faq-answer { display: block; }

.blog-card .card-img-top { height: 220px; object-fit: cover; }
.blog-card .card-body { padding: 20px; }

.footer {
  background: var(--dark);
  color: #f0f0f0;
  padding: 70px 0 30px;
}
.footer a { color: #d7e7ff; }
.footer .social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); margin-right: 8px; }

.scroll-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 1000;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--primary); color: var(--white); display: none; box-shadow: var(--shadow);
}

.floating-whatsapp {
  position: fixed; right: 24px; bottom: 90px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #25d366; color: var(--white); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  font-size: 1.7rem; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  color: var(--white); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
}

.floating-admin-button {
  position: fixed; right: 24px; bottom: 88px; z-index: 1000;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 16px; border-radius: 999px;
  background: var(--dark); color: var(--white); text-decoration: none;
  box-shadow: var(--shadow); font-weight: 700;
}

.floating-admin-button:hover {
  color: var(--white); opacity: 0.95;
}
.scroll-top.show { display: inline-flex; align-items: center; justify-content: center; }

.map-frame { border: 0; border-radius: 18px; min-height: 320px; }

.contact-list li { margin-bottom: 10px; }

@media (max-width: 991px) {
  .hero-section { min-height: 80vh; }
  .hero-content { padding: 60px 0; }
  .hero-visual { margin: 0 auto 50px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 70px 0; }
  .page-hero { padding: 100px 0 60px; }
  .cta-banner { padding: 28px; }
  .what-we-do .carousel-item img { height: 320px; }
  .what-we-do .carousel-caption { padding: 18px; }
  .hero-visual { display: none; }
  .hero-section { background-position: 62% center; }
  .hero-visual-label { display: none; }
}
