/* ============================================================
   VICENTE PRO REMODELING — Global Stylesheet
   All pages reference this one file.
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --red:       #C91B1B;
  --red-dark:  #A01515;
  --dark:      #1A1A2E;
  --text:      #2D2D2D;
  --gray:      #F5F5F5;
  --border:    #E0E0E0;
  --white:     #FFFFFF;
  --shadow:    0 4px 20px rgba(0,0,0,.10);
  --radius:    8px;
  --transition: 0.3s ease;
  --header-h:  72px;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: #f4c4c4; }
@media (max-width: 600px) {
  .top-bar { font-size: 11px; padding: 6px 16px; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.10);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--header-h);
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  height: 54px;
  width: auto;
}

/* Desktop nav */
.main-nav { display: flex; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.main-nav > ul > li > a:hover { color: var(--red); background: var(--gray); }

/* Dropdown */
.main-nav .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 999;
}
.main-nav .dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.main-nav .dropdown li a:hover { color: var(--red); background: var(--gray); }
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown.open .dropdown { display: block; }
.main-nav .has-dropdown > a .arrow { font-size: 11px; margin-left: 4px; }

/* CTA phone in nav */
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: var(--radius);
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 290px;
  height: 100vh;
  background: var(--white);
  box-shadow: 4px 0 20px rgba(0,0,0,.15);
  z-index: 1100;
  overflow-y: auto;
  padding: 80px 0 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-menu ul { padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu li a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.mobile-menu li a:hover { color: var(--red); background: var(--gray); }

/* Mobile sub-menu toggle */
.mobile-menu .m-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: none;
  width: 100%;
  text-align: left;
}
.mobile-menu .m-dropdown-toggle:hover { color: var(--red); background: var(--gray); }
.mobile-menu .m-sub {
  display: none;
  background: var(--gray);
}
.mobile-menu .m-sub.open { display: block; }
.mobile-menu .m-sub li a {
  font-size: 14px;
  font-weight: 500;
  padding-left: 40px;
  color: var(--text);
}
.mobile-menu .m-phone {
  margin: 16px 24px;
  display: block;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; pointer-events: none; }
  .mobile-overlay.open { pointer-events: auto; }
  .header-main { padding: 0 20px; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: rgba(15, 15, 15, 0.9);
  background-color: #0f0f0f;
  color: var(--white);
  text-align: center;
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('mimg/handyman1.jpg') center/cover no-repeat;
  opacity: 0.22;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}
.page-hero .btn-red { margin: 0 auto; }

/* ============================================================
   HOMEPAGE HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('mimg/handyman1.jpg') center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.75);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.4);
}
.hero-content h1 span { color: #ff9090; }
.hero-content p {
  font-size: clamp(16px, 2.2vw, 20px);
  margin-bottom: 36px;
  opacity: 0.92;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
  background: rgba(255,255,255,.15);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,27,27,.35); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,.7);
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.btn-outline:hover { background: var(--white); color: var(--dark); }
.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
}
.btn-dark:hover { background: #2d2d4e; color: var(--white); }

/* ============================================================
   SECTION LAYOUT HELPERS
   ============================================================ */
.section {
  padding: 80px 24px;
}
.section-sm {
  padding: 48px 24px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title p {
  font-size: 17px;
  color: #666;
  max-width: 580px;
  margin: 0 auto;
}
.section-title .red-bar {
  width: 56px;
  height: 4px;
  background: var(--red);
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* ============================================================
   ABOUT SECTION (homepage)
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.about-text p { font-size: 16px; color: #555; margin-bottom: 16px; line-height: 1.75; }
.about-text a { margin-top: 8px; }
.about-text strong { color: var(--red); }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img img { height: 260px; }
}

/* ============================================================
   SERVICES CARD GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
  border-color: var(--red);
}
.service-card .icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card a.learn-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  border-bottom: 2px solid transparent;
}
.service-card a.learn-more:hover { border-color: var(--red); }

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px 32px;
  box-shadow: 0 6px 28px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
}
.review-quote {
  font-size: 80px;
  color: var(--red);
  line-height: 0.75;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
  user-select: none;
}
.review-text {
  font-style: italic;
  font-size: 15px;
  color: #5a5a6a;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 28px;
}
.review-attribution {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.reviewer-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}
.star-rating span {
  color: #d4a017;
  font-size: 20px;
  letter-spacing: 1px;
}
.review-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.review-link:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 28px 24px 24px; }
}

/* ============================================================
   SVG INLINE ICONS
   ============================================================ */
.icon-wrap {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* Top-bar phone icon */
.top-bar .icon-wrap svg { width: 14px; height: 14px; stroke: white; margin-right: 5px; vertical-align: middle; }
/* Contact detail icons */
.contact-detail .detail-icon .icon-wrap svg { width: 22px; height: 22px; stroke: var(--red); }
/* Footer icons */
.footer-icon { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.footer-icon svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.7); stroke-width: 1.75; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
/* Service card icon area */
.service-card .svc-icon { margin-bottom: 16px; }
.service-card .svc-icon svg { width: 36px; height: 36px; stroke: var(--red); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  text-align: left;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.faq-question:hover { background: var(--gray); }
.faq-question .faq-icon { font-size: 20px; font-weight: 400; flex-shrink: 0; color: var(--red); transition: transform 0.3s; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 18px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}
.faq-answer a { color: var(--red); text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section {
  background: var(--gray);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.contact-info p { font-size: 16px; color: #555; margin-bottom: 10px; }
.contact-info a { color: var(--red); font-weight: 600; }
.contact-info a:hover { text-decoration: underline; }
.contact-detail { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-detail .detail-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.contact-detail p { margin: 0; font-size: 15px; }

/* Form styling */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 15px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  touch-action: manipulation;
  min-height: 48px;
}
.form-submit-btn:hover { background: var(--red-dark); }
.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  color: #2e7d32;
  font-weight: 600;
  font-size: 15px;
  display: none;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .contact-form-wrap { padding: 24px 18px; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-banner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 14px;
}
.cta-banner p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-red { font-size: 17px; padding: 16px 40px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.82);
  padding: 64px 24px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col p, .footer-col li {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: #ff9090; }
.footer-col ul { padding: 0; }
.footer-col ul li { list-style: none; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER SERVICE PAGE LAYOUT
   ============================================================ */
.service-page-hero {
  background: #0f0f0f;
  color: var(--white);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('mimg/handyman-working.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.service-page-hero > * { position: relative; z-index: 1; }
.service-page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
}
.service-page-hero p {
  font-size: clamp(15px, 2vw, 18px);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 24px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.content-main h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 12px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p {
  font-size: 16px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.content-main ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.content-main ul li {
  font-size: 15px;
  color: #555;
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}
.content-main ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.sidebar-card ul li {
  font-size: 14px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 18px;
  position: relative;
}
.sidebar-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); }
.sidebar-card ul li:last-child { border: none; }
.sidebar-contact {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.sidebar-contact h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.sidebar-contact p { font-size: 14px; opacity: 0.9; margin-bottom: 20px; }
.sidebar-contact .phone { font-size: 22px; font-weight: 700; display: block; margin-bottom: 16px; color: var(--white); }
.sidebar-contact .btn-white {
  display: block;
  background: var(--white);
  color: var(--red);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
}
.sidebar-contact .btn-white:hover { background: #f0f0f0; }

@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin: 16px 0;
}
.step {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border-top: 4px solid var(--red);
}
.step-num {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 12px;
}
.step h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.step p { font-size: 14px; color: #666; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin: 16px 0;
}
.benefit-card {
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.benefit-card h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 6px; }
.benefit-card p { font-size: 14px; color: #666; }

/* ============================================================
   AREA PAGE LAYOUT
   ============================================================ */
.area-hero {
  background: #0f0f0f;
  color: var(--white);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.area-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('mimg/house-img1.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.area-hero > * { position: relative; z-index: 1; }
.area-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 12px;
}
.area-hero p {
  font-size: clamp(15px, 2vw, 18px);
  max-width: 580px;
  margin: 0 auto 28px;
  opacity: 0.88;
}
.area-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.area-service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.area-service-item:hover { border-color: var(--red); background: #fff5f5; }
.area-service-item a { font-weight: 600; font-size: 15px; color: var(--dark); }
.area-service-item:hover a { color: var(--red); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.founder-section img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.founder-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.founder-text p { font-size: 16px; color: #555; margin-bottom: 14px; line-height: 1.75; }
@media (max-width: 860px) {
  .founder-section { grid-template-columns: 1fr; gap: 28px; }
  .founder-section img { height: 280px; }
}

/* Stats bar */
.stats-bar {
  background: var(--red);
  color: var(--white);
  padding: 40px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-item .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  display: block;
}
.stat-item .label { font-size: 14px; opacity: 0.88; margin-top: 4px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-page-item {
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  background: #eee;
}
.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-page-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .gallery-page-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-page-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   ADMIN PAGE
   ============================================================ */
.admin-wrap {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
}
.admin-header {
  text-align: center;
  margin-bottom: 32px;
}
.admin-header h1 { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.admin-upload-zone {
  background: var(--gray);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 32px;
}
.admin-upload-zone h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.admin-upload-zone p { color: #666; margin-bottom: 20px; }
.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.admin-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.admin-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   FADE-IN ANIMATION (IntersectionObserver)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.bg-gray { background: var(--gray); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gray);
  padding: 12px 24px;
  font-size: 13px;
  color: #888;
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--red); }
.breadcrumb span { margin: 0 6px; }

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--red);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  z-index: 500;
  transition: var(--transition);
  touch-action: manipulation;
}
#backToTop:hover { background: var(--red-dark); transform: translateY(-3px); }
#backToTop.show { display: flex; }
