/*
Theme Name: Smooth Finish Painting
Theme URI: https://smoothfinish.webzeeinfotech.com/
Author: Webzee Australia
Author URI: https://webzeeinfotech.com/
Description: A high-performance, premium painting services WordPress theme designed for Smooth Painting Pty Ltd. Includes responsive design, sliders, interactive counters, and custom quote enquiry forms.
Version: 1.0.27
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smooth-finish
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* WordPress Core Alignment & Layout Rules */
.alignnone { margin: 5px 20px 20px 0; }
.aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; }
.alignright { float:right; margin: 5px 0 20px 20px; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.alignright { float: right; margin: 5px 0 20px 20px; }
a img.alignnone { margin: 5px 20px 20px 0; }
a img.alignleft { float: left; margin: 5px 20px 20px 0; }
a img.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { background: #fff; border: 1px solid #f0f0f0; max-width: 96%; padding: 5px 3px 10px; text-align: center; }
.wp-caption.alignnone { margin: 5px 20px 20px 0; }
.wp-caption.alignleft { margin: 5px 20px 20px 0; }
.wp-caption.alignright { margin: 5px 0 20px 20px; }
.wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; }
.wp-caption p.wp-caption-text { font-size: 12px; line-height: 17px; margin: 0; padding: 0 4px 5px; }
.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); clip: auto !important; -webkit-clip-path: none; clip-path: none; color: #21759b; display: block; font-size: 14px; font-size: 0.875rem; font-weight: bold; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; }

/* Blog / Page Standard Layout Styles */
.page-header-banner {
  background: linear-gradient(135deg, #171717 0%, #2a2a2a 100%);
  padding: 120px 0 60px;
  color: #fff;
  text-align: center;
}
.page-header-banner h1 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #fff;
}
.page-header-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.main-content-area {
  padding: 70px 0;
  min-height: 50vh;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.blog-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.blog-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 15px;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card-title a {
  color: var(--ink);
  transition: color 0.2s;
}
.blog-card-title a:hover {
  color: var(--red);
}
.blog-card-excerpt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.single-post-content img {
  border-radius: 12px;
  margin: 25px 0;
}
.single-post-content h2, .single-post-content h3, .single-post-content h4 {
  margin: 30px 0 15px;
  color: var(--ink);
}
.single-post-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}
.single-post-content ul, .single-post-content ol {
  margin: 0 0 20px 25px;
  color: #444;
}
.single-post-content li {
  margin-bottom: 8px;
}


:root{
  --red:#f52f2f;
  --red-dark:#d92020;
  --ink:#171717;
  --muted:#777;
  --cream:#f8f5ee;
  --soft:#f2f3f3;
  --line:#e7e7e7;
  --white:#fff;
  --radius:28px;
  --shadow:0 18px 55px rgba(20,20,20,.08);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.6;
  overflow-x:clip;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea,select{font:inherit}
.container{width:min(1160px,calc(100% - 48px));margin:auto}
.section{padding:95px 0}
.eyebrow{
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:10px;
  font-weight:700;
  margin-bottom:8px;
}
h1,h2,h3{line-height:1.05}
h2{font-size:38px;letter-spacing:-.03em}
p{color:var(--muted);font-size:15px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  cursor:pointer;
  border-radius:999px;
  padding:13px 21px;
  font-size:11px;
  font-weight:700;
  transition:.3s ease;
}
.btn-red{background:var(--red);color:#fff}
.btn-red:hover{background:var(--red-dark);transform:translateY(-2px);box-shadow:0 10px 25px rgba(245,47,47,.25)}
.btn-dark{background:#111;color:#fff}
.btn-outline{border:1px solid #222;background:#fff;color:#111}
.btn-sm{padding:10px 17px;font-size:10px}

/* ================================
   PREMIUM HEADER
================================ */

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 82px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
    transition: all 0.3s ease;
}

.nav {
    width: min(1200px, calc(100% - 40px));
    height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* ================================
   LOGO
================================ */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #111;
    text-decoration: none;

    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: -1.3px;

    white-space: nowrap;
}

.logo-mark {
    position: relative;
    width: 46px;
    height: 30px;
    flex-shrink: 0;

    transform: skew(-10deg);
}

.logo-mark span {
    position: absolute;
    left: 0;

    height: 5px;
    border-radius: 50px;

    transition: all 0.3s ease;
}

.logo-mark span:nth-child(1) {
    top: 1px;
    width: 36px;
    background: #111;
}

.logo-mark span:nth-child(2) {
    top: 8px;
    width: 46px;
    background: var(--red);
}

.logo-mark span:nth-child(3) {
    top: 15px;
    width: 35px;
    background: #111;
}

.logo-mark span:nth-child(4) {
    top: 22px;
    width: 27px;
    background: var(--red);
}

.logo:hover .logo-mark span:nth-child(1) {
    width: 42px;
}

.logo:hover .logo-mark span:nth-child(2) {
    width: 38px;
}

.logo:hover .logo-mark span:nth-child(3) {
    width: 43px;
}

.logo:hover .logo-mark span:nth-child(4) {
    width: 32px;
}


/* ================================
   NAVIGATION
================================ */

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    height: 100%;
}

.nav-links a {
    position: relative;

    display: inline-flex;
    align-items: center;

    height: 100%;

    color: #242424;
    text-decoration: none;

    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.1px;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 17px;

    width: 0;
    height: 2px;

    border-radius: 10px;

    background: var(--red);

    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 22px;
}


/* ================================
   HEADER CTA
================================ */

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 21px;

    border-radius: 50px;

    background: #111;
    color: #fff !important;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta:hover {
    background: var(--red);
    color: #fff !important;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}

.nav-cta::after {
    display: none !important;
}


/* ================================
   MOBILE MENU BUTTON
================================ */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 50%;

    background: #fff;
    color: #111;

    font-size: 20px;
    cursor: pointer;

    transition: all 0.25s ease;
}

.menu-toggle:hover {
    background: #111;
    color: #fff;
}


/* ================================
   TABLET
================================ */

@media (max-width: 950px) {

    .nav {
        width: min(100% - 30px, 1200px);
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 11px;
    }

    .nav-cta {
        padding: 0 17px;
    }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    header {
        height: 72px;
    }

    .nav {
        height: 72px;
        width: calc(100% - 28px);
    }

    .logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 43px;
        height: 28px;
    }

    .nav-links {
        position: absolute;

        top: calc(100% + 10px);
        left: 14px;
        right: 14px;

        height: auto;

        padding: 18px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);

        border: 1px solid rgba(17, 17, 17, 0.07);
        border-radius: 18px;

        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .nav-links.open {
        display: flex;
        animation: navDrop 0.25s ease forwards;
    }

    .nav-links a {
        width: 100%;
        height: auto;

        padding: 13px 14px;

        border-radius: 10px;

        font-size: 13px;
        font-weight: 650;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        margin-top: 8px;
    }

    .menu-toggle {
        display: inline-flex;
    }
}


/* ================================
   MENU ANIMATION
================================ */

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 420px) {

    .nav {
        width: calc(100% - 22px);
    }

    .logo {
        font-size: 18px;
    }

    .logo-mark {
        transform: scale(0.9) skew(-10deg);
        transform-origin: left center;
    }
}
/* Hero */
.hero{
  min-height:575px;
  position:relative;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.63) 43%,rgba(0,0,0,.20) 100%),
    url("https://images.unsplash.com/photo-1589939705384-5185137a7f0f?q=80&w=1920&auto=format&fit=crop") center/cover;
}
.hero:before{
  content:"";position:absolute;inset:auto 0 0;
  height:80px;background:linear-gradient(transparent,#fff);
}
.hero-inner{position:relative;z-index:1;width:100%}
.hero-copy{width:57%;color:#fff}
.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:64px;
  max-width:650px;
  margin-bottom:18px;
}
.hero p{color:rgba(255,255,255,.82);max-width:520px;font-size:14px}
.hero-actions{display:flex;gap:10px;margin-top:25px}
.hero-form{
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:330px;
  background:#fff;
  border-radius:16px;
  padding:23px;
  box-shadow:0 25px 70px rgba(0,0,0,.22);
}
.hero-form h3{font-family:"Playfair Display",serif;font-size:22px;margin-bottom:14px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.field label{display:block;font-size:8px;font-weight:700;text-transform:uppercase;color:#555;margin-bottom:4px}
.field input,.field select,.field textarea{
  width:100%;border:1px solid #ddd;border-radius:6px;padding:9px 10px;font-size:10px;outline:0;background:#fff
}
.field textarea{height:58px;resize:none}
.full{grid-column:1/-1}
.hero-form .btn{width:100%;margin-top:9px}

/* Intro / Services */
.intro{padding-bottom:35px}
.intro-top{display:grid;grid-template-columns:1fr 1.1fr;gap:90px;align-items:end}
.intro h2{max-width:360px}
.service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:52px}
.service-card{position:relative}
.service-icon{
  width:38px;height:38px;border:1.5px solid var(--red);color:var(--red);
  display:grid;place-items:center;border-radius:9px;margin-bottom:17px;font-size:15px
}
.service-card h3{font-size:15px;margin-bottom:10px}
.service-card p{font-size:10px;line-height:1.55}
.arrow{display:inline-block;margin-top:16px;font-size:14px}

/* Stats */
.stats{display:flex;justify-content:center;gap:110px;text-align:center;padding:25px 0 90px}
.stat strong{display:block;font-size:25px;letter-spacing:-1px}
.stat span{font-size:9px;color:#777}

/* Feature */
.feature-wrap{background:#f2f3f3;border-radius:30px;padding:34px 44px;position:relative;overflow:hidden}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:center}
.feature-main-img{height:420px;border-radius:16px;object-fit:cover;width:100%}
.feature-copy h2{font-size:29px;margin-bottom:15px}
.feature-copy>p{font-size:11px;margin-bottom:18px}
.feature-points{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.point{display:flex;gap:10px}
.point i{color:var(--red);font-size:15px;margin-top:2px}
.point h4{font-size:11px;margin-bottom:3px}
.point p{font-size:9px}
.feature-small{
  margin-top:24px;
  width:72%;
  margin-left:auto;
  height:155px;
  object-fit:cover;
  border-radius:15px;
}

/* About services */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.check-list{margin-top:22px;display:grid;gap:15px}
.check-item{display:grid;grid-template-columns:26px 1fr;gap:10px}
.check-item i{color:var(--red);font-size:17px}
.check-item h4{font-size:12px}
.check-item p{font-size:9px;margin-top:2px}
.about-images{display:grid;gap:18px}
.about-images img{width:100%;height:185px;object-fit:cover;border-radius:15px}
.phone-strip{
  margin-top:-38px;
  position:relative;
  width:max-content;
  margin-left:15px;
  background:#fff;
  border-radius:999px;
  box-shadow:var(--shadow);
  padding:7px 14px;
  font-size:9px;
  font-weight:700;
}

/* CTA */
.appointment{
  margin:15px 0 70px;
  min-height:130px;
  border-radius:28px;
  display:flex;align-items:center;justify-content:space-between;
  padding:28px 50px;
  color:#fff;
  background:
   linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.35)),
   url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop") center/cover;
}
.appointment h2{font-family:"Playfair Display",serif;font-size:27px;max-width:570px}
.appointment .actions{display:flex;gap:9px}

/* Projects */
.projects-head{text-align:center}
.projects-head h2{font-size:29px}
.project-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:13px;
  margin-top:30px;
}
.project{
  height:220px;border-radius:12px;overflow:hidden;position:relative
}
.project img{width:100%;height:100%;object-fit:cover;transition:.5s}
.project:hover img{transform:scale(1.07)}
.project:after{
  content:"";position:absolute;inset:0;background:linear-gradient(transparent 55%,rgba(0,0,0,.65));opacity:0;transition:.3s
}
.project:hover:after{opacity:1}

/* Testimonial */
.testimonial{
  background:#f2f3f3;border-radius:30px;padding:52px 60px;
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;
  overflow:hidden
}
.quote-box{background:#fff;border-radius:15px;padding:28px;box-shadow:0 12px 35px rgba(0,0,0,.06)}
.stars{color:var(--red);font-size:11px;margin-bottom:13px}
.quote{font-family:"Playfair Display",serif;font-size:18px;line-height:1.35;color:#222}
.client{display:flex;align-items:center;gap:10px;margin-top:20px}
.avatar{width:35px;height:35px;border-radius:50%;object-fit:cover}
.client strong{font-size:10px;display:block}
.client span{font-size:8px;color:#999}
.testimonial-art{
  min-height:350px;
  background:
    linear-gradient(90deg,transparent,rgba(242,243,243,.15)),
    url("https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=1200&auto=format&fit=crop") center/cover;
  border-radius:20px;
}

/* Contact */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:center}
.contact-photo{
  height:520px;border-radius:18px;object-fit:cover;width:100%;
}
.contact-form h2{font-size:34px;margin-bottom:10px}
.contact-form>p{font-size:11px;margin-bottom:22px}
.big-form{display:grid;grid-template-columns:1fr 1fr;gap:13px}
.big-form .field input,.big-form .field select,.big-form .field textarea{padding:13px;font-size:10px;border-radius:8px}
.big-form .field textarea{height:95px}
.contact-form .btn{margin-top:10px}

/* Steps */
.steps-section{background:#f2f3f3;border-radius:30px;padding:70px 40px;text-align:center}
.steps-section h2{font-size:32px}
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:45px;margin-top:45px}
.step{position:relative}
.step:not(:last-child):after{
  content:"";position:absolute;top:30px;right:-24%;width:48%;border-top:1px dashed #ddd
}
.step-icon{
  width:60px;height:60px;border:1px solid var(--red);color:var(--red);border-radius:50%;
  display:grid;place-items:center;margin:auto auto 18px;font-size:18px;background:#fff
}
.step h3{font-size:13px;margin-bottom:8px}
.step p{font-size:9px;max-width:210px;margin:auto}

/* Final CTA */
.final-cta{
  background:#080808;color:#fff;
  width:min(820px,100%);margin:70px auto 0;
  padding:38px 45px;border-radius:0;
  display:flex;align-items:center;justify-content:space-between;
  position:relative;overflow:hidden
}
.final-cta:after{
  content:"";position:absolute;width:190px;height:190px;border:1px solid rgba(255,255,255,.18);
  border-radius:50%;right:40px;top:-45px;box-shadow:0 0 0 18px rgba(255,255,255,.04),0 0 0 36px rgba(255,255,255,.03)
}
.final-cta h2{font-family:"Playfair Display",serif;font-size:25px}
.final-cta p{color:#aaa;font-size:10px;margin:6px 0 14px}
.final-cta .phone{color:#fff;font-size:11px;font-weight:700;margin-bottom:10px}

/* Footer */
footer{background:var(--cream);margin-top:0;padding:65px 0 20px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:50px}
footer .logo{margin-bottom:16px}
footer p{font-size:9px;max-width:290px}
.footer-title{font-size:11px;font-weight:800;margin-bottom:14px}
.footer-links{display:grid;gap:7px}
.footer-links a{font-size:9px;color:#666}
.footer-links a:hover{color:var(--red)}
.footer-contact{display:grid;gap:8px}
.footer-contact div{font-size:9px;color:#666}
.footer-contact i{width:18px;color:var(--red)}
.footer-bottom{border-top:1px solid #e5e1d8;margin-top:40px;padding-top:15px;display:flex;justify-content:space-between;font-size:8px;color:#999}

/* Floating */
.whatsapp{
  position:fixed;right:20px;bottom:20px;z-index:999;
  width:52px;height:52px;border-radius:50%;
  display:grid;place-items:center;background:#25D366;color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
  font-size:25px;transition:.3s
}
.whatsapp:hover{transform:translateY(-4px) scale(1.05)}
.top{
  position:fixed;right:20px;bottom:82px;z-index:998;
  width:34px;height:34px;border:0;border-radius:8px;background:var(--red);color:#fff;cursor:pointer;
  opacity:0;pointer-events:none;transition:.3s
}
.top.show{opacity:1;pointer-events:auto}

/* Reveal */
.reveal{opacity:0;transform:translateY(28px);transition:.7s ease}
.reveal.visible{opacity:1;transform:none}

/* Responsive */
@media(max-width:900px){
  .nav-links{position:fixed;left:18px;right:18px;top:68px;background:#fff;border-radius:14px;padding:18px;box-shadow:var(--shadow);display:none;flex-direction:column;gap:17px}
  .nav-links.open{display:flex}
  .menu-toggle{display:block}
  header .btn{display:none}
  .hero{min-height:720px;align-items:flex-start;padding-top:80px}
  .hero-copy{width:100%}
  .hero h1{font-size:48px}
  .hero-form{position:relative;right:auto;top:auto;transform:none;width:100%;max-width:470px;margin-top:35px}
  .intro-top,.feature-grid,.about-grid,.testimonial,.contact-grid{grid-template-columns:1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .stats{gap:45px;flex-wrap:wrap}
  .about-images img{height:240px}
  .testimonial-art{min-height:300px}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:600px){
  .container{width:min(100% - 28px,1160px)}
  .section{padding:65px 0}
  h2{font-size:30px}
  .hero h1{font-size:40px}
  .hero{min-height:760px;padding-top:60px}
  .hero-actions{flex-wrap:wrap}
  .hero-form{padding:18px}
  .service-grid,.project-grid,.steps{grid-template-columns:1fr 1fr}
  .service-grid{gap:24px 18px}
  .feature-wrap{padding:18px}
  .feature-main-img{height:310px}
  .feature-points{grid-template-columns:1fr}
  .feature-small{width:100%}
  .appointment{padding:28px 24px;display:block}
  .appointment .actions{margin-top:20px}
  .project{height:170px}
  .testimonial{padding:22px}
  .contact-photo{height:390px}
  .big-form{grid-template-columns:1fr}
  .big-form .full{grid-column:auto}
  .steps-section{padding:45px 18px}
  .steps{gap:25px 12px}
  .step:not(:last-child):after{display:none}
  .final-cta{display:block;padding:32px 25px}
  .final-cta .btn{position:relative;z-index:2}
  .footer-grid{grid-template-columns:1fr 1fr;gap:30px}
  .footer-grid>div:first-child{grid-column:1/-1}
  .footer-bottom{display:block;line-height:2}
}
@media(max-width:420px){
  .service-grid,.project-grid,.steps{grid-template-columns:1fr}
  .project{height:230px}
  .stats{display:grid;grid-template-columns:1fr 1fr}
}

/* ================= PREMIUM PAINT STUDIO EFFECTS ================= */
.brand-logo{
  width:168px;
  height:auto;
  object-fit:contain;
  transition:transform .45s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.logo:hover .brand-logo{
  transform:translateY(-2px) scale(1.035) rotate(-1deg);
  filter:drop-shadow(0 9px 14px rgba(245,47,47,.18));
}

.btn{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.btn:before{
  content:"";
  position:absolute;
  inset:0;
  width:0;
  background:linear-gradient(90deg,#ff3b30,#f52f2f);
  border-radius:inherit;
  transition:width .42s cubic-bezier(.65,0,.35,1);
  z-index:-1;
}
.btn-red:before{background:linear-gradient(90deg,#ff4545,#e51f1f)}
.btn:hover:before{width:100%}
.btn i{transition:transform .3s ease}
.btn:hover i{transform:translateX(4px)}

.hero{
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:5%;
  bottom:-95px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 25%,#18a7ff 0 8%,#08a95b 9% 19%,#ffd21f 20% 31%,#f52f2f 32% 44%,transparent 45%);
  filter:blur(.2px);
  opacity:.22;
  animation:paintFloat 8s ease-in-out infinite;
}
.hero h1{
  position:relative;
  text-shadow:0 8px 30px rgba(0,0,0,.25);
}
.hero h1:after{
  content:"";
  display:block;
  width:105px;
  height:5px;
  margin-top:18px;
  border-radius:20px 5px 20px 5px;
  background:linear-gradient(90deg,#f52f2f 0 28%,#ffcb05 28% 48%,#18a7ff 48% 70%,#10a65a 70%);
  transform-origin:left;
  animation:paintStroke 1.1s .35s both ease-out;
}

.hero-form{
  transition:transform .45s ease, box-shadow .45s ease;
}
.hero-form:hover{
  transform:translateY(-50%) translateY(-5px);
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}
.hero-form:before{
  content:"";
  position:absolute;
  width:12px;height:12px;
  right:25px;top:-5px;
  border-radius:50% 50% 45% 55%;
  background:#f52f2f;
  transform:rotate(15deg);
}

.service-card{
  padding:20px 15px 18px;
  border-radius:18px;
  transition:transform .4s ease, background .4s ease, box-shadow .4s ease;
}
.service-card:before{
  content:"";
  position:absolute;
  left:0;top:0;
  width:0;height:3px;
  border-radius:0 20px 20px 0;
  background:linear-gradient(90deg,#f52f2f,#ff6b55,#159fe8,#0da75c);
  transition:width .45s ease;
}
.service-card:hover{
  transform:translateY(-9px);
  background:#fff;
  box-shadow:0 20px 45px rgba(0,0,0,.09);
}
.service-card:hover:before{width:100%}
.service-icon{
  transition:transform .4s ease, background .35s ease, color .35s ease;
}
.service-card:hover .service-icon{
  transform:rotate(-8deg) scale(1.1);
  background:#f52f2f;
  color:#fff;
}
.service-card h3{transition:color .3s ease}
.service-card:hover h3{color:#f52f2f}

.feature-wrap{
  position:relative;
}
.feature-wrap:before,
.feature-wrap:after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}
.feature-wrap:before{
  width:34px;height:34px;right:18px;top:18px;
  background:#19a8e9;
  opacity:.65;
  animation:dropBounce 4s ease-in-out infinite;
}
.feature-wrap:after{
  width:15px;height:22px;right:8px;top:48px;
  background:#f52f2f;
  border-radius:50% 50% 55% 45%;
  animation:dropBounce 3.2s .5s ease-in-out infinite;
}
.feature-main-img,.about-images img,.contact-photo,.project img{
  transition:transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease;
}
.feature-main-img:hover,.about-images img:hover,.contact-photo:hover{
  transform:scale(1.025);
  filter:saturate(1.08);
}

.point{
  transition:transform .3s ease;
}
.point:hover{transform:translateX(5px)}
.point i{transition:transform .3s ease}
.point:hover i{transform:scale(1.18) rotate(-8deg)}

.project{
  box-shadow:0 8px 20px rgba(0,0,0,.04);
  transition:transform .45s ease, box-shadow .45s ease;
}
.project:hover{
  transform:translateY(-7px) rotate(.3deg);
  box-shadow:0 20px 40px rgba(0,0,0,.14);
}
.project:before{
  content:"VIEW PROJECT  →";
  position:absolute;
  left:15px;bottom:14px;
  z-index:3;
  color:#fff;
  font-size:9px;
  letter-spacing:.12em;
  font-weight:800;
  opacity:0;
  transform:translateY(8px);
  transition:.35s ease;
}
.project:hover:before{opacity:1;transform:none}

.quote-box{
  transition:transform .4s ease, box-shadow .4s ease;
}
.quote-box:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(0,0,0,.11);
}
.stars{
  letter-spacing:3px;
  animation:starPulse 2.5s ease-in-out infinite;
}

.step{
  transition:transform .35s ease;
}
.step:hover{transform:translateY(-7px)}
.step-icon{
  transition:transform .4s ease, background .35s ease, color .35s ease;
}
.step:hover .step-icon{
  background:#f52f2f;
  color:#fff;
  transform:scale(1.1) rotate(5deg);
}

.final-cta{
  box-shadow:0 25px 70px rgba(0,0,0,.16);
}
.final-cta:before{
  content:"";
  position:absolute;
  width:110px;height:8px;
  left:20px;top:8px;
  border-radius:50%;
  background:linear-gradient(90deg,#f52f2f,#ff6b55,#19a8e9,#12a25b);
  filter:blur(.2px);
  transform:rotate(-2deg);
  opacity:.9;
}

.whatsapp{
  animation:whatsappPulse 2.2s infinite;
}
.whatsapp:before{
  content:"";
  position:absolute;
  inset:-6px;
  border:2px solid rgba(37,211,102,.25);
  border-radius:50%;
  animation:ring 2.2s infinite;
}
.whatsapp i{transition:transform .3s ease}
.whatsapp:hover i{transform:rotate(-12deg) scale(1.12)}

.field input:focus,.field select:focus,.field textarea:focus{
  border-color:#f52f2f;
  box-shadow:0 0 0 3px rgba(245,47,47,.08);
  transform:translateY(-1px);
  transition:.25s ease;
}

@keyframes paintStroke{
  from{transform:scaleX(0);opacity:0}
  to{transform:scaleX(1);opacity:1}
}
@keyframes paintFloat{
  0%,100%{transform:translate(0,0) rotate(0)}
  50%{transform:translate(-18px,-22px) rotate(8deg)}
}
@keyframes dropBounce{
  0%,100%{transform:translateY(0) rotate(0)}
  50%{transform:translateY(12px) rotate(8deg)}
}
@keyframes starPulse{
  0%,100%{opacity:.7;transform:scale(1)}
  50%{opacity:1;transform:scale(1.04)}
}
@keyframes whatsappPulse{
  0%,100%{box-shadow:0 10px 30px rgba(0,0,0,.2)}
  50%{box-shadow:0 12px 35px rgba(37,211,102,.34)}
}
@keyframes ring{
  0%{transform:scale(.85);opacity:.8}
  80%,100%{transform:scale(1.35);opacity:0}
}

/* Paint splatter cursor on larger screens */
@media(min-width:901px){
  body{cursor:default}
  .service-card,.project,.btn,.whatsapp{cursor:pointer}
}

/* Better readability for all descriptive copy */
.hero p,
.intro-top > p,
.feature-copy > p,
.about-grid p,
.appointment p,
.testimonial p,
.contact-form > p,
.steps-section > p,
.step p,
footer p{
  font-size:15px;
}
.service-card p,.point p,.check-item p,.footer-links a,.footer-contact div{
  font-size:11px;
}


/* ================= COUNTER 2.0 / PREMIUM UI ================= */
.stats-premium{
  position:relative;
  padding:30px 0 100px;
}
.stats-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:28px;
}
.stats-heading h2{
  font-size:34px;
  max-width:420px;
}
.stats-heading h2 span{
  background:linear-gradient(90deg,#f52f2f,#ff624f,#ff6b55);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stats-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat-card{
  position:relative;
  min-height:190px;
  padding:28px 22px 23px;
  border-radius:22px;
  background:#fff;
  border:1px solid #ededed;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.045);
  transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .3s ease;
}
.stat-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(245,47,47,.08),transparent 45%,rgba(25,168,233,.06));
  opacity:0;
  transition:opacity .4s ease;
}
.stat-card:hover{
  transform:translateY(-10px);
  border-color:rgba(245,47,47,.28);
  box-shadow:0 25px 55px rgba(0,0,0,.11);
}
.stat-card:hover:before{opacity:1}
.stat-icon{
  position:relative;
  z-index:2;
  width:42px;height:42px;
  border-radius:13px;
  display:grid;place-items:center;
  background:#fff1f1;
  color:#f52f2f;
  font-size:16px;
  margin-bottom:18px;
  transition:transform .4s ease,background .35s ease,color .35s ease;
}
.stat-card:hover .stat-icon{
  background:#f52f2f;
  color:#fff;
  transform:rotate(-8deg) scale(1.08);
}
.stat-card strong{
  position:relative;
  z-index:2;
  font-size:38px;
  letter-spacing:-.055em;
  line-height:1;
}
.stat-card > span{
  position:relative;
  z-index:2;
  font-size:20px;
  color:#f52f2f;
  font-weight:800;
  vertical-align:top;
  margin-left:2px;
}
.stat-card small{
  display:block;
  position:relative;
  z-index:2;
  color:#777;
  font-size:10px;
  margin-top:7px;
  font-weight:600;
}
.stat-line{
  position:absolute;
  left:22px;bottom:18px;
  width:52px;height:3px;border-radius:99px;
  background:linear-gradient(90deg,#f52f2f,#ff6b55,#19a8e9);
  transition:width .45s ease;
}
.stat-card:hover .stat-line{width:95px}
.stat-orbit{
  position:absolute;
  width:105px;height:105px;
  border:1px solid rgba(245,47,47,.08);
  border-radius:50%;
  right:-48px;top:-48px;
  transition:transform .8s ease;
}
.stat-orbit:after{
  content:"";
  position:absolute;
  width:7px;height:7px;border-radius:50%;
  background:#f52f2f;
  top:18px;left:13px;
  box-shadow:34px 62px 0 #ff6b55,68px 18px 0 #19a8e9;
}
.stat-card:hover .stat-orbit{transform:rotate(150deg) scale(1.12)}

/* ================= MODERN RED & SLATE BRAND FOOTER ================= */
html {
  background-color: #080c14;
}

.top, #topBtn, .topBtn {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   OCEANSIDE-STYLE 4-COLUMN NAVY FOOTER WITH MAP WIDGET
   ========================================================================== */
.site-footer.oceanside-style-footer {
  position: relative;
  background: #0b1728;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-wrap {
  padding: 68px 0 52px;
}

.oceanside-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1.05fr 1.35fr;
  gap: 48px;
  align-items: start;
}

/* Column 1: Brand Info */
.os-brand-col {
  display: flex;
  flex-direction: column;
}

.os-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.os-footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.os-brand-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 290px;
}

.os-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.os-social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.os-social-links a:hover {
  background: #f52f2f;
  border-color: #f52f2f;
  transform: translateY(-2px);
  color: #ffffff !important;
}

/* Column Headings (Serif Typography matching design) */
.os-footer-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}

/* Nav Link Lists */
.os-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.os-footer-menu li {
  margin: 0;
  padding: 0;
}

.os-footer-menu li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14.5px;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.22s ease;
}

.os-footer-menu li a i.list-icon {
  font-size: 11px;
  color: #f52f2f;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 0.22s ease, color 0.22s ease;
}

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

.os-footer-menu li a:hover i.list-icon {
  color: #ffffff;
  transform: translateX(2px);
}

/* Column 4: Get In Touch & Map */
.os-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.os-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.os-contact-item i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  width: 16px;
  text-align: center;
}

.os-contact-item:hover {
  color: #ffffff;
}

.os-contact-item:hover i {
  color: #f52f2f;
}

/* Google Map Card */
.os-map-card {
  width: 100%;
  max-width: 320px;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  background: #142033;
}

.os-map-link-overlay {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  text-decoration: none;
}

.os-maps-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0f172a;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

.os-maps-badge i {
  font-size: 10px;
  color: #0f172a;
}

.os-map-link-overlay:hover .os-maps-badge {
  background: #f8fafc;
  transform: translateY(-1px);
}

.os-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer Bottom Strip */
.os-footer-bottom {
  background: #07101d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
}

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

.os-copyright {
  color: rgba(255, 255, 255, 0.65);
}

.os-credits {
  color: rgba(255, 255, 255, 0.65);
}

.os-credits a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .oceanside-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .footer-main-wrap {
    padding: 48px 0 35px;
  }
  .oceanside-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .os-brand-desc {
    max-width: 100%;
  }
  .os-map-card {
    max-width: 100%;
    height: 130px;
  }
  .os-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media(max-width:420px){
  .stats-cards{grid-template-columns:1fr}
}


/* Header: stronger premium navigation */
.nav-links a{
  font-weight:800;
  font-size:12px;
  letter-spacing:-.01em;
}
.nav-links a.active{color:#d92020}


/* Large, clean 15px form placeholders */
.hero-form input::placeholder,
.hero-form textarea::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder{
  font-size:15px;
  color:#9a9a9a;
  opacity:1;
}
.hero-form input,
.hero-form textarea,
.contact-form input,
.contact-form textarea,
.contact-form select{
  font-size:15px;
}


/* Full-width Let's Paint CTA */
.final-cta{
  width:100%;
  max-width:none;
  margin:70px 0 0;
  min-height:250px;
  padding:48px 7%;
  border-radius:28px;
  background:
    radial-gradient(circle at 85% 35%,rgba(245,47,47,.26),transparent 28%),
    linear-gradient(110deg,#070707 0%,#111 58%,#210909 100%);
}
.final-cta h2{
  font-family:"DM Sans",Arial,sans-serif;
  font-weight:800;
  font-size:42px;
  letter-spacing:-.045em;
}
.final-cta p{font-size:15px}
.final-cta .phone{font-size:14px}
.final-cta:after{
  right:7%;
  width:220px;height:220px;
  border-color:rgba(245,47,47,.30);
  box-shadow:0 0 0 20px rgba(245,47,47,.05),0 0 0 40px rgba(245,47,47,.025);
}
.final-cta:before{
  left:7%;top:18px;
  width:170px;
  background:linear-gradient(90deg,#f52f2f,#ff624f,#d51d1d);
}


/* ================= NEW HOW IT WORKS EXPERIENCE ================= */
.how-section{position:relative}
.how-card{
  position:relative;
  overflow:hidden;
  padding:58px 52px 48px;
  border-radius:30px;
  background:
    radial-gradient(circle at 95% 5%,rgba(245,47,47,.12),transparent 24%),
    linear-gradient(135deg,#f7f7f7,#fff);
  border:1px solid #ededed;
  box-shadow:0 25px 70px rgba(0,0,0,.07);
}
.how-card:before{
  content:"";
  position:absolute;
  width:260px;height:260px;
  right:-110px;bottom:-120px;
  border-radius:50%;
  background:rgba(245,47,47,.055);
}
.how-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:end;
  gap:70px;
}
.how-head h2{
  font-size:39px;
  margin-top:4px;
  letter-spacing:-.04em;
}
.how-head h2 span{
  color:#d92020;
}
.how-head>p{
  font-size:15px;
  max-width:480px;
  line-height:1.7;
}
.how-timeline{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:55px;
  position:relative;
}
.how-timeline:before{
  content:"";
  position:absolute;
  top:34px;
  left:12%;
  right:12%;
  height:2px;
  background:linear-gradient(90deg,#f52f2f,#ff624f,#b91616);
  opacity:.25;
}
.how-step{
  position:relative;
  z-index:2;
  padding:0 28px;
  text-align:center;
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}
.how-step:hover{transform:translateY(-10px)}
.step-number{
  position:absolute;
  top:-22px;
  left:50%;
  transform:translateX(-50%);
  font-size:9px;
  font-weight:900;
  letter-spacing:.15em;
  color:#d92020;
  opacity:0;
  transition:.35s ease;
}
.how-step:hover .step-number{
  opacity:1;
  top:-30px;
}
.how-icon{
  position:relative;
  width:70px;height:70px;
  margin:auto;
  border-radius:50%;
  background:#fff;
  border:2px solid #f52f2f;
  color:#d92020;
  display:grid;
  place-items:center;
  font-size:21px;
  box-shadow:0 12px 30px rgba(245,47,47,.12);
  transition:.45s cubic-bezier(.2,.8,.2,1);
}
.how-icon:before{
  content:"";
  position:absolute;
  inset:-8px;
  border:1px dashed rgba(245,47,47,.28);
  border-radius:50%;
  animation:howOrbit 7s linear infinite;
}
.how-step:hover .how-icon{
  background:#d92020;
  color:#fff;
  transform:scale(1.12) rotate(-8deg);
  box-shadow:0 18px 40px rgba(245,47,47,.28);
}
.how-step:hover .how-icon:before{
  animation-duration:2s;
}
.step-copy{margin-top:25px}
.step-copy h3{
  font-size:17px;
  margin-bottom:8px;
}
.step-copy p{
  font-size:12px;
  max-width:240px;
  margin:auto;
}
.step-arrow{
  width:32px;height:32px;
  margin:18px auto 0;
  border-radius:50%;
  background:#f9e7e7;
  color:#d92020;
  display:grid;
  place-items:center;
  font-size:11px;
  transition:.35s ease;
}
.how-step:hover .step-arrow{
  background:#d92020;
  color:#fff;
  transform:translateX(5px);
}
.step-arrow.done{background:#d92020;color:#fff}
.how-paint-line{
  display:flex;
  align-items:center;
  gap:5px;
  margin-top:42px;
  transform:skewX(-18deg);
}
.how-paint-line span{
  display:block;
  height:5px;
  border-radius:99px;
  background:#d92020;
  animation:paintWave 2.4s ease-in-out infinite;
}
.how-paint-line span:nth-child(1){width:9%;animation-delay:0s}
.how-paint-line span:nth-child(2){width:22%;animation-delay:.12s}
.how-paint-line span:nth-child(3){width:35%;animation-delay:.24s}
.how-paint-line span:nth-child(4){width:18%;animation-delay:.36s}
.how-paint-line span:nth-child(5){width:9%;animation-delay:.48s}

@keyframes howOrbit{to{transform:rotate(360deg)}}
@keyframes paintWave{
  0%,100%{transform:scaleY(1);opacity:.7}
  50%{transform:scaleY(1.8);opacity:1}
}

@media(max-width:900px){
  .how-head{grid-template-columns:1fr;gap:18px}
  .how-timeline{grid-template-columns:1fr;gap:45px}
  .how-timeline:before{left:50%;right:auto;top:35px;bottom:35px;width:2px;height:auto;background:linear-gradient(#f52f2f,#b91616)}
  .how-step{padding:0 15px}
  .how-head h2{font-size:32px}
  .final-cta h2{font-size:34px}
}
@media(max-width:600px){
  .how-card{padding:40px 20px 30px}
  .how-head h2{font-size:29px}
  .how-head>p{font-size:14px}
  .final-cta{min-height:0;padding:38px 25px}
  .final-cta h2{font-size:30px}
}


/* ================= DARK PREMIUM FOOTER ================= */
.premium-footer{
  background:
    radial-gradient(circle at 90% 0%,rgba(245,47,47,.22),transparent 28%),
    radial-gradient(circle at 5% 100%,rgba(245,47,47,.12),transparent 25%),
    linear-gradient(145deg,#070707 0%,#111 48%,#080808 100%);
  color:#fff;
}
.premium-footer:before{
  background:linear-gradient(115deg,transparent 35%,rgba(245,47,47,.13) 42%,transparent 49%);
}
.footer-paint-splash{opacity:.14}
.footer-socials a:hover{
  background:#f52f2f;
  color:#fff;
}
.footer-column>a:hover{color:#ff6b55}
.footer-contact-modern i{color:#ff6b55}
.footer-cta{
  background:linear-gradient(100deg,rgba(245,47,47,.13),rgba(255,255,255,.025));
  border-color:rgba(245,47,47,.26);
}
.footer-cta span{color:#ff6b55}
.btn-light{
  background:linear-gradient(135deg,#f52f2f,#b91616);
  color:#fff;
}
.btn-light:before{background:linear-gradient(135deg,#ff6b55,#f52f2f)}
.btn-light:hover{color:#fff}
.footer-bottom-modern a:hover{color:#ff6b55}


/* Final colour cleanup: painting brand red, no orange UI */
.eyebrow{color:#d92020}
.service-icon,.how-icon{border-color:#f52f2f}
.service-icon,.how-icon,.stat-icon{color:#d92020}
.btn-red{background:linear-gradient(135deg,#f52f2f,#b91616)}
.stats-heading h2 span{background:linear-gradient(90deg,#d92020,#f05245);-webkit-background-clip:text;background-clip:text}
.stat-line{background:linear-gradient(90deg,#f52f2f,#b91616)}
.stat-card > span{color:#d92020}
::-webkit-scrollbar-thumb{background:linear-gradient(#f52f2f,#b91616)}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ===== FINAL SMOOTH PAINT BRAND POLISH ===== */
:root{
  --brand-red:#FE3A37;
  --brand-dark:#AE0001;
  --brand-blue:#071A33;
  --brand-blue-2:#0B2748;
}

/* Track-record heading: LEFT aligned */
.stats-premium .stats-heading{
  display:block;
  text-align:left;
  max-width:650px;
  margin:0 0 34px 0;
}
.stats-premium .stats-heading .eyebrow{
  text-align:left;
  color:var(--brand-red);
}
.stats-premium .stats-heading h2{
  text-align:left;
  font-weight:800;
  font-size:42px;
  letter-spacing:-.045em;
  line-height:1.02;
}
.stats-premium .stats-heading h2 span{
  display:inline-block;
  color:var(--brand-red);
  background:none;
  -webkit-text-fill-color:initial;
}

/* Brand red gradients throughout the UI */
.btn-red,
.btn-light{
  background:linear-gradient(135deg,var(--brand-red) 0%,var(--brand-dark) 100%);
}
.btn-red:hover,
.btn-light:hover{
  box-shadow:0 14px 35px rgba(174,0,1,.28);
}
.service-icon,
.how-icon{
  color:var(--brand-red);
  border-color:var(--brand-red);
}
.service-card:hover .service-icon,
.how-step:hover .how-icon{
  background:linear-gradient(135deg,var(--brand-red),var(--brand-dark));
}
.stat-card > span,
.stat-line,
.how-paint-line span{
  color:var(--brand-red);
  background:linear-gradient(90deg,var(--brand-red),var(--brand-dark));
}
.eyebrow{
  color:var(--brand-red);
}

/* ===== DARK BLUE FOOTER ===== */
.premium-footer{
  background:
    radial-gradient(circle at 90% 5%,rgba(254,58,55,.20),transparent 25%),
    radial-gradient(circle at 8% 90%,rgba(18,67,112,.30),transparent 30%),
    linear-gradient(145deg,#04101F 0%,#071A33 48%,#0B2748 100%);
  color:#fff;
}
.premium-footer:before{
  background:linear-gradient(
    115deg,
    transparent 35%,
    rgba(254,58,55,.13) 42%,
    transparent 49%
  );
}
.premium-footer .footer-paint-splash{
  opacity:.12;
}
.premium-footer .footer-brand .brand-logo{
  background:#fff;
}
.premium-footer .footer-socials a{
  border-color:rgba(255,255,255,.22);
}
.premium-footer .footer-socials a:hover{
  background:var(--brand-red);
  color:#fff;
  border-color:var(--brand-red);
}
.premium-footer .footer-column>a:hover{
  color:var(--brand-red);
}
.premium-footer .footer-contact-modern i{
  color:var(--brand-red);
}
.premium-footer .footer-cta{
  background:
    linear-gradient(105deg,rgba(254,58,55,.16),rgba(255,255,255,.025));
  border:1px solid rgba(254,58,55,.30);
}
.premium-footer .footer-cta span{
  color:var(--brand-red);
}
.premium-footer .btn-light{
  color:#fff;
}
.premium-footer .footer-bottom-modern a:hover{
  color:var(--brand-red);
}

/* Footer heading: bold + creative red underline */
.premium-footer .footer-column h4{
  position:relative;
  display:inline-block;
  width:max-content;
  font-weight:900;
  font-size:13px;
  letter-spacing:.12em;
  margin-bottom:15px;
}
.premium-footer .footer-column h4:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:32px;
  height:3px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--brand-red),var(--brand-dark));
  transition:width .4s ease;
}
.premium-footer .footer-column:hover h4:after{
  width:68px;
}

/* Main footer CTA heading */
.premium-footer .footer-cta h3{
  font-family:"DM Sans",Arial,sans-serif;
  font-weight:900;
  font-size:31px;
  letter-spacing:-.035em;
  line-height:1.05;
}

/* Footer brand description readability */
.premium-footer .footer-brand p{
  color:rgba(255,255,255,.72);
  font-size:13px;
}

/* Floating WhatsApp follows brand red for the surrounding UI */
.top{
  background:linear-gradient(135deg,var(--brand-red),var(--brand-dark));
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* =========================================================
   FINAL UI PASS
   Footer: #11001B
   Counter: cleaner, no visible "+" / "%" badge blocks
   ========================================================= */

:root{
  --brand-red:#FE3A37;
  --brand-dark:#AE0001;
  --footer-purple:#11001B;
}

/* Counter section: clean white canvas, no extra background panel */
.stats-premium{
  background:transparent !important;
  padding-top:18px;
  padding-bottom:90px;
}

/* Left aligned heading */
.stats-premium .stats-heading{
  text-align:left;
  margin-left:0;
}
.stats-premium .stats-heading h2{
  font-weight:850;
}

/* Counter cards: more premium / less boxy */
.stats-cards{
  gap:18px;
}
.stat-card{
  min-height:205px;
  border:1px solid #ececec;
  border-radius:24px;
  background:
    linear-gradient(145deg,#ffffff 0%,#fffafa 100%);
  box-shadow:0 10px 35px rgba(17,0,27,.055);
}
.stat-card:hover{
  transform:translateY(-12px);
  border-color:rgba(254,58,55,.30);
  box-shadow:0 28px 65px rgba(17,0,27,.12);
}

/* Number and suffix sit together naturally */
.stat-card strong{
  font-size:42px;
  font-weight:850;
  letter-spacing:-.065em;
}
.stat-card > span{
  display:inline;
  margin-left:3px;
  font-size:25px;
  font-weight:850;
  color:var(--brand-red);
  background:none !important;
  -webkit-text-fill-color:var(--brand-red) !important;
}
.stat-card small{
  font-size:11px;
  font-weight:650;
  color:#777;
}

/* Make icon and orbit subtle */
.stat-icon{
  background:rgba(254,58,55,.075);
  color:var(--brand-red);
}
.stat-card:hover .stat-icon{
  background:linear-gradient(135deg,var(--brand-red),var(--brand-dark));
}
.stat-orbit{
  border-color:rgba(254,58,55,.09);
}

/* =========================================================
   DARK PURPLE FOOTER
   ========================================================= */
.premium-footer{
  background:
    radial-gradient(circle at 88% 0%,rgba(254,58,55,.17),transparent 25%),
    radial-gradient(circle at 4% 95%,rgba(75,32,92,.26),transparent 28%),
    linear-gradient(145deg,#0B0012 0%,#11001B 48%,#170021 100%) !important;
}
.premium-footer:before{
  background:linear-gradient(
    115deg,
    transparent 34%,
    rgba(254,58,55,.12) 42%,
    transparent 49%
  );
}
.premium-footer .footer-cta{
  background:
    linear-gradient(105deg,rgba(254,58,55,.13),rgba(255,255,255,.025));
  border-color:rgba(254,58,55,.28);
}
.premium-footer .footer-column h4{
  font-weight:900;
  font-size:13px;
  letter-spacing:.13em;
}
.premium-footer .footer-cta h3{
  font-size:32px;
  font-weight:900;
}
.premium-footer .footer-bottom-modern{
  border-color:rgba(255,255,255,.13);
}

/* Paint-inspired footer decorations */
.premium-footer .splash-one{
  width:220px;
  height:220px;
  right:-85px;
  top:170px;
  background:
    radial-gradient(circle at 35% 30%,var(--brand-red) 0 9%,transparent 10%),
    radial-gradient(circle at 58% 54%,#7d274c 0 18%,transparent 19%),
    radial-gradient(circle at 72% 25%,var(--brand-red) 0 5%,transparent 6%);
  opacity:.18;
}
.premium-footer .splash-two{
  width:120px;
  height:120px;
  background:var(--brand-red);
  opacity:.035;
}

/* Stronger footer link hover */
.premium-footer .footer-column>a{
  position:relative;
}
.premium-footer .footer-column>a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0;
  height:1px;
  background:var(--brand-red);
  transition:width .3s ease;
}
.premium-footer .footer-column>a:hover:after{
  width:100%;
}

/* Better mobile counter spacing */
@media(max-width:600px){
  .stats-premium{
    padding-top:5px;
    padding-bottom:65px;
  }
  .stats-premium .stats-heading h2{
    font-size:31px;
  }
  .stat-card{
    min-height:180px;
  }
  .stat-card strong{
    font-size:36px;
  }
  .final-cta h2{
    font-size:30px;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Final navigation typography */
.nav-links a{
  font-size:18px !important;
  font-weight:600 !important;
  letter-spacing:-.01em;
}
@media(max-width:900px){
  .nav-links a{
    font-size:18px !important;
    font-weight:600 !important;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ===== SPACING & BANNER POLISH ===== */

/* Reduce vertical gaps between main sections */
.section{
  padding-top:58px;
  padding-bottom:58px;
}
.intro{
  padding-bottom:20px;
}
.stats-premium{
  padding-top:8px;
  padding-bottom:58px;
}
.about-grid{
  gap:50px;
}
.appointment{
  margin-top:5px;
  margin-bottom:45px;
}

/* Banner: give the left content more breathing room */
.appointment{
  padding-left:72px;
  padding-right:55px;
  min-height:145px;
}
.appointment > div:first-child{
  padding-left:12px;
}
.appointment h2{
  line-height:1.08;
}

/* Keep the banner compact on smaller screens */
@media(max-width:900px){
  .section{
    padding-top:48px;
    padding-bottom:48px;
  }
  .appointment{
    padding:28px 38px;
  }
  .appointment > div:first-child{
    padding-left:0;
  }
}
@media(max-width:600px){
  .section{
    padding-top:40px;
    padding-bottom:40px;
  }
  .stats-premium{
    padding-bottom:45px;
  }
  .appointment{
    padding:25px 24px;
    margin-bottom:35px;
  }
  .appointment > div:first-child{
    padding-left:0;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* =========================================================
   SMOOTH PAINT — FINAL ALIGNMENT / RESPONSIVE FIX
   Replaces the earlier overlapping layout rules without
   changing the site's content, colours or branding.
   ========================================================= */

:root{
  --brand-red:#FE3A37;
  --brand-dark:#AE0001;
  --brand-blue:#071A33;
  --page-max:1180px;
  --page-gutter:32px;
}

html{overflow-x:clip}
body{overflow-x:clip}
img{height:auto}

/* One consistent content grid */
.container{
  width:min(var(--page-max),calc(100% - (var(--page-gutter) * 2)));
  margin-left:auto;
  margin-right:auto;
}

/* ---------- Header ---------- */
header{
  height:82px;
}
.nav{
  height:82px;
  gap:28px;
}
.nav .logo{
  flex:0 0 auto;
  min-width:0;
}
.nav .brand-logo{
  width:142px;
  max-width:142px;
  height:auto;
}
.nav-links{
  flex:1 1 auto;
  justify-content:center;
  gap:34px;
}
.nav-links a{
  font-size:15px !important;
  font-weight:600 !important;
  white-space:nowrap;
}
.nav > .btn{
  flex:0 0 auto;
  white-space:nowrap;
}

/* ---------- Hero ---------- */
.hero{
  min-height:620px;
}
.hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,360px);
  align-items:center;
  gap:64px;
}
.hero-copy{
  width:auto;
  max-width:650px;
  min-width:0;
}
.hero h1{
  font-size:62px;
  max-width:650px;
}
.hero p{
  max-width:570px;
}
.hero-form{
  position:relative;
  inset:auto;
  top:auto;
  right:auto;
  transform:none;
  width:100%;
  max-width:360px;
  justify-self:end;
  margin:0;
  padding:25px;
}
.hero-form:hover{
  transform:translateY(-5px);
}

/* ---------- Intro / Services ---------- */
.section{
  padding:72px 0;
}
.intro{
  padding-bottom:30px;
}
.intro-top{
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:90px;
  align-items:start;
}
.intro-top > p{
  max-width:570px;
  margin:4px 0 0 auto;
}
.service-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin-top:46px;
}
.service-card{
  min-height:250px;
  padding:22px 18px 18px;
  display:flex;
  flex-direction:column;
}
.service-card .service-icon{flex:0 0 auto}
.service-card h3{min-height:32px}
.service-card p{max-width:240px}
.service-card .arrow{margin-top:auto;padding-top:15px}

/* ---------- Counters ---------- */
.stats-premium{
  width:min(var(--page-max),calc(100% - (var(--page-gutter) * 2)));
  padding:20px 0 72px;
}
.stats-heading{
  margin-bottom:30px !important;
  max-width:620px !important;
}
.stats-cards{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.stat-card{
  min-height:190px;
}

/* ---------- Feature ---------- */
.feature-wrap{
  padding:34px;
}
.feature-grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:46px;
}
.feature-main-img{
  height:390px;
}
.feature-copy{
  min-width:0;
}
.feature-small{
  width:100%;
  height:145px;
  margin-top:22px;
}

/* ---------- About ---------- */
.about-grid{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:70px;
}
.about-images{
  min-width:0;
}
.about-images img{
  height:220px;
}

/* ---------- Appointment banner ---------- */
.appointment{
  width:min(var(--page-max),calc(100% - (var(--page-gutter) * 2)));
  margin:8px auto 55px;
  min-height:150px;
  padding:30px 48px;
  gap:35px;
}
.appointment > div:first-child{
  padding-left:0;
  min-width:0;
}
.appointment h2{
  font-size:27px;
}
.appointment .actions{
  flex:0 0 auto;
}

/* ---------- Projects ---------- */
.project-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.project{
  height:235px;
  min-width:0;
}

/* ---------- Testimonial ---------- */
.testimonial{
  grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
  gap:46px;
  padding:46px 52px;
}
.testimonial-art{
  min-height:320px;
}

/* ---------- Contact ---------- */
.contact-grid{
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:78px;
}
.contact-photo{
  height:500px;
}
.contact-form{
  min-width:0;
}
.big-form{
  gap:12px;
}
.big-form .field{
  min-width:0;
}

/* ---------- How it works ---------- */
.how-section{
  padding-top:18px !important;
}
.how-card{
  padding:56px 50px 44px;
}
.how-head{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:70px;
}
.how-head > p{
  margin:0;
}
.how-step{
  min-width:0;
}

/* ---------- Final CTA ---------- */
.final-cta{
  width:100%;
  max-width:none;
  min-height:220px;
  margin:55px 0 0;
  padding:42px 6%;
  border-radius:28px;
  gap:35px;
}
.final-cta > div{
  min-width:0;
}
.final-cta .btn{
  flex:0 0 auto;
}

/* ---------- Footer ---------- */
.premium-footer{
  margin-top:0;
}
.footer-top{
  grid-template-columns:minmax(0,1.4fr) minmax(130px,.8fr) minmax(150px,.9fr) minmax(190px,1.1fr);
  gap:46px;
}
.footer-brand,
.footer-column{
  min-width:0;
}
.footer-column > a{
  white-space:normal;
}
.footer-contact-modern span{
  overflow-wrap:anywhere;
}
.footer-cta{
  gap:35px;
}
.footer-bottom-modern{
  align-items:center;
}

/* ---------- Accessibility / stability ---------- */
a,button,input,select,textarea{ -webkit-tap-highlight-color:transparent; }
button:focus-visible,a:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--brand-red);
  outline-offset:3px;
}
.reveal{
  will-change:transform,opacity;
}

/* ---------- Tablet ---------- */
@media (max-width:1200px){
  :root{--page-gutter:26px}

  .nav-links{gap:24px}
  .nav-links a{font-size:14px !important}

  .hero-inner{
    grid-template-columns:minmax(0,1fr) minmax(300px,340px);
    gap:45px;
  }
  .hero h1{font-size:56px}

  .intro-top{gap:55px}
  .about-grid{gap:50px}
  .contact-grid{gap:55px}

  .footer-top{
    grid-template-columns:1.35fr .85fr .95fr 1.1fr;
    gap:30px;
  }
}

/* ---------- Mobile / Tablet ---------- */
@media (max-width:900px){
  :root{--page-gutter:22px}

  header,.nav{height:74px}
  .nav{gap:16px}
  .nav .brand-logo{
    width:124px;
    max-width:124px;
  }

  .nav-links{
    position:fixed;
    left:var(--page-gutter);
    right:var(--page-gutter);
    top:82px;
    width:auto;
    height:auto;
    max-height:calc(100vh - 100px);
    overflow:auto;
    flex:none;
    display:none;
    align-items:stretch;
    justify-content:flex-start;
    gap:0;
    padding:10px;
    border:1px solid #ececec;
    border-radius:18px;
    box-shadow:0 20px 55px rgba(0,0,0,.14);
  }
  .nav-links.open{display:flex}
  .nav-links a{
    width:100%;
    padding:13px 14px;
    font-size:17px !important;
    font-weight:600 !important;
    border-radius:10px;
  }
  .nav-links a:hover,
  .nav-links a.active{
    background:#fff4f4;
  }
  .nav-links a:after{display:none}
  header .btn{display:none}
  .menu-toggle{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    flex:0 0 42px;
    border:1px solid #e9e9e9;
    border-radius:12px;
    background:#fff;
  }

  .hero{
    min-height:0;
    padding:78px 0 65px;
  }
  .hero-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:40px;
  }
  .hero-copy{
    width:100%;
    max-width:680px;
  }
  .hero h1{
    font-size:48px;
    max-width:650px;
  }
  .hero-form{
    width:100%;
    max-width:560px;
    justify-self:start;
    transform:none !important;
  }
  .hero-form:hover{
    transform:translateY(-4px) !important;
  }

  .section{padding:55px 0}
  .intro-top,
  .feature-grid,
  .about-grid,
  .testimonial,
  .contact-grid,
  .how-head{
    grid-template-columns:1fr;
  }
  .intro-top{gap:20px}
  .intro-top > p{margin:0;max-width:680px}
  .service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stats-premium{
    width:min(100% - (var(--page-gutter) * 2),var(--page-max));
    padding-top:5px;
    padding-bottom:55px;
  }
  .stats-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .feature-wrap{padding:24px}
  .feature-main-img{height:340px}
  .about-images img{height:260px}
  .appointment{
    width:min(100% - (var(--page-gutter) * 2),var(--page-max));
    padding:28px 30px;
    display:flex;
    align-items:center;
  }
  .project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .testimonial{padding:32px}
  .testimonial-art{min-height:300px}
  .contact-photo{height:420px}
  .how-card{padding:44px 28px 34px}
  .how-timeline{
    grid-template-columns:1fr;
    gap:48px;
  }
  .how-timeline:before{
    left:50%;
    right:auto;
    top:35px;
    bottom:35px;
    width:2px;
    height:auto;
  }
  .how-step{padding:0 12px}
  .final-cta{
    min-height:0;
    padding:38px 30px;
    flex-direction:column;
    align-items:flex-start;
  }
  .final-cta .btn{align-self:flex-start}
  .footer-top{
    grid-template-columns:1fr 1fr;
    gap:38px 28px;
  }
  .footer-brand{grid-column:1/-1}
  .footer-cta{
    align-items:flex-start;
  }
}

/* ---------- Small phones ---------- */
@media (max-width:600px){
  :root{--page-gutter:16px}

  .nav .brand-logo{width:112px;max-width:112px}
  .menu-toggle{width:40px;height:40px;flex-basis:40px}

  .hero{
    padding:55px 0 48px;
  }
  .hero-inner{gap:32px}
  .hero h1{
    font-size:39px;
    line-height:1.02;
  }
  .hero p{font-size:14px}
  .hero-actions{
    gap:8px;
  }
  .hero-actions .btn{
    flex:1 1 auto;
    min-width:145px;
  }
  .hero-form{
    padding:20px;
    border-radius:18px;
  }
  .hero-form h3{font-size:21px}
  .form-grid{gap:10px}
  .field input,.field select,.field textarea{
    min-height:44px;
  }
  .field textarea{min-height:90px}

  .section{padding:44px 0}
  h2{font-size:30px}
  .intro h2{font-size:31px}
  .service-grid{
    grid-template-columns:1fr;
    gap:14px;
    margin-top:32px;
  }
  .service-card{
    min-height:0;
    padding:20px;
  }
  .service-card h3{min-height:0}
  .service-card p{max-width:none}
  .stats-cards{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .stat-card{
    min-height:165px;
    padding:20px 15px;
  }
  .stat-card strong{font-size:34px}
  .stat-card > span{font-size:21px}
  .stat-card small{font-size:10px}
  .feature-wrap{padding:16px;border-radius:22px}
  .feature-main-img{height:270px}
  .feature-points{grid-template-columns:1fr}
  .feature-small{height:190px}
  .about-images{gap:12px}
  .about-images img{height:210px}
  .phone-strip{
    margin-top:-30px;
    margin-left:12px;
    max-width:calc(100% - 24px);
    white-space:nowrap;
  }
  .appointment{
    display:block;
    padding:24px 20px;
    border-radius:22px;
  }
  .appointment h2{font-size:23px}
  .appointment .actions{
    margin-top:18px;
    flex-wrap:wrap;
  }
  .appointment .actions .btn{
    flex:1 1 140px;
  }
  .project-grid{grid-template-columns:1fr}
  .project{height:250px}
  .testimonial{padding:20px;border-radius:22px}
  .quote-box{padding:22px}
  .quote{font-size:17px}
  .testimonial-art{min-height:240px}
  .contact-photo{height:320px}
  .contact-form h2{font-size:30px}
  .big-form{grid-template-columns:1fr}
  .big-form .full{grid-column:auto}
  .big-form .field input,
  .big-form .field select,
  .big-form .field textarea{
    font-size:16px;
  }
  .steps-section{padding:38px 18px}
  .how-card{padding:34px 18px 28px;border-radius:22px}
  .how-head h2{font-size:30px}
  .how-head > p{font-size:14px}
  .how-step{padding:0 4px}
  .final-cta{
    margin-top:38px;
    padding:32px 22px;
    border-radius:22px;
  }
  .final-cta h2{font-size:29px}
  .final-cta .btn{width:100%}
  .footer-top{grid-template-columns:1fr 1fr;gap:28px 20px}
  .footer-brand{grid-column:1/-1}
  .footer-brand .brand-logo{width:150px}
  .footer-cta{display:block;padding:22px}
  .footer-cta h3{font-size:26px}
  .footer-cta .btn{
    width:100%;
    margin-top:18px;
  }
  .footer-bottom-modern{
    display:block;
    line-height:1.9;
  }
  .footer-bottom-modern > div{
    margin-top:8px;
    gap:10px;
    flex-wrap:wrap;
  }
  .whatsapp{
    right:14px;
    bottom:14px;
    width:48px;
    height:48px;
    font-size:23px;
  }
  .top{
    right:14px;
    bottom:72px;
  }
}

@media (max-width:420px){
  .stats-cards{grid-template-columns:1fr 1fr}
  .stat-card{min-height:155px}
  .stat-card strong{font-size:31px}
  .project{height:220px}
  .footer-top{grid-template-columns:1fr}
  .footer-brand{grid-column:auto}
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion:reduce){
  *,*:before,*:after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= HEADER — FINAL PREMIUM NAVIGATION ================= */
header{
  height:84px;
  background:rgba(255,255,255,.72);
  border-bottom:1px solid rgba(255,255,255,.68);
  box-shadow:0 8px 30px rgba(20,20,20,.05);
  backdrop-filter:blur(22px) saturate(155%);
  -webkit-backdrop-filter:blur(22px) saturate(155%);
}
.nav{height:84px;gap:32px}
.nav-links{gap:30px}
.nav-links a{
  height:84px;
  font-size:15px !important;
  font-weight:700 !important;
  letter-spacing:-.015em;
  color:#252525;
  transition:color .24s ease,transform .24s ease,background .24s ease !important;
}
.nav-links a:hover{color:var(--red);transform:translateY(-1px)}
.nav-links a::after{
  bottom:15px;
  width:5px;
  height:5px;
  border-radius:50%;
  opacity:0;
  transform:translate(-50%,4px) scale(.4);
  transition:opacity .22s ease,transform .22s ease !important;
}
.nav-links a:hover::after,
.nav-links a.active::after{
  width:5px;
  opacity:1;
  transform:translate(-50%,0) scale(1);
}
.nav > .btn{
  min-width:148px;
  height:48px;
  padding:0 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:-.01em;
  background:linear-gradient(135deg,#f52f2f,#dd2020);
  box-shadow:0 10px 22px rgba(217,32,32,.22),inset 0 1px 0 rgba(255,255,255,.22);
  transition:transform .25s ease,box-shadow .25s ease,filter .25s ease !important;
}
.nav > .btn:hover{
  background:linear-gradient(135deg,#ff4545,#d71919);
  transform:translateY(-2px);
  filter:saturate(1.05);
  box-shadow:0 15px 28px rgba(217,32,32,.3),inset 0 1px 0 rgba(255,255,255,.25);
}
.mobile-nav-cta{display:none}

@media (max-width:900px){
  header,.nav{height:76px}
  .nav{gap:14px}
  .nav-links{
    position:absolute;
    top:calc(100% + 10px);
    display:flex;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transform:translateY(-10px) scale(.985);
    transform-origin:top right;
    padding:10px;
    gap:2px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(255,255,255,.86);
    border-radius:20px;
    box-shadow:0 22px 52px rgba(15,15,15,.14);
    backdrop-filter:blur(22px) saturate(150%);
    -webkit-backdrop-filter:blur(22px) saturate(150%);
    transition:opacity .24s ease,transform .24s cubic-bezier(.2,.8,.2,1),visibility .24s !important;
  }
  .nav-links.open{
    display:flex;
    visibility:visible;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0) scale(1);
  }
  .nav-links a{
    height:auto;
    min-height:45px;
    padding:12px 14px;
    font-size:15px !important;
    font-weight:700 !important;
  }
  .nav-links a:hover,.nav-links a.active{background:rgba(245,47,47,.08);color:var(--red);transform:none}
  .nav-links a::after{display:none}
  .mobile-nav-cta{
    display:flex !important;
    width:calc(100% - 4px) !important;
    height:50px !important;
    min-height:50px !important;
    margin:8px 2px 2px !important;
    padding:0 20px !important;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    background:linear-gradient(135deg,#f52f2f,#dd2020) !important;
    color:#fff !important;
    box-shadow:0 10px 20px rgba(217,32,32,.22);
    font-size:15px !important;
    font-weight:700 !important;
  }
  .menu-toggle{transition:background .22s ease,color .22s ease,transform .22s ease !important}
  .menu-toggle[aria-expanded="true"]{background:#171717;color:#fff;transform:rotate(90deg)}
}
@media (max-width:380px){
  header,.nav{height:70px}
  .nav{gap:10px}
  .nav .brand-logo{width:104px;max-width:104px}
  .nav-links{left:12px;right:12px;padding:8px}
  .nav-links a{min-height:42px;padding:10px 12px}
  .mobile-nav-cta{height:50px !important;min-height:50px !important}
}
@media (prefers-reduced-motion:reduce){
  .nav-links,.nav-links a,.nav-links a::after,.nav > .btn,.menu-toggle{transition:none !important}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= HERO IMAGE SLIDER ================= */
.hero{
  isolation:isolate;
  overflow:hidden;
  background:#151515;
}
.hero-slides{position:absolute;inset:0;z-index:0;overflow:hidden}
.hero-slide{
  position:absolute;
  inset:-2%;
  opacity:0;
  background-position:center;
  background-size:cover;
  transform:scale(1.04);
  transition:opacity 1.15s ease;
  will-change:opacity,transform;
}
.hero-slide.is-active{opacity:1;animation:heroSlideZoom 6.5s cubic-bezier(.18,.72,.28,1) both}
@keyframes heroSlideZoom{
  from{transform:scale(1.01)}
  to{transform:scale(1.13)}
}
.hero-slides::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.82) 0%,rgba(0,0,0,.63) 43%,rgba(0,0,0,.2) 100%);
}
.hero-slide:nth-child(1){background-image:url("assets/images/WhatsApp%20Image%202026-09-15%20at%2008.57.25.jpeg")}
.hero-slide:nth-child(2){background-image:url("assets/images/WhatsApp%20Image%202026-09-15%20at%2008.57.26.jpeg")}
.hero-slide:nth-child(3){background-image:url("assets/images/WhatsApp%20Image%202026-09-15%20at%2008.57.27.jpeg")}
.hero-slide:nth-child(4){background-image:url("assets/images/WhatsApp%20Image%202026-09-15%20at%2008.57.27%20(1).jpeg")}
/* Hero Slider Left & Right Side Navigation Buttons */
.hero-slider-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.45) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 16px !important;
  transition: all 0.28s cubic-bezier(0.25, 1, 0.5, 1) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  padding: 0 !important;
}

.hero-slider-prev {
  left: 24px !important;
}

.hero-slider-next {
  right: 24px !important;
}

.hero-slider-nav:hover {
  background: #f52f2f !important;
  border-color: #f52f2f !important;
  color: #ffffff !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 10px 28px rgba(245, 47, 47, 0.45) !important;
}

@media (max-width: 992px) {
  .hero-slider-nav {
    width: 42px !important;
    height: 42px !important;
    font-size: 14px !important;
  }
  .hero-slider-prev {
    left: 12px !important;
  }
  .hero-slider-next {
    right: 12px !important;
  }
}

@media (max-width: 600px) {
  .hero-slider-nav {
    width: 36px !important;
    height: 36px !important;
    font-size: 12px !important;
  }
  .hero-slider-prev {
    left: 8px !important;
  }
  .hero-slider-next {
    right: 8px !important;
  }
}
@media (prefers-reduced-motion:reduce){
  .hero-slide{transition:none;animation:none}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= ENQUIRY FORM & IMAGE-LED SERVICES ================= */
.hero-form{padding:28px}
.hero-form h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:27px;
  line-height:1.05;
  letter-spacing:-.035em;
  margin-bottom:20px;
}
.hero-form .field label{
  margin-bottom:6px;
  color:#303030;
  font-family:"Playfair Display",Georgia,serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:0;
  line-height:1.2;
  text-transform:none;
}
.hero-form .field input,
.hero-form .field select,
.hero-form .field textarea{
  min-height:44px;
  padding:11px 13px;
  border:1px solid #dedede;
  border-radius:10px;
  background:#fcfcfc;
  color:#252525;
  font-family:"DM Sans",Arial,sans-serif;
  font-size:15px;
  font-weight:500;
  transition:border-color .22s ease,box-shadow .22s ease,background .22s ease;
}
.hero-form .field textarea{height:78px;min-height:78px;line-height:1.45}
.hero-form .field input::placeholder,.hero-form .field textarea::placeholder{font-size:14px;color:#969696}
.hero-form .field input:focus,.hero-form .field select:focus,.hero-form .field textarea:focus{
  border-color:rgba(245,47,47,.72);
  background:#fff;
  box-shadow:0 0 0 3px rgba(245,47,47,.1);
}
.hero-form .btn{height:46px;margin-top:14px;font-size:13px;letter-spacing:.01em}

.service-grid{gap:22px}
.service-card{
  min-height:0;
  padding:0;
  overflow:hidden;
  border:1px solid #ececec;
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 30px rgba(20,20,20,.045);
  transition:transform .32s ease,box-shadow .32s ease,border-color .32s ease;
}
.service-card:hover{transform:translateY(-7px);border-color:rgba(245,47,47,.25);box-shadow:0 20px 42px rgba(20,20,20,.11)}
.service-card-image{width:100%;height:165px;object-fit:cover;transition:transform .55s cubic-bezier(.2,.8,.2,1)}
.service-card:hover .service-card-image{transform:scale(1.07)}
.service-card-content{display:flex;flex:1;flex-direction:column;padding:19px 18px 20px}
.service-card .service-icon{width:34px;height:34px;margin:-36px 0 13px;position:relative;z-index:1;background:#fff;box-shadow:0 6px 16px rgba(0,0,0,.1)}
.service-card h3{min-height:0;margin-bottom:8px;font-size:18px;line-height:1.15}
.service-card p{max-width:none;font-size:12px;line-height:1.65}
.service-read-more{
  display:inline-flex;
  align-items:center;
  gap:7px;
  width:max-content;
  margin-top:17px;
  color:var(--red);
  font-size:12px;
  font-weight:700;
  transition:gap .22s ease,color .22s ease;
}
.service-read-more:hover{gap:11px;color:var(--red-dark)}
@media(max-width:600px){
  .hero-form{padding:22px}
  .hero-form h3{font-size:25px}
  .hero-form .field label{font-size:12px}
  .hero-form .field input,.hero-form .field select,.hero-form .field textarea{font-size:15px}
  .service-card-image{height:185px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= SERVICES SLIDER ================= */
#services.intro{padding-bottom:34px}
.stats-premium{padding-top:18px}
.service-slider{position:relative;margin-top:42px}
.service-slider .service-grid{
  display:flex;
  gap:22px;
  margin-top:0;
  padding:2px 1px 17px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.service-slider .service-grid::-webkit-scrollbar{display:none}
.service-slider .service-card{
  flex:0 0 calc((100% - 44px) / 3);
  scroll-snap-align:start;
}
.service-slider-controls{
  display:flex;
  justify-content:flex-end;
  gap:9px;
  margin-top:2px;
}
.service-slider-button{
  width:42px;height:42px;border:1px solid #e4e4e4;border-radius:50%;
  display:grid;place-items:center;background:#fff;color:#1d1d1d;cursor:pointer;
  font-size:13px;box-shadow:0 7px 18px rgba(0,0,0,.05);
  transition:transform .22s ease,background .22s ease,color .22s ease,box-shadow .22s ease;
}
.service-slider-button:hover{background:var(--red);color:#fff;border-color:var(--red);transform:translateY(-2px);box-shadow:0 10px 20px rgba(245,47,47,.22)}
@media(max-width:900px){
  .service-slider .service-card{flex-basis:calc((100% - 22px) / 2)}
}
@media(max-width:600px){
  #services.intro{padding-bottom:30px}
  .service-slider{margin-top:30px}
  .service-slider .service-grid{gap:14px;padding-bottom:13px}
  .service-slider .service-card{flex-basis:88%}
  .service-slider-controls{margin-top:4px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= SECTION EXPERIENCE UPGRADE ================= */
#services.intro{padding-bottom:18px}
#results.stats-premium{padding-top:4px}
.service-slider-controls{
  position:absolute;
  z-index:3;
  top:50%;left:-21px;right:-21px;
  margin:0;
  transform:translateY(-50%);
  justify-content:space-between;
  pointer-events:none;
}
.service-slider-button{pointer-events:auto;background:rgba(255,255,255,.94)}

#about .feature-wrap{
  padding:20px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:30px;
  background:radial-gradient(circle at 90% 12%,rgba(245,47,47,.35),transparent 27%),linear-gradient(135deg,#101010,#262020 58%,#451313);
  box-shadow:0 25px 70px rgba(25,10,10,.16);
}
#about .feature-grid{padding:26px;gap:56px}
#about .feature-main-img{height:470px;border-radius:20px;box-shadow:0 20px 45px rgba(0,0,0,.28)}
#about .feature-copy{padding:14px 0;color:#fff}
#about .feature-copy h2{font-size:39px;color:#fff;letter-spacing:-.045em}
#about .feature-copy>p{color:rgba(255,255,255,.72);font-size:14px;line-height:1.7}
#about .feature-points{gap:12px;margin-top:24px}
#about .point{padding:14px;border:1px solid rgba(255,255,255,.12);border-radius:14px;background:rgba(255,255,255,.07)}
#about .point i{color:#ff6868}
#about .point h4{font-size:13px;color:#fff}
#about .point p{color:rgba(255,255,255,.65);font-size:10px}
#about .feature-small{width:62%;height:130px;margin-top:22px;border:3px solid rgba(255,255,255,.75);box-shadow:0 12px 30px rgba(0,0,0,.2)}

#who-we-are{padding-top:38px !important;padding-bottom:54px}
#who-we-are .about-story{
  padding:50px;
  border:1px solid #ededed;
  border-radius:30px;
  background:radial-gradient(circle at 5% 96%,rgba(245,47,47,.11),transparent 26%),linear-gradient(135deg,#fff,#faf8f6);
  box-shadow:0 18px 54px rgba(20,20,20,.06);
}
#who-we-are h2{font-size:40px;letter-spacing:-.045em}
#who-we-are .check-list{gap:10px}
#who-we-are .check-item{padding:12px 0;border-bottom:1px solid #e8e4e1}
#who-we-are .check-item:last-child{border-bottom:0}
#who-we-are .check-item h4{font-size:13px}
#who-we-are .check-item p{font-size:11px}
#who-we-are .about-images{grid-template-columns:1fr 1fr;align-items:center;gap:14px}
#who-we-are .about-images img:first-child{height:330px;grid-row:span 2}
#who-we-are .about-images img:last-child{height:180px}
#who-we-are .phone-strip{margin:0;width:100%;font-size:10px}

#get-started.appointment{
  width:100%;min-height:250px;margin:0;padding:0;border-radius:0;
  position:relative;overflow:hidden;
  background:radial-gradient(circle at 82% 35%,rgba(245,47,47,.42),transparent 26%),linear-gradient(110deg,#0b0b0b 0%,#241111 55%,#7f1111 100%);
}
#get-started.appointment:before{content:"";position:absolute;width:370px;height:370px;right:7%;top:-140px;border:1px solid rgba(255,255,255,.16);border-radius:50%;box-shadow:0 0 0 32px rgba(255,255,255,.035),0 0 0 64px rgba(255,255,255,.025)}
.appointment-inner{position:relative;z-index:1;min-height:250px;display:flex;align-items:center;justify-content:space-between;gap:38px}
#get-started .eyebrow{color:#ff7474 !important}
#get-started h2{font-family:"Playfair Display",Georgia,serif;font-size:37px;color:#fff;letter-spacing:-.035em}
#get-started .actions{display:flex;gap:11px}
#get-started .btn{height:48px;padding:0 22px;font-size:13px}
#get-started .btn-outline{border-color:rgba(255,255,255,.5);background:rgba(255,255,255,.08);color:#fff}
#get-started .btn-outline:hover{background:#fff;color:#111}
@media(max-width:900px){
  .service-slider-controls{left:-12px;right:-12px}
  #about .feature-grid{padding:22px;gap:30px}
  #who-we-are .about-story{padding:35px}
  #get-started.appointment,.appointment-inner{min-height:220px}
  #get-started h2{font-size:32px}
}
@media(max-width:600px){
  #results.stats-premium{padding-top:0}
  .service-slider-controls{position:static;transform:none;margin-top:4px;pointer-events:auto}
  .service-slider-button{pointer-events:auto}
  #about .feature-wrap{padding:10px}
  #about .feature-grid{padding:12px}
  #about .feature-main-img{height:300px}
  #about .feature-copy h2,#who-we-are h2{font-size:31px}
  #who-we-are{padding-top:28px !important}
  #who-we-are .about-story{padding:25px 20px}
  #who-we-are .about-images img:first-child,#who-we-are .about-images img:last-child{height:200px}
  .appointment-inner{min-height:260px;padding-top:38px;padding-bottom:38px;display:block}
  #get-started h2{font-size:29px}
  #get-started .actions{margin-top:22px;flex-wrap:wrap}
  #get-started .btn{flex:1 1 170px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= PROJECTS, CONTACT, PROCESS & FOOTER ================= */
#projects .project-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:15px}
#projects .project{height:230px;border-radius:16px;box-shadow:0 10px 25px rgba(0,0,0,.06)}
#projects .project:before{content:"View Project";position:absolute;z-index:2;left:16px;bottom:14px;color:#fff;font-size:11px;font-weight:700;opacity:0;transform:translateY(8px);transition:.3s ease}
#projects .project:hover:before{opacity:1;transform:none}

.testimonial-slider{position:relative;min-height:230px}
.testimonial-slide{position:absolute;inset:0;opacity:0;transform:translateY(10px);pointer-events:none;transition:opacity .55s ease,transform .55s ease}
.testimonial-slide.is-active{opacity:1;transform:none;pointer-events:auto}

#contact .contact-form{
  padding:36px;
  border:1px solid #ececec;
  border-radius:26px;
  background:radial-gradient(circle at 96% 4%,rgba(245,47,47,.1),transparent 24%),#fff;
  box-shadow:0 22px 55px rgba(20,20,20,.07);
}
#contact .contact-form h2{font-family:"Playfair Display",Georgia,serif;font-size:39px;letter-spacing:-.045em}
#contact .contact-form>p{font-size:15px;line-height:1.7}
#contact .big-form{margin-top:28px;gap:15px}
#contact .big-form .field label{font-family:"Playfair Display",Georgia,serif;font-size:13px;font-weight:600;text-transform:none;letter-spacing:0;color:#343434}
#contact .big-form .field input,#contact .big-form .field select,#contact .big-form .field textarea{padding:13px 14px;border:1px solid #dedede;border-radius:10px;background:#fcfcfc;font-size:15px;transition:border-color .2s ease,box-shadow .2s ease}
#contact .big-form .field input:focus,#contact .big-form .field select:focus,#contact .big-form .field textarea:focus{border-color:var(--red);box-shadow:0 0 0 3px rgba(245,47,47,.1)}
#contact .big-form .field textarea{height:108px}
#contact .contact-form .btn{height:49px;padding:0 23px;font-size:14px}

.how-card{border:1px solid rgba(245,47,47,.12);background:radial-gradient(circle at 5% 2%,rgba(245,47,47,.14),transparent 26%),radial-gradient(circle at 94% 95%,rgba(25,168,233,.1),transparent 27%),linear-gradient(135deg,#fff,#fafafa)}
.how-head h2{font-size:42px;letter-spacing:-.045em}
.how-head>p,.how-step p{font-size:15px;line-height:1.65}
.how-step{padding:21px 18px;border:1px solid #ececec;border-radius:18px;background:rgba(255,255,255,.8);box-shadow:0 10px 25px rgba(20,20,20,.04);transition:transform .28s ease,box-shadow .28s ease}
.how-step:hover{transform:translateY(-6px);box-shadow:0 18px 34px rgba(20,20,20,.1)}
.how-icon{background:linear-gradient(135deg,#f52f2f,#ff6c55);color:#fff;border:0;box-shadow:0 9px 18px rgba(245,47,47,.2)}
.step-number{color:var(--red);font-weight:800}

.premium-footer .footer-brand p,.premium-footer .footer-column>a,.premium-footer .footer-contact-modern a,.premium-footer .footer-contact-modern div{font-size:15px;line-height:1.55}
.premium-footer .footer-column{gap:11px}
.premium-footer .footer-column h4{font-size:13px}
.premium-footer .footer-socials a{background:#fff;border:0;color:#1877f2}
.premium-footer .footer-socials a:nth-child(2){color:#e1306c}
.premium-footer .footer-socials a:nth-child(3){color:#25d366}
.premium-footer .footer-socials a:hover{background:#fff;transform:translateY(-4px) scale(1.06)}
.premium-footer .footer-contact-modern i{font-size:15px;color:#fff}
.premium-footer .footer-cta{padding:30px 34px;background:rgba(0,0,0,.2)}
.premium-footer .footer-cta h3{font-size:30px}
.premium-footer .btn-light{color:#102a43;font-size:14px;font-weight:800}
.premium-footer .btn-light:hover{color:#102a43}
.premium-footer .footer-bottom-modern{font-size:12px}
@media(max-width:900px){
  #projects .project-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  #contact .contact-form{padding:28px}
}
@media(max-width:600px){
  #projects .project{height:190px}
  .testimonial-slider{min-height:250px}
  #contact .contact-form{padding:24px 20px;border-radius:20px}
  #contact .contact-form h2,.how-head h2{font-size:31px}
  .how-step{padding:18px 14px}
  .premium-footer .footer-brand p,.premium-footer .footer-column>a,.premium-footer .footer-contact-modern a,.premium-footer .footer-contact-modern div{font-size:15px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* ================= HUMAN, PAINT-SERVICE CHARACTER ================= */
h2{
  font-family:"Playfair Display",Georgia,serif;
  font-weight:600;
  letter-spacing:-.04em;
}
p{font-size:15px;line-height:1.7}
.service-card p,.point p,.check-item p{font-size:14px}
.eyebrow{font-size:11px;letter-spacing:.19em}

.craft-section{padding:42px 0 72px}
.craft-card{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);
  align-items:stretch;
  overflow:hidden;
  border-radius:30px;
  background:#f3ede4;
  box-shadow:0 22px 55px rgba(40,29,20,.08);
}
.craft-image-wrap{position:relative;min-height:440px;overflow:hidden}
.craft-image-wrap:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,transparent 52%,rgba(34,22,14,.22))}
.craft-image-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.8,.2,1)}
.craft-card:hover .craft-image-wrap img{transform:scale(1.045)}
.craft-stamp{position:absolute;z-index:1;bottom:26px;left:26px;width:104px;height:104px;border-radius:50%;display:grid;place-content:center;text-align:center;background:#f52f2f;color:#fff;box-shadow:0 12px 28px rgba(80,20,16,.24);transform:rotate(-9deg)}
.craft-stamp i{font-size:21px;margin-bottom:4px}.craft-stamp span{font-family:"Playfair Display",serif;font-size:15px;line-height:1.05}
.craft-copy{padding:65px 60px 52px;align-self:center}
.craft-copy h2{font-size:45px;line-height:1.03;margin:10px 0 18px}
.craft-copy>p{max-width:470px;color:#5d5954;font-size:16px}
.paint-swatches{display:flex;gap:11px;flex-wrap:wrap;margin:25px 0}
.paint-swatches span{width:62px;height:62px;border:3px solid rgba(255,255,255,.8);border-radius:50%;display:grid;place-items:center;text-align:center;padding:4px;box-shadow:0 5px 12px rgba(0,0,0,.1);font-size:8px;font-weight:700;line-height:1.1}
.craft-link{display:inline-flex;align-items:center;gap:9px;color:#bd2424;font-size:14px;font-weight:800;border-bottom:1px solid rgba(189,36,36,.35);padding-bottom:5px;transition:gap .22s ease}.craft-link:hover{gap:14px}

.premium-footer{padding-top:35px}
.footer-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:0;margin-bottom:54px;border:1px solid rgba(255,255,255,.19);border-radius:18px;background:rgba(10,0,0,.12);overflow:hidden}
.footer-trust>div{display:flex;align-items:center;gap:14px;padding:20px 22px;border-right:1px solid rgba(255,255,255,.16)}
.footer-trust>div:last-child{border-right:0}.footer-trust i{font-size:21px;color:#ffd36b}.footer-trust span{font-size:13px;line-height:1.4;color:rgba(255,255,255,.72)}.footer-trust strong{display:block;color:#fff;font-size:14px}
.premium-footer .footer-brand p{max-width:360px;font-size:15px}.premium-footer .footer-column h4{font-size:14px}.premium-footer .footer-column>a{font-size:15px}.premium-footer .footer-contact-modern a,.premium-footer .footer-contact-modern div{font-size:15px}.premium-footer .footer-socials a{width:40px;height:40px}
.premium-footer .footer-cta{border-radius:18px}.premium-footer .footer-cta h3{font-family:"Playfair Display",Georgia,serif;font-weight:600}.premium-footer .footer-bottom-modern{font-size:13px}
@media(max-width:900px){
  .craft-card{grid-template-columns:1fr}.craft-image-wrap{min-height:330px}.craft-copy{padding:45px 38px}
  .footer-trust{grid-template-columns:1fr}.footer-trust>div{border-right:0;border-bottom:1px solid rgba(255,255,255,.16)}.footer-trust>div:last-child{border-bottom:0}
}
@media(max-width:600px){
  p{font-size:15px}.craft-section{padding:30px 0 55px}.craft-image-wrap{min-height:280px}.craft-copy{padding:34px 24px}.craft-copy h2{font-size:34px}.craft-copy>p{font-size:15px}.craft-stamp{width:86px;height:86px;bottom:16px;left:16px}.footer-trust{margin-bottom:36px}.footer-trust>div{padding:17px}.footer-trust span{font-size:12px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Image-backed Who We Are section replaces the plain white card. */
#who-we-are{
  position:relative;
  overflow:hidden;
  padding:92px 0 !important;
  background:
    linear-gradient(90deg,rgba(10,10,10,.91) 0%,rgba(12,12,12,.79) 49%,rgba(12,12,12,.42) 100%),
    url("https://images.unsplash.com/photo-1589939705384-5185137a7f0f?q=80&w=1920&auto=format&fit=crop") center/cover;
}
#who-we-are .about-story{
  display:block;
  max-width:1160px;
  min-height:0;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
#who-we-are .about-story>div:first-child{max-width:590px}
#who-we-are .about-images{display:none}
#who-we-are .eyebrow{color:#ff7676}
#who-we-are h2{color:#fff;font-size:48px}
#who-we-are p{color:rgba(255,255,255,.76)}
#who-we-are .check-list{max-width:560px;margin-top:26px}
#who-we-are .check-item{border-color:rgba(255,255,255,.17)}
#who-we-are .check-item i{color:#ff6a6a}
#who-we-are .check-item h4{color:#fff;font-size:15px}
#who-we-are .check-item p{font-size:14px}
@media(max-width:600px){
  #who-we-are{padding:60px 0 !important;background-position:62% center}
  #who-we-are h2{font-size:37px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Google-style review cards and an image-backed appointment CTA. */
.testimonial-slider{min-height:212px}
.testimonial .quote-box{padding:28px 30px}
.testimonial .stars{letter-spacing:2px;color:#fbbc04}
.testimonial .client{margin-top:18px}
.testimonial .client strong{font-size:13px}
.testimonial .client span{font-size:11px;color:#777}
.google-mark{
  width:34px;height:34px;border-radius:50%;display:grid;place-items:center;
  background:#fff;border:1px solid #e5e5e5;box-shadow:0 3px 9px rgba(0,0,0,.08);
  font-family:Arial,sans-serif;font-size:19px;font-weight:800;
  color:#4285f4;
}
.testimonial-controls{display:flex;gap:8px;margin-top:14px}
.testimonial-control{
  width:36px;height:36px;border:1px solid #dfdfdf;border-radius:50%;
  display:grid;place-items:center;background:#fff;color:#242424;cursor:pointer;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.testimonial-control:hover{background:var(--red);border-color:var(--red);color:#fff;transform:translateY(-2px)}
#get-started.appointment{
  background:
    linear-gradient(90deg,rgba(8,8,8,.93) 0%,rgba(35,12,12,.79) 52%,rgba(111,16,16,.64) 100%),
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1920&auto=format&fit=crop") center/cover;
}
@media(max-width:600px){
  .testimonial-slider{min-height:242px}
  .testimonial .quote-box{padding:23px}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Final visual polish: layered surfaces, depth and human cues. */
body{background:linear-gradient(120deg,#fff 0%,#fff 42%,#fdfaf8 100%)}
.section{position:relative}
.section:not(#projects):not(#contact):not(.craft-section):not(.how-section)::after{
  content:"";position:absolute;width:90px;height:2px;left:calc(50% - 45px);bottom:0;
  background:linear-gradient(90deg,transparent,#f52f2f,transparent);opacity:.24;
}
.hero-proof{
  position:absolute;z-index:2;right:max(24px,calc((100% - 1160px) / 2));bottom:26px;
  display:flex;align-items:center;gap:10px;padding:10px 14px;border:1px solid rgba(255,255,255,.3);border-radius:14px;
  background:rgba(16,16,16,.33);color:#fff;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
}
.hero-proof-stars{color:#ffc94d;letter-spacing:1px;font-size:11px}.hero-proof strong,.hero-proof small{display:block;line-height:1.3}.hero-proof strong{font-size:11px}.hero-proof small{font-size:9px;color:rgba(255,255,255,.72)}
.projects-head h2,.stats-heading h2{position:relative}.projects-head h2:after,.stats-heading h2:after{content:"";display:block;width:44px;height:3px;margin:14px auto 0;border-radius:99px;background:linear-gradient(90deg,#f52f2f,#ff8e7c)}.stats-heading h2:after{margin-left:0}
#projects .project{overflow:hidden;background:#111}.project img{filter:saturate(.94) contrast(1.03)}#projects .project:hover img{filter:saturate(1.12) contrast(1.06)}
.stat-card{background:linear-gradient(145deg,#fff,#fffafa)}.stat-card:hover{background:linear-gradient(145deg,#fff,#fff4f3)}
.service-card,.quote-box,.contact-form{box-shadow:0 16px 38px rgba(34,24,17,.07)}
.btn{letter-spacing:.01em}.btn-red{background:linear-gradient(135deg,#fb3a3a,#d91818)}.btn-red:hover{background:linear-gradient(135deg,#ff5656,#d31313)}
@media(max-width:900px){.hero-proof{right:22px;bottom:18px}.hero-slider-controls{bottom:18px}}
@media(max-width:600px){.hero-proof{display:none}.hero-slider-controls{bottom:15px}.section:not(#projects):not(#contact):not(.craft-section):not(.how-section)::after{display:none}}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Consistent image and contact-form proportions. */
.service-slider .service-card{height:430px}
.service-slider .service-card-image{height:205px !important;min-height:205px;object-fit:cover}
.service-slider .service-card-content{min-height:0}
.service-slider .service-read-more{margin-top:auto}
#contact .contact-grid{align-items:stretch}
#contact .contact-photo{height:auto;min-height:625px;object-fit:cover}
#contact .contact-form{height:100%;min-height:625px;display:flex;flex-direction:column;justify-content:center}
.premium-footer{padding-top:66px}
.premium-footer .footer-top{padding-bottom:42px}
.footer-credit{display:inline-block;margin-left:10px;color:#ffd36b;font-weight:700}
@media(max-width:900px){
  .service-slider .service-card{height:420px}
  #contact .contact-photo,#contact .contact-form{min-height:0;height:auto}
}
@media(max-width:600px){
  .service-slider .service-card{height:405px}
  .service-slider .service-card-image{height:190px !important;min-height:190px}
  .footer-credit{display:block;margin:5px 0 0}
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* FINAL MOBILE / TABLET POLISH */
html, body { max-width:100%; overflow-x:clip; }

.hero-slider-controls{
  left:50% !important;
  right:auto !important;
  transform:translateX(-50%) !important;
  justify-content:center !important;
  z-index:30 !important;
}

@media (max-width: 900px){
  .hero-form{
    width:100% !important;
    max-width:100% !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea{
    width:100% !important;
  }

  .hero-slider-controls{
    left:50% !important;
    right:auto !important;
    width:max-content !important;
    max-width:calc(100% - 32px) !important;
    margin:0 !important;
    transform:translateX(-50%) !important;
  }

  .feature-main-img,
  .feature-small,
  .about-images img,
  .contact-photo,
  .testimonial-art,
  .project img,
  .service-card-image{
    width:100% !important;
    max-width:100% !important;
  }

  .feature-main-img,
  .feature-small,
  .about-images img,
  .contact-photo,
  .testimonial-art{
    height:auto !important;
    min-height:0 !important;
    object-fit:cover !important;
  }
}

@media (max-width: 600px){
  /* Make all mobile form placeholders 50% smaller */
  .hero-form input::placeholder,
  .hero-form textarea::placeholder,
  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .contact-form select::placeholder{
    font-size:7.5px !important;
  }

  /* Keep actual entered/select text readable */
  .hero-form input,
  .hero-form textarea,
  .hero-form select,
  .contact-form input,
  .contact-form textarea,
  .contact-form select{
    font-size:15px !important;
  }

  .hero-slider-controls{
    bottom:18px !important;
    top:auto !important;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
  }

  .hero-slider-arrow{
    width:34px !important;
    height:34px !important;
  }

  .hero-slider-dots{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .hero-form{
    padding:18px !important;
  }

  .hero-form .field input,
  .hero-form .field select,
  .hero-form .field textarea{
    min-height:48px;
  }

  .hero-form .field textarea{
    min-height:90px;
  }

  .about-images img:last-child,
  .feature-small,
  .contact-photo{
    width:100% !important;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */



/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* MOBILE: HERO BANNER ENDS BEFORE THE ENQUIRY FORM */
@media(max-width:600px){
  .top-contact-bar + header{
    position:sticky;
    top:0;
  }

  .hero{
    min-height:0 !important;
    height:auto !important;
    padding:0 !important;
    display:block !important;
    overflow:visible !important;
    background:#fff !important;
  }

  .hero-slides{
    top:0 !important;
    left:0 !important;
    right:0 !important;
    bottom:auto !important;
    width:100% !important;
    height:560px !important;
  }

  .hero-inner{
    width:100% !important;
    padding:60px 14px 0 !important;
    position:relative !important;
    z-index:1 !important;
    display:flex !important;
    flex-direction:column !important;
  }

  .hero-copy{
    width:100% !important;
    min-height:560px !important;
    padding:0 14px 40px !important;
    position:relative !important;
    z-index:2 !important;
  }

  .hero-copy p{
    max-width:100% !important;
  }

  .hero-actions{
    margin-top:25px !important;
  }

  .hero-form{
    position:relative !important;
    top:auto !important;
    right:auto !important;
    transform:none !important;
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:22px 18px !important;
    background:#fff !important;
    z-index:5 !important;
    border-radius:22px !important;
    box-shadow:0 15px 45px rgba(0,0,0,.12) !important;
  }

  .hero-form:hover{
    transform:none !important;
  }

  .hero-slider-controls{
    top:520px !important;
    bottom:auto !important;
    left:50% !important;
    right:auto !important;
    transform:translateX(-50%) !important;
    z-index:10 !important;
  }

  .hero:before,
  .hero:after{
    display:none !important;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* Mobile form: more premium, less plain */
@media(max-width:600px){
  .hero-form{
    border:1px solid #ececec !important;
    border-radius:24px !important;
    padding:25px 20px 22px !important;
    box-shadow:0 18px 55px rgba(0,0,0,.14) !important;
  }
  .hero-form h3{
    font-size:27px !important;
    line-height:1.08 !important;
    margin-bottom:20px !important;
  }
  .form-grid{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:13px !important;
  }
  .form-grid .field{
    width:100% !important;
  }
  .field label{
    font-size:10px !important;
    letter-spacing:.04em !important;
    margin-bottom:6px !important;
  }
  .field input,
  .field select,
  .field textarea{
    min-height:52px !important;
    padding:13px 14px !important;
    border:1px solid #dedede !important;
    border-radius:11px !important;
    font-size:14px !important;
    background:#fff !important;
  }
  .field textarea{
    min-height:105px !important;
  }
  .hero-form .btn{
    min-height:52px !important;
    margin-top:6px !important;
    font-size:12px !important;
  }
}

/* Remove any accidental right-edge horizontal overflow */
html,body{
  max-width:100% !important;
  overflow-x:clip !important;
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

/* FINAL ARROW ALIGNMENT + DESKTOP MENU SIZE */
.hero-slider-controls,
.slider-controls,
.carousel-controls,
.swiper-button-prev,
.swiper-button-next{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-sizing:border-box !important;
}

.hero-slider-arrow,
.slider-arrow,
.carousel-arrow,
.swiper-button-prev,
.swiper-button-next{
  display:grid !important;
  place-items:center !important;
  line-height:1 !important;
  text-align:center !important;
  padding:0 !important;
}

.hero-slider-arrow i,
.slider-arrow i,
.carousel-arrow i,
.swiper-button-prev:after,
.swiper-button-next:after{
  margin:0 !important;
  line-height:1 !important;
  position:static !important;
  transform:none !important;
}

/* Keep arrows visually centered inside their circular backgrounds */
.hero-slider-arrow,
.slider-arrow,
.carousel-arrow{
  position:relative !important;
  overflow:hidden !important;
}
.hero-slider-arrow i,
.slider-arrow i,
.carousel-arrow i{
  position:absolute !important;
  left:50% !important;
  top:50% !important;
  transform:translate(-50%,-50%) !important;
}
.hero-slider-arrow:hover i,
.slider-arrow:hover i,
.carousel-arrow:hover i{
  transform:translate(-50%,-50%) !important;
}

/* Any standalone arrow icon in buttons */
.btn i.fa-arrow-right,
.btn i.fa-arrow-left{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:1em !important;
  height:1em !important;
  line-height:1 !important;
  margin:0 !important;
}

/* Desktop navigation slightly larger and more premium */
@media(min-width:901px){
  .nav{
    height:88px !important;
  }
  header{
    height:88px !important;
  }
  .nav-links{
    gap:40px !important;
  }
  .nav-links a{
    font-size:13px !important;
    font-weight:700 !important;
    letter-spacing:.15px !important;
  }
  .nav-cta{
    min-height:48px !important;
    padding:0 24px !important;
    font-size:12px !important;
  }
}

/* Tablet/mobile: don't let menu sizing affect the hamburger */
@media(max-width:900px){
  .menu-toggle{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
  }
}

/* ==========================================================================
   Extracted Style Block
   ========================================================================== */

.paint-cursor-drop{
  position:fixed;
  z-index:9999;
  width:7px;height:7px;
  border-radius:50% 50% 55% 45%;
  pointer-events:none;
  transform:translate(-50%,-50%) rotate(25deg);
  animation:cursorPaint .65s ease-out forwards;
}
@keyframes cursorPaint{
  0%{opacity:.9;transform:translate(-50%,-50%) scale(1)}
  100%{opacity:0;transform:translate(-50%,10px) scale(.15)}
}

/* ================= COUNTER 2.0 / PREMIUM UI ================= */
.stats-premium{
  position:relative;
  padding:30px 0 100px;
}
.stats-heading{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:28px;
}
.stats-heading h2{
  font-size:34px;
  max-width:420px;
}
.stats-heading h2 span{
  background:linear-gradient(90deg,#f52f2f,#ff624f,#ff6b55);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.stats-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.stat-card{
  position:relative;
  min-height:190px;
  padding:28px 22px 23px;
  border-radius:22px;
  background:#fff;
  border:1px solid #ededed;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.045);
  transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease,border-color .3s ease;
}
.stat-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(245,47,47,.08),transparent 45%,rgba(25,168,233,.06));
  opacity:0;
  transition:opacity .4s ease;
}
.stat-card:hover{
  transform:translateY(-10px);
  border-color:rgba(245,47,47,.28);
  box-shadow:0 25px 55px rgba(0,0,0,.11);
}
.stat-card:hover:before{opacity:1}
.stat-icon{
  position:relative;
  z-index:2;
  width:42px;height:42px;
  border-radius:13px;
  display:grid;place-items:center;
  background:#fff1f1;
  color:#f52f2f;
  font-size:16px;
  margin-bottom:18px;
  transition:transform .4s ease,background .35s ease,color .35s ease;
}
.stat-card:hover .stat-icon{
  background:#f52f2f;
  color:#fff;
  transform:rotate(-8deg) scale(1.08);
}
.stat-card strong{
  position:relative;
  z-index:2;
  font-size:38px;
  letter-spacing:-.055em;
  line-height:1;
}
.stat-card > span{
  position:relative;
  z-index:2;
  font-size:20px;
  color:#f52f2f;
  font-weight:800;
  vertical-align:top;
  margin-left:2px;
}
.stat-card small{
  display:block;
  position:relative;
  z-index:2;
  color:#777;
  font-size:10px;
  margin-top:7px;
  font-weight:600;
}
.stat-line{
  position:absolute;
  left:22px;bottom:18px;
  width:52px;height:3px;border-radius:99px;
  background:linear-gradient(90deg,#f52f2f,#ff6b55,#19a8e9);
  transition:width .45s ease;
}
.stat-card:hover .stat-line{width:95px}
.stat-orbit{
  position:absolute;
  width:105px;height:105px;
  border:1px solid rgba(245,47,47,.08);
  border-radius:50%;
  right:-48px;top:-48px;
  transition:transform .8s ease;
}
.stat-orbit:after{
  content:"";
  position:absolute;
  width:7px;height:7px;border-radius:50%;
  background:#f52f2f;
  top:18px;left:13px;
  box-shadow:34px 62px 0 #ff6b55,68px 18px 0 #19a8e9;
}
.stat-card:hover .stat-orbit{transform:rotate(150deg) scale(1.12)}

/* ================= PREMIUM RED GRADIENT FOOTER ================= */
.premium-footer{
  position:relative;
  overflow:hidden;
  color:#fff;
  padding:70px 0 20px;
  background:
    radial-gradient(circle at 88% 10%,rgba(255,110,70,.42),transparent 25%),
    radial-gradient(circle at 10% 90%,rgba(255,180,0,.14),transparent 24%),
    linear-gradient(135deg,#720b0b 0%,#d51d1d 45%,#f13c2d 72%,#9e0d12 100%);
}
.premium-footer:before{
  content:"";
  position:absolute;
  left:-10%;
  top:-55%;
  width:70%;
  height:150%;
  background:linear-gradient(115deg,transparent 35%,rgba(255,255,255,.10) 42%,transparent 49%);
  transform:rotate(8deg);
  animation:footerShine 8s linear infinite;
}
.premium-footer .container{position:relative;z-index:2}
.footer-paint-splash{
  position:absolute;
  border-radius:50%;
  filter:blur(.2px);
  pointer-events:none;
}
.splash-one{
  width:170px;height:170px;
  right:-70px;top:210px;
  background:radial-gradient(circle at 40% 40%,#ff6b55 0 12%,#ff3d32 13% 24%,#19a8e9 25% 38%,transparent 39%);
  opacity:.24;
  animation:paintFloat 7s ease-in-out infinite;
}
.splash-two{
  width:100px;height:100px;
  left:-35px;top:60px;
  background:#fff;
  opacity:.06;
  animation:dropBounce 5s ease-in-out infinite;
}
.footer-top{
  display:grid;
  grid-template-columns:1.5fr .8fr .95fr 1.15fr;
  gap:45px;
  padding-bottom:48px;
}
.footer-brand .brand-logo{
  width:180px;
  background:#fff;
  padding:8px 12px;
  border-radius:8px;
}
.footer-brand p{
  color:rgba(255,255,255,.78);
  font-size:12px;
  max-width:330px;
  margin-top:18px;
  line-height:1.7;
}
.footer-socials{
  display:flex;
  gap:8px;
  margin-top:22px;
}
.footer-socials a{
  width:36px;height:36px;
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:50%;
  color:#fff;
  transition:.3s ease;
}
.footer-socials a:hover{
  background:#fff;
  color:#d51d1d;
  transform:translateY(-4px) rotate(8deg);
}
.footer-column{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.footer-column h4{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.13em;
  margin-bottom:8px;
}
.footer-column>a{
  color:rgba(255,255,255,.75);
  font-size:11px;
  transition:.3s ease;
  width:max-content;
}
.footer-column>a:hover{
  color:#fff;
  transform:translateX(5px);
}
.footer-contact-modern a,
.footer-contact-modern div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(255,255,255,.78);
  font-size:11px;
  line-height:1.5;
  transition:.3s ease;
}
.footer-contact-modern a:hover{color:#fff;transform:translateX(4px)}
.footer-contact-modern i{
  color:#FE3A37;
  width:16px;
  margin-top:2px;
}
.footer-cta{
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.13);
  backdrop-filter:blur(12px);
  border-radius:22px;
  padding:28px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.footer-cta span{
  font-size:9px;
  font-weight:800;
  letter-spacing:.16em;
  color:#FE3A37;
}
.footer-cta h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:27px;
  margin-top:5px;
}
.btn-light{
  background:#fff;
  color:#c91717;
  min-width:160px;
}
.btn-light:before{background:#ff9b83}
.btn-light:hover{color:#111}
.footer-bottom-modern{
  margin-top:35px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.18);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(255,255,255,.58);
  font-size:9px;
}
.footer-bottom-modern div{display:flex;gap:18px}
.footer-bottom-modern a:hover{color:#fff}

@keyframes footerShine{
  0%{transform:translateX(-70%) rotate(8deg)}
  100%{transform:translateX(170%) rotate(8deg)}
}

/* Scrollbar / subtle UX polish */
::-webkit-scrollbar{width:9px}
::-webkit-scrollbar-track{background:#f5f5f5}
::-webkit-scrollbar-thumb{
  background:linear-gradient(#f52f2f,#ff4b3b);
  border-radius:99px;
}
::selection{background:#f52f2f;color:#fff}

@media(max-width:900px){
  .stats-heading{display:block}
  .stats-heading h2{margin-top:5px}
  .stats-cards{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:35px}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:600px){
  .stats-premium{padding-bottom:65px}
  .stats-cards{grid-template-columns:1fr 1fr;gap:10px}
  .stat-card{min-height:170px;padding:22px 16px}
  .stat-card strong{font-size:30px}
  .stat-card small{font-size:9px}
  .stats-heading h2{font-size:28px}
  .footer-top{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
  .footer-cta{display:block;padding:25px}
  .footer-cta .btn{margin-top:20px}
  .footer-bottom-modern{display:block;line-height:2}
  .footer-bottom-modern div{margin-top:5px;gap:12px;flex-wrap:wrap}
}
@media(max-width:420px){
  .stats-cards{grid-template-columns:1fr}
}


/* ==========================================================================
   SMOOTH FINISH - INNER PAGES PREMIUM DESIGN SYSTEM
   ========================================================================== */

/* Enhanced Page Header Banner */
.page-header-banner {
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(245,47,47,0.18), transparent 40%),
              linear-gradient(135deg, #121212 0%, #1e1e1e 60%, #171717 100%);
  padding: 130px 0 70px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.page-header-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(rgba(245,47,47,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}
.page-header-banner .container {
  position: relative;
  z-index: 2;
}
.page-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}
.page-breadcrumbs a {
  color: #fff;
  transition: color 0.2s;
}
.page-breadcrumbs a:hover {
  color: var(--red);
}
.page-breadcrumbs span.sep {
  color: var(--red);
  font-size: 9px;
}
.page-header-banner h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  color: #fff;
}
.page-header-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ================= SERVICE DETAIL LAYOUT ================= */
.service-detail-section {
  padding: 85px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 45px;
  align-items: start;
}
@media (max-width: 992px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}
.service-detail-main h2 {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.service-detail-main h3 {
  font-size: 24px;
  margin: 35px 0 15px;
  line-height: 1.3;
}
.service-detail-main p {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 18px;
}
.service-hero-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  margin-bottom: 35px;
}
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px 0;
}
@media (max-width: 640px) {
  .service-features-grid {
    grid-template-columns: 1fr;
  }
}
.service-feature-card {
  background: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: rgba(245,47,47,0.3);
}
.service-feature-card .feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff0f0;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 15px;
}
.service-feature-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
}
.service-feature-card p {
  font-size: 13.5px;
  color: #777;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Service Detail Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 105px;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.sidebar-widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f2f2f2;
  position: relative;
}
.sidebar-widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--red);
}
.sidebar-service-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-radius: 12px;
  background: #fbfbfb;
  border: 1px solid #ededed;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  transition: all 0.25s ease;
}
.sidebar-service-link i {
  color: #999;
  font-size: 12px;
  transition: transform 0.25s ease, color 0.25s ease;
}
.sidebar-service-link:hover,
.sidebar-service-link.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateX(4px);
}
.sidebar-service-link:hover i,
.sidebar-service-link.active i {
  color: #fff;
  transform: translateX(4px);
}
.sidebar-cta-widget {
  background: linear-gradient(135deg, #171717 0%, #2b1111 100%);
  color: #fff;
  border: 1px solid rgba(245,47,47,0.3);
  text-align: center;
}
.sidebar-cta-widget h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}
.sidebar-cta-widget p {
  color: rgba(255,255,255,0.75);
  font-size: 13.5px;
  margin-bottom: 20px;
}
.sidebar-cta-widget .phone-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}
.sidebar-cta-widget .phone-number i {
  color: var(--red);
  margin-right: 6px;
}

/* ================= FAQ ACCORDION ================= */
.faq-section {
  padding: 60px 0 20px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}
.faq-item {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.is-open {
  border-color: var(--red);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--red);
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #444;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  background: var(--red);
  color: #fff;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}
.faq-answer p {
  color: #666;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ================= OCEANSIDE FAQ SECTION ================= */
.faq-oceanside-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.faq-oceanside-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: center;
}

/* Left: Visual Collage */
.faq-visual-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 520px;
}

.faq-collage-tall {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.faq-collage-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.faq-collage-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.faq-stack-img {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.faq-stack-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.faq-stack-box {
  height: 100%;
  background: #08101e;
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.faq-stack-box-title {
  font-family: 'Playfair Display', Georgia, serif;
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}

.btn-faq-action {
  display: inline-block;
  background: #f2722b;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(242, 114, 43, 0.3);
}

.btn-faq-action:hover {
  background: #e0601a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(242, 114, 43, 0.4);
}

/* Right: Content & Accordion */
.faq-content-column {
  display: flex;
  flex-direction: column;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5e9;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.faq-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0ea5e9;
  display: inline-block;
}

.faq-main-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 600;
  color: #0b1320;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

.os-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
}

.os-accordion .faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.os-accordion .faq-item:hover {
  border-color: #cbd5e1;
}

.os-accordion .faq-item.is-open {
  border-color: #e2e8f0;
}

.os-accordion .faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 22px;
  background: #ffffff !important;
  border: none !important;
  font-size: 15px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease;
}

.os-accordion .faq-question:hover {
  color: #f2722b;
}

.os-accordion .faq-item.is-open .faq-question {
  background: #08101e !important;
  color: #ffffff !important;
  border-radius: 6px 6px 0 0 !important;
}

.os-accordion .faq-item.is-open .faq-question:hover {
  color: #ffffff !important;
}

.os-accordion .faq-icon,
.os-accordion .faq-item .faq-icon,
.os-accordion .faq-item.is-open .faq-icon,
.os-accordion .faq-question .faq-icon {
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transform: none !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
}

.os-accordion .faq-icon i {
  font-size: 14px !important;
  color: #64748b !important;
  line-height: 1 !important;
}

.os-accordion .faq-question:hover .faq-icon i {
  color: #f2722b !important;
}

.os-accordion .faq-item.is-open .faq-icon i {
  color: #ffffff !important;
}

.os-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  background: #ffffff;
}

.os-accordion .faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 18px 22px 20px;
}

.os-accordion .faq-answer p {
  color: #475569;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

/* Responsive Ordering (Matching Oceanside exactly) */
@media (max-width: 991px) {
  .faq-oceanside-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .faq-content-column {
    order: 1;
    width: 100%;
  }
  .faq-visual-collage {
    order: 2;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 16px;
  }
  .faq-collage-stack {
    display: contents;
  }
  .faq-stack-box {
    order: 1;
    width: 100%;
    height: auto;
    min-height: 220px;
    padding: 36px 20px;
  }
  .faq-stack-img {
    order: 2;
    width: 100%;
    height: 280px;
  }
  .faq-collage-tall {
    order: 3;
    width: 100%;
    height: 380px;
  }
  .faq-main-heading {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .faq-stack-img {
    height: 220px;
  }
  .faq-collage-tall {
    height: 280px;
  }
  .faq-main-heading {
    font-size: 26px;
  }
  .os-accordion .faq-question {
    padding: 13px 18px;
    font-size: 14px;
  }
  .os-accordion .faq-item.is-open .faq-answer {
    padding: 16px 18px 18px;
  }
}

/* ================= ABOUT US PAGE STYLES ================= */
.about-story-section {
  padding: 85px 0;
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-split-grid {
    grid-template-columns: 1fr;
  }
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}
.about-value-card {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  border-color: rgba(245,47,47,0.3);
}
.about-value-card .v-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff1f1;
  color: var(--red);
  font-size: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.about-value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.about-value-card p {
  font-size: 13.5px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ================= PROJECTS PORTFOLIO PAGE ================= */
.projects-page-section {
  padding: 70px 0 90px;
}
.project-filter-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}
.filter-btn {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #444;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(245,47,47,0.25);
}
.projects-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media (max-width: 900px) {
  .projects-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.project-portfolio-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  background: #111;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-portfolio-item:hover {
  transform: translateY(-8px);
}
.project-portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-portfolio-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}
.project-overlay-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: #fff;
  opacity: 0.95;
}
.project-overlay-info .proj-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 4px;
}
.project-overlay-info h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}
.project-overlay-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* ================= CONTACT US PAGE ================= */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: -40px auto 60px;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  border: 1px solid #ededed;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.1);
}
.contact-info-card .c-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #fff1f1;
  color: var(--red);
  font-size: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.contact-info-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.contact-info-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  padding-bottom: 80px;
}
@media (max-width: 900px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}
.map-card-wrapper {
  background: #fdfdfd;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.04);
}
.map-card-wrapper h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.map-card-wrapper p {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
}
.service-areas-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}
.area-badge {
  background: #f2f3f3;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  color: #444;
}
.map-embed {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: 0;
}



/* ==========================================================================
   WORDPRESS CORE & ADMIN BAR FIXES
   ========================================================================== */
body.admin-bar header,
body.admin-bar header.site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar header,
  body.admin-bar header.site-header {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar header,
  body.admin-bar header.site-header {
    top: 0;
  }
}

/* Base button and card utilities guaranteed globally */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  border: 0 !important;
  cursor: pointer !important;
  border-radius: 999px !important;
  padding: 13px 24px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  box-sizing: border-box !important;
}
.btn-red {
  background: var(--red) !important;
  color: #fff !important;
}
.btn-red:hover {
  background: #d92020 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(245,47,47,.28) !important;
  color: #fff !important;
}
.btn-dark {
  background: #171717 !important;
  color: #fff !important;
}
.btn-dark:hover {
  background: #000 !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.btn-outline {
  border: 1px solid #222 !important;
  background: transparent !important;
  color: #111 !important;
}
.btn-outline:hover {
  background: #111 !important;
  color: #fff !important;
}
.btn-sm {
  padding: 9px 18px !important;
  font-size: 11px !important;
}
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0 50px;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    margin: 30px 0 40px;
  }
}
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  border-color: rgba(245,47,47,0.3);
}
.contact-info-card .c-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #fff1f1;
  color: #f52f2f;
  font-size: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.contact-info-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}
.contact-info-card p {
  font-size: 13.5px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}



/* ==========================================================================
   PREMIUM TOPBAR, HEADER & RESPONSIVE NAVIGATION SYSTEM
   ========================================================================== */

/* --- 1. TOP CONTACT BAR --- */
.top-contact-bar {
  width: 100%;
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  position: relative;
  z-index: 10001;
}

.top-contact-inner {
  width: min(1200px, calc(100% - 40px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
  box-sizing: border-box;
}

.top-contact-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.top-contact-left a,
.top-location {
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s ease;
}

.top-contact-left a:hover {
  color: #f52f2f !important;
}

.top-contact-left i,
.top-location i {
  color: #f52f2f !important;
  font-size: 12.5px;
}

.top-contact-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact-right a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
}

.top-contact-right a i {
  color: #ffffff !important;
  font-size: 11.5px;
}

.top-contact-right a:hover {
  background: #f52f2f !important;
  transform: translateY(-2px);
}

.top-contact-right a:hover i {
  color: #ffffff !important;
}

/* --- 2. MAIN HEADER & NAV --- */
header,
header.site-header {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 84px !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08) !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

/* Admin Bar Offset for Sticky Header */
body.admin-bar header,
body.admin-bar header.site-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar header,
  body.admin-bar header.site-header {
    top: 46px !important;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar header,
  body.admin-bar header.site-header {
    top: 0 !important;
  }
}

/* Nav Container */
.container.nav,
.nav {
  width: min(1200px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  box-sizing: border-box;
}

/* Logo */
.logo,
.site-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 100%;
  flex-shrink: 0;
}

.brand-logo,
.custom-logo {
  height: 50px !important;
  max-height: 54px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.25s ease !important;
}

.logo:hover .brand-logo,
.site-logo a:hover .custom-logo {
  transform: scale(1.02);
}

/* Nav Links - Desktop */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .nav-item,
.primary-menu-list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #171717;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
  padding: 0 4px;
  white-space: nowrap;
}

.nav-links .nav-item::after,
.primary-menu-list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: #f52f2f;
  transition: width 0.25s ease;
}

.nav-links .nav-item:hover,
.nav-links .nav-item.active,
.primary-menu-list > li:hover > a,
.primary-menu-list > li.current-menu-item > a {
  color: #f52f2f;
}

.nav-links .nav-item:hover::after,
.nav-links .nav-item.active::after,
.primary-menu-list > li:hover > a::after,
.primary-menu-list > li.current-menu-item > a::after {
  width: 100%;
}

/* --- SERVICES DROPDOWN (DESKTOP) --- */
.nav-dropdown-wrapper,
.primary-menu-list > li.menu-item-has-children {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown-trigger {
  cursor: pointer;
}

.nav-chevron {
  font-size: 10.5px;
  margin-left: 6px;
  color: #888888;
  transition: transform 0.25s ease, color 0.25s ease;
}

.nav-dropdown-wrapper:hover .nav-chevron,
.primary-menu-list > li.menu-item-has-children:hover .nav-chevron {
  transform: rotate(180deg);
  color: #f52f2f;
}

.nav-dropdown,
.primary-menu-list .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 320px;
  background: #ffffff;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100000;
  list-style: none;
  margin: 0;
}

.nav-dropdown::before,
.primary-menu-list .sub-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
}

.nav-dropdown-wrapper:hover .nav-dropdown,
.nav-dropdown-wrapper:focus-within .nav-dropdown,
.primary-menu-list > li.menu-item-has-children:hover > .sub-menu,
.primary-menu-list > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown-link,
.primary-menu-list .sub-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 9px 12px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: #171717 !important;
  transition: all 0.2s ease !important;
  background: transparent !important;
  height: auto !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

.dropdown-link:hover,
.dropdown-link.active,
.primary-menu-list .sub-menu li a:hover {
  background: #fff3f3 !important;
  transform: translateX(3px) !important;
}

.dropdown-link::after,
.primary-menu-list .sub-menu li a::after {
  display: none !important;
}

.dropdown-icon,
.primary-menu-list .sub-menu li a i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f6f6f6;
  color: #f52f2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-link:hover .dropdown-icon,
.primary-menu-list .sub-menu li a:hover i {
  background: #f52f2f;
  color: #ffffff !important;
}

.dropdown-details {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dropdown-details strong,
.primary-menu-list .sub-menu li a span {
  font-size: 13.5px;
  font-weight: 750;
  color: #171717;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.dropdown-details small {
  font-size: 11px;
  font-weight: 500;
  color: #777777;
  margin-top: 2px;
  line-height: 1.2;
}

.dropdown-link:hover .dropdown-details strong,
.dropdown-link.active .dropdown-details strong,
.primary-menu-list .sub-menu li a:hover span {
  color: #f52f2f;
}

.dropdown-sep {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 6px;
}

/* Header Action Button */
.header-quote-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border: 0 !important;
  cursor: pointer !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background: #f52f2f !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 20px rgba(245, 47, 47, 0.25) !important;
  flex-shrink: 0 !important;
}

.header-quote-btn:hover {
  background: #d92020 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(245, 47, 47, 0.35) !important;
  color: #ffffff !important;
}

.header-quote-btn i {
  color: #ffffff !important;
  font-size: 11px !important;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #ffffff;
  color: #171717;
  font-size: 19px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* --- 3. RESPONSIVE BREAKPOINTS --- */

/* Tablet & Mobile Screens (< 992px) */
@media (max-width: 991px) {
  header,
  header.site-header {
    height: 74px !important;
  }
  .container.nav,
  .nav {
    height: 74px;
    width: calc(100% - 32px);
  }
  .brand-logo,
  .custom-logo {
    height: 44px !important;
    max-height: 46px !important;
  }
  .menu-toggle {
    display: inline-flex !important;
  }
  .top-contact-left {
    gap: 14px;
  }
  .top-location {
    display: none;
  }
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Small Mobile Screens (< 600px) */
@media (max-width: 600px) {
  .top-contact-inner {
    width: calc(100% - 24px);
    min-height: 36px;
    gap: 8px;
  }
  .top-contact-left {
    gap: 0;
  }
  .top-contact-email,
  .top-location {
    display: none !important;
  }
  .top-contact-left a {
    font-size: 11.5px;
  }
  .top-contact-right a {
    width: 26px;
    height: 26px;
  }
  .top-contact-right a i {
    font-size: 11px;
  }
  .header-quote-btn {
    padding: 9px 15px !important;
    font-size: 10.5px !important;
  }
  .brand-logo,
  .custom-logo {
    height: 38px !important;
    max-height: 40px !important;
  }
}

/* --- 4. SERVICES & INNER PAGES RESPONSIVENESS --- */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

@media (max-width: 991px) {
  .service-detail-section {
    padding: 55px 0;
  }
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .service-sidebar {
    position: static !important;
    top: auto !important;
  }
  .services-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
  }
  .page-header-banner h1 {
    font-size: 32px !important;
  }
}

@media (max-width: 768px) {
  .page-header-banner {
    padding: 45px 0 35px !important;
  }
  .page-header-banner h1 {
    font-size: 26px !important;
    line-height: 1.25 !important;
  }
  .page-header-banner p {
    font-size: 14.5px !important;
  }
  .service-detail-section {
    padding: 35px 0 !important;
  }
  .service-hero-image {
    height: 240px !important;
    border-radius: 16px !important;
    margin-bottom: 22px !important;
  }
  .service-detail-main h2 {
    font-size: 23px !important;
    line-height: 1.3 !important;
  }
  .service-detail-main h3 {
    font-size: 19px !important;
  }
  .service-features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .services-page-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .paint-swatches {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .paint-swatches span {
    padding: 6px 12px !important;
    font-size: 12px !important;
    border-radius: 6px !important;
  }
  .sidebar-widget {
    padding: 20px !important;
    border-radius: 16px !important;
  }
  .faq-question {
    padding: 16px !important;
    font-size: 15px !important;
  }
  .big-form {
    grid-template-columns: 1fr !important;
  }
  .big-form .field.full,
  .big-form .field {
    grid-column: span 1 !important;
  }
}

@media (max-width: 480px) {
  .page-header-banner h1 {
    font-size: 22px !important;
  }
  .service-hero-image {
    height: 200px !important;
  }
  .craft-card {
    padding: 18px !important;
  }
  .sidebar-service-link {
    padding: 12px 14px !important;
    font-size: 13.5px !important;
  }
}

/* ==========================================================================
   COLORFUL PAINTING HOVER EFFECTS FOR ALL BUTTONS & ACTIONS
   ========================================================================== */

@keyframes paintRainbowFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Base button hover transitions */
.btn,
.nav > .btn,
.header-quote-btn,
.hero-actions .btn,
.hero-form .btn,
.contact-form .btn,
.final-cta .btn,
.footer-cta .btn,
.filter-btn,
button.btn,
a.btn,
input[type="submit"].btn,
.topBtn,
#topBtn {
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Hide or synchronize pseudo elements so rainbow background shines through cleanly */
.btn:hover::before,
.btn-red:hover::before,
.btn-light:hover::before,
.btn-outline:hover::before,
.nav > .btn:hover::before {
  opacity: 0 !important;
  visibility: hidden !important;
}

/* Colorful Rainbow Spectrum on Hover */
.btn:hover,
.btn-red:hover,
.btn-outline:hover,
.btn-dark:hover,
.btn-light:hover,
.nav > .btn:hover,
.header-quote-btn:hover,
.hero-form .btn:hover,
.contact-form .btn:hover,
.final-cta .btn:hover,
.footer-cta .btn:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover {
  background: linear-gradient(120deg, #ff0055 0%, #ff5500 18%, #ffaa00 36%, #00cc66 54%, #0099ff 72%, #7928ca 90%, #ff0055 100%) !important;
  background-size: 260% 260% !important;
  animation: paintRainbowFlow 3s linear infinite !important;
  color: #ffffff !important;
  border-color: transparent !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 10px 26px rgba(255, 0, 85, 0.4), 0 4px 18px rgba(0, 153, 255, 0.35), 0 0 20px rgba(255, 170, 0, 0.25) !important;
}

/* Ensure icons and text inside buttons stay white and animate on hover */
.btn:hover i,
.btn:hover span,
.nav > .btn:hover i,
.header-quote-btn:hover i,
.hero-form .btn:hover i,
.contact-form .btn:hover i {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.btn:hover i.fa-arrow-right,
.nav > .btn:hover i.fa-arrow-right {
  transform: translateX(4px) !important;
}

/* Secondary Interactive Buttons & Floating Actions */
#topBtn:hover {
  background: linear-gradient(135deg, #ff0055, #ff5500, #ffaa00, #0099ff) !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(255, 0, 85, 0.45) !important;
  transform: translateY(-4px) scale(1.08) !important;
}

.hero-slider-btn:hover,
.slider-arrow:hover {
  background: linear-gradient(135deg, #ff0055 0%, #ffaa00 50%, #0099ff 100%) !important;
  border-color: transparent !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(255, 0, 85, 0.35) !important;
  transform: scale(1.1) !important;
}

.hero-slider-btn:hover i,
.slider-arrow:hover i {
  color: #ffffff !important;
}

/* Project Filter Buttons */
.filter-btn:hover {
  background: linear-gradient(120deg, #ff0055, #ff5500, #0099ff) !important;
  color: #ffffff !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(255, 0, 85, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Service Card Links & Read More */
.service-read-more:hover,
.service-link:hover {
  background: linear-gradient(120deg, #ff0055 0%, #ff5500 30%, #0099ff 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   HOMEPAGE ENHANCED DESIGN & MODERN POLISH
   ========================================================================== */

/* Hero Modern Elements */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-badge i {
  color: #ff4545;
  font-size: 12px;
}

.hero-form {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 32px 30px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.hero-form-header {
  margin-bottom: 18px;
}

.form-badge {
  display: inline-block;
  background: rgba(245, 47, 47, 0.08);
  color: #f52f2f;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.hero-form-header h3 {
  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  color: #111827 !important;
  margin: 0 !important;
}

/* Feature Showcase / Why Choose Us */
.feature-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 480px;
}

.feature-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.feature-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.feature-floating-badge i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f52f2f, #ff6b55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-floating-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

.feature-floating-badge span {
  font-size: 12px;
  color: #6b7280;
  font-weight: 500;
}

.feature-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 32px;
}

.point-card {
  display: flex;
  gap: 14px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.point-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 47, 47, 0.08);
  color: #f52f2f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.point-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px;
}

.point-card p {
  font-size: 12px;
  line-height: 1.45;
  color: #6b7280;
  margin: 0;
}

.feature-actions-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* Portfolio Project Cards */
.project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 270px;
  background: #111827;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1), filter 0.55s ease;
}

.project-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.4) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  transition: opacity 0.35s ease;
}

.project-category {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 47, 47, 0.9);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.project-overlay h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 5px;
  line-height: 1.3;
}

.project-location {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-location i {
  color: #ff6b55;
  font-size: 10px;
}

/* Contact Media Container */
.contact-media-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 540px;
}

.contact-media-wrap .contact-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.contact-photo-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.contact-trust-pill {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  font-weight: 700;
  color: #111827;
}

.contact-trust-pill i {
  color: #00c853;
  font-size: 16px;
}

@media (max-width: 992px) {
  .feature-points-grid {
    grid-template-columns: 1fr;
  }
  .feature-image-container,
  .contact-media-wrap {
    min-height: 380px;
  }
}

@media (max-width: 600px) {
  .feature-actions-row {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-actions-row .btn {
    width: 100%;
  }
  .project-card {
    height: 230px;
  }
}

/* ==========================================================================
   CLEAN, BIG, COOL HEADER & TOPBAR STYLING
   ========================================================================== */

/* Topbar */
.top-contact-bar {
  background: #111827 !important;
  color: #ffffff !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  position: relative !important;
  z-index: 10000 !important;
}

.top-contact-inner {
  width: min(1340px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.top-contact-left {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
}

.top-contact-left a,
.top-contact-left span {
  color: #d1d5db !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  font-size: 12.5px !important;
  transition: color 0.2s ease !important;
}

.top-contact-left a:hover {
  color: #ffffff !important;
}

.top-contact-left i {
  color: #f52f2f !important;
  font-size: 12px !important;
}

.top-contact-right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.top-contact-right a {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  text-decoration: none !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
}

.top-contact-right a:hover {
  background: #f52f2f !important;
  transform: translateY(-1px) !important;
}

/* Big, Clean, Cool Header */
header.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  width: 100% !important;
  height: 96px !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.3s ease !important;
}

header.site-header .nav {
  width: min(1340px, calc(100% - 48px)) !important;
  max-width: 1340px !important;
  height: 96px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
  position: relative !important;
}

/* Logo */
.logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.brand-logo,
.custom-logo {
  height: 58px !important;
  max-height: 62px !important;
  max-width: 240px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  transition: transform 0.25s ease !important;
}

.logo:hover .brand-logo,
.site-logo a:hover .custom-logo {
  transform: scale(1.02) !important;
}

/* Navigation Links - Boxed Hover & Active States */
.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  height: 100% !important;
}

.nav-links .nav-item,
.primary-menu-list > li > a {
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 900 !important;
  font-variation-settings: 'wght' 1000, 'opsz' 40 !important;
  -webkit-text-stroke: 0.35px currentColor !important;
  text-transform: uppercase !important;
  letter-spacing: 0.055em !important;
  color: #000000 !important;
  text-decoration: none !important;
  position: relative !important;
  padding: 10px 18px !important;
  border-radius: 999px !important;
  background: transparent !important;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1) !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.nav-links .nav-item::after,
.nav-links a::after {
  display: none !important;
}

/* Boxed Hover State */
.nav-links .nav-item:hover,
.nav-dropdown-wrapper:hover > .nav-item {
  background: #f52f2f !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(245, 47, 47, 0.28) !important;
}

.nav-links .nav-item:hover .nav-chevron,
.nav-dropdown-wrapper:hover > .nav-item .nav-chevron {
  color: #ffffff !important;
}

/* Boxed Active State */
.nav-links .nav-item.active,
.nav-dropdown-wrapper.active > .nav-item {
  background: #f52f2f !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(245, 47, 47, 0.28) !important;
}

.nav-links .nav-item.active .nav-chevron,
.nav-dropdown-wrapper.active > .nav-item .nav-chevron {
  color: #ffffff !important;
}

.nav-chevron {
  font-size: 11px !important;
  margin-left: 6px !important;
  transition: transform 0.25s ease, color 0.25s ease !important;
  color: inherit !important;
}

.nav-dropdown-wrapper:hover .nav-chevron {
  transform: rotate(180deg) !important;
}

/* Dropdown Menu */
.nav-dropdown-wrapper {
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.nav-dropdown {
  position: absolute !important;
  top: 86px !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(10px) !important;
  width: 320px !important;
  background: #ffffff !important;
  border-radius: 18px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  padding: 12px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  z-index: 1000 !important;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateX(-50%) translateY(0) !important;
}

.dropdown-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: #1f2937 !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.dropdown-link:hover {
  background: #fdf2f2 !important;
  color: #f52f2f !important;
  transform: translateX(4px) !important;
}

.dropdown-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 10px !important;
  background: rgba(245, 47, 47, 0.08) !important;
  color: #f52f2f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  flex-shrink: 0 !important;
}

.dropdown-details strong {
  display: block !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
}

.dropdown-details small {
  display: block !important;
  font-size: 11px !important;
  color: #6b7280 !important;
  margin-top: 1px !important;
}

/* Header CTA Button - Cool Pill with Diagonal Arrow Circle */
.header-cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  background: linear-gradient(135deg, #ff2a5f 0%, #ff5238 50%, #ff7b2b 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  padding: 6px 8px 6px 24px !important;
  height: 52px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 8px 24px rgba(255, 42, 95, 0.28) !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  white-space: nowrap !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

.header-cta-btn .btn-text {
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
}

.header-cta-btn .btn-icon-circle {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(4px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease !important;
}

.header-cta-btn .btn-icon-circle i {
  transform: rotate(-45deg) !important;
  transition: transform 0.35s ease !important;
  color: #ffffff !important;
}

.header-cta-btn:hover {
  background: linear-gradient(120deg, #ff0055 0%, #ff5500 20%, #ffaa00 40%, #00cc66 60%, #0099ff 80%, #7928ca 100%) !important;
  background-size: 260% 260% !important;
  animation: paintRainbowFlow 3s linear infinite !important;
  color: #ffffff !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 12px 28px rgba(255, 42, 95, 0.4), 0 4px 15px rgba(0, 153, 255, 0.3) !important;
}

.header-cta-btn:hover .btn-icon-circle {
  background: rgba(255, 255, 255, 0.35) !important;
  border-color: #ffffff !important;
  transform: scale(1.06) !important;
}

.header-cta-btn:hover .btn-icon-circle i {
  transform: rotate(-45deg) translate(2px, -2px) !important;
}

/* Mobile Header */
@media (max-width: 992px) {
  header.site-header {
    height: 76px !important;
  }
  header.site-header .nav {
    height: 76px !important;
    width: calc(100% - 32px) !important;
  }
  .brand-logo,
  .custom-logo {
    height: 46px !important;
    max-height: 48px !important;
  }
  .header-cta-btn {
    display: none !important;
  }
  .top-contact-email,
  .top-location {
    display: none !important;
  }
}

/* ==========================================================================
   CLEAN & ELEGANT HERO SECTION
   ========================================================================== */

.hero {
  position: relative !important;
  min-height: 720px !important;
  display: flex !important;
  align-items: center !important;
  padding: 80px 0 70px !important;
  overflow: hidden !important;
  background: #0f172a !important;
}

.hero:before,
.hero:after {
  display: none !important;
}

.hero-slides::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.55) 45%, rgba(15, 23, 42, 0.15) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.hero-inner {
  width: min(1340px, calc(100% - 48px)) !important;
  max-width: 1340px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.88fr) !important;
  gap: 54px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 5 !important;
  margin: 0 auto !important;
}

/* Hero Left Content */
.hero-pretitle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.pretitle-line {
  width: 36px !important;
  height: 2.5px !important;
  background: #f52f2f !important;
  border-radius: 99px !important;
  display: inline-block !important;
}

.hero-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(32px, 3.8vw, 48px) !important;
  font-weight: 900 !important;
  line-height: 1.15 !important;
  color: #ffffff !important;
  letter-spacing: -0.025em !important;
  margin: 0 0 18px !important;
}

.hero-title .line-1,
.hero-title .line-2 {
  display: block !important;
  color: #ffffff !important;
}

@media (min-width: 768px) {
  .hero-title .line-1,
  .hero-title .line-2 {
    white-space: nowrap !important;
  }
}

.hero-highlight-red {
  color: #f52f2f !important;
  display: inline !important;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 16.5px !important;
  line-height: 1.65 !important;
  max-width: 540px !important;
  margin: 0 0 32px !important;
  font-weight: 400 !important;
}

.hero-actions {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-bottom: 36px !important;
}

.hero-btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  background: linear-gradient(135deg, #f52f2f 0%, #d91818 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  padding: 6px 8px 6px 26px !important;
  height: 52px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 10px 26px rgba(245, 47, 47, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1) !important;
  white-space: nowrap !important;
}

.hero-btn-primary .btn-arrow-circle {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.75) !important;
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(4px) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
}

.hero-btn-primary .btn-arrow-circle i {
  transform: rotate(-45deg) !important;
  color: #ffffff !important;
}

.hero-btn-primary:hover {
  background: linear-gradient(120deg, #ff0055 0%, #ff5500 20%, #ffaa00 40%, #00cc66 60%, #0099ff 80%, #7928ca 100%) !important;
  background-size: 260% 260% !important;
  animation: paintRainbowFlow 3s linear infinite !important;
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 14px 30px rgba(255, 0, 85, 0.45) !important;
}

.hero-btn-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(17, 24, 39, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  padding: 0 24px !important;
  height: 52px !important;
  font-size: 14.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.hero-btn-phone i {
  color: #f52f2f !important;
  font-size: 14px !important;
}

.hero-btn-phone:hover {
  background: #111827 !important;
  border-color: #f52f2f !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px rgba(245, 47, 47, 0.25) !important;
}

/* Trust Badges */
.hero-trust-badges {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: rgba(15, 23, 42, 0.6) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 16px !important;
  padding: 12px 20px !important;
}

.trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  color: #ffffff !important;
}

.trust-item strong {
  font-size: 12.5px !important;
  font-weight: 700 !important;
  display: block !important;
  line-height: 1.2 !important;
}

.trust-item small {
  font-size: 10.5px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  display: block !important;
}

.trust-divider {
  width: 1px !important;
  height: 26px !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Hero Right Card Form */
.hero-card-form {
  background: rgba(18, 18, 24, 0.82) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-radius: 24px !important;
  border: 1.5px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(255, 42, 95, 0.14) !important;
  padding: 34px 30px !important;
  position: relative !important;
  z-index: 10 !important;
}

.hero-card-form .form-title-wrap h3 {
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-align: center !important;
  margin: 0 0 22px !important;
  letter-spacing: -0.01em !important;
}

.hero-form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  margin-bottom: 12px !important;
}

.hero-form-group {
  margin-bottom: 12px !important;
}

.hero-form-group.full-width {
  width: 100% !important;
}

.hero-booking-form input,
.hero-booking-form select,
.hero-booking-form textarea {
  width: 100% !important;
  background: #ffffff !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 13.5px !important;
  font-family: inherit !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.hero-booking-form input::placeholder,
.hero-booking-form textarea::placeholder {
  color: #6b7280 !important;
}

.hero-booking-form input:focus,
.hero-booking-form select:focus,
.hero-booking-form textarea:focus {
  border-color: #ff5238 !important;
  box-shadow: 0 0 0 3px rgba(255, 82, 56, 0.25) !important;
}

.hero-submit-btn {
  width: 100% !important;
  height: 52px !important;
  background: linear-gradient(135deg, #f52f2f 0%, #d91818 100%) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 6px !important;
  box-shadow: 0 10px 25px rgba(245, 47, 47, 0.35) !important;
  transition: all 0.3s ease !important;
}

.hero-submit-btn:hover {
  background: linear-gradient(120deg, #ff0055 0%, #ff5500 20%, #ffaa00 40%, #00cc66 60%, #0099ff 80%, #7928ca 100%) !important;
  background-size: 260% 260% !important;
  animation: paintRainbowFlow 3s linear infinite !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(255, 0, 85, 0.4) !important;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 992px) {
  .hero {
    min-height: auto !important;
    padding: 50px 0 60px !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .hero-title {
    font-size: 38px !important;
  }
  .hero-form-row {
    grid-template-columns: 1fr !important;
  }
  .hero-trust-badges {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 30px !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .hero-btn-primary,
  .hero-btn-phone {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-card-form {
    padding: 24px 20px !important;
  }
}

/* ==========================================================================
   MODERN & CLEAN SERVICES SECTION
   ========================================================================== */

.services-modern-section {
  padding: 100px 0 90px !important;
  background: #f8fafc !important;
  position: relative !important;
}

.services-header-wrap {
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
  gap: 48px !important;
  align-items: flex-end !important;
  margin-bottom: 56px !important;
}

.section-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(245, 47, 47, 0.08) !important;
  color: #f52f2f !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  margin-bottom: 16px !important;
}

.badge-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #f52f2f !important;
  box-shadow: 0 0 10px rgba(245, 47, 47, 0.6) !important;
}

.section-main-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: clamp(30px, 3.2vw, 42px) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  color: #0f172a !important;
  letter-spacing: -0.02em !important;
  margin: 0 !important;
}

.text-accent-red {
  color: #f52f2f !important;
}

.section-subtitle {
  font-size: 15.5px !important;
  line-height: 1.65 !important;
  color: #475569 !important;
  margin: 0 0 20px !important;
}

.services-header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
}

.services-header-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #f52f2f !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.services-header-cta:hover {
  color: #d91818 !important;
  transform: translateX(4px) !important;
}

.services-slider-nav-btns {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.services-slider-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1.5px solid #cbd5e1 !important;
  background: #ffffff !important;
  color: #0f172a !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 14px !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05) !important;
}

.services-slider-btn:hover {
  background: #f52f2f !important;
  border-color: #f52f2f !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(245, 47, 47, 0.35) !important;
}

/* Services 3-at-a-time Slider */
.services-slider-wrapper {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  margin: 0 -4px !important;
  padding: 0 4px !important;
}

.services-slider-track {
  display: flex !important;
  gap: 28px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch !important;
  scrollbar-width: none !important;
  padding: 14px 4px 28px !important;
  cursor: grab !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.services-slider-track::-webkit-scrollbar {
  display: none !important;
}

.services-slider-track.is-dragging {
  cursor: grabbing !important;
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

.services-slider-track.is-dragging * {
  cursor: grabbing !important;
}

.services-slider-track img {
  pointer-events: none !important;
  -webkit-user-drag: none !important;
  user-select: none !important;
}

/* Exactly 3 cards at a time on desktop */
.services-slider-track .service-box-card {
  flex: 0 0 calc((100% - (28px * 2)) / 3) !important;
  min-width: calc((100% - (28px * 2)) / 3) !important;
  max-width: calc((100% - (28px * 2)) / 3) !important;
  scroll-snap-align: start !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  border: 1px solid #e2e8f0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

.service-box-card:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 47, 47, 0.35) !important;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.1) !important;
}

.service-box-media {
  position: relative !important;
  height: 220px !important;
  overflow: hidden !important;
  background: #0f172a !important;
}

.service-box-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  display: block !important;
}

.service-box-card:hover .service-box-img {
  transform: scale(1.08) !important;
}

.service-box-num {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 2 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 800 !important;
  font-size: 12px !important;
  letter-spacing: 0.04em !important;
  color: #ffffff !important;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 4px 11px !important;
  border-radius: 999px !important;
}

.service-box-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(15, 23, 42, 0.35) 100%) !important;
  pointer-events: none !important;
}

.service-box-body {
  padding: 24px 24px 26px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.service-box-icon-wrap {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(245, 47, 47, 0.08) !important;
  color: #f52f2f !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
  transition: all 0.3s ease !important;
}

.service-box-card:hover .service-box-icon-wrap {
  background: #f52f2f !important;
  color: #ffffff !important;
  transform: scale(1.05) !important;
}

.service-box-title {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.service-box-title a {
  color: #0f172a !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.service-box-card:hover .service-box-title a {
  color: #f52f2f !important;
}

.service-box-text {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #64748b !important;
  margin: 0 0 20px !important;
  flex-grow: 1 !important;
}

.service-box-footer {
  padding-top: 16px !important;
  border-top: 1px solid #f1f5f9 !important;
}

.service-box-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #0f172a !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.service-box-btn .btn-arrow-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  color: #0f172a !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
  transition: all 0.25s ease !important;
}

.service-box-card:hover .service-box-btn {
  color: #f52f2f !important;
}

.service-box-card:hover .service-box-btn .btn-arrow-icon {
  background: #f52f2f !important;
  color: #ffffff !important;
  transform: translateX(3px) !important;
}

/* Bottom Feature Banner */
.services-bottom-banner {
  margin-top: 50px !important;
  background: #0f172a !important;
  border-radius: 20px !important;
  padding: 32px 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 28px !important;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.16) !important;
}

.banner-content {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.banner-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: rgba(245, 47, 47, 0.15) !important;
  border: 1px solid rgba(245, 47, 47, 0.3) !important;
  color: #f52f2f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  flex-shrink: 0 !important;
}

.banner-content h4 {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 4px !important;
}

.banner-content p {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 0 !important;
}

.banner-actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-shrink: 0 !important;
}

.banner-phone-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  padding: 11px 20px !important;
  border-radius: 999px !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.banner-phone-btn:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  color: #ffffff !important;
}

.banner-quote-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: #f52f2f !important;
  color: #ffffff !important;
  padding: 11px 22px !important;
  border-radius: 999px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(245, 47, 47, 0.35) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
}

.banner-quote-btn:hover {
  background: #d91818 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(245, 47, 47, 0.45) !important;
}

/* Responsive adjustments for Services Section */
@media (max-width: 1024px) {
  .services-header-wrap {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }
  .services-slider-track {
    gap: 20px !important;
  }
  .services-slider-track .service-box-card {
    flex: 0 0 calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
    max-width: calc((100% - 20px) / 2) !important;
  }
  .services-bottom-banner {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 26px !important;
  }
  .banner-actions {
    width: 100% !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 680px) {
  .services-modern-section {
    padding: 60px 0 70px !important;
  }
  .services-slider-track .service-box-card {
    flex: 0 0 86% !important;
    min-width: 86% !important;
    max-width: 86% !important;
  }
  .services-header-actions {
    width: 100% !important;
  }
  .banner-content {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .banner-actions {
    flex-direction: column !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   Clean Image Lightbox Gallery
   ========================================================================== */
.clean-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-top: 10px !important;
}

.gallery-item-card {
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #0f172a !important;
  cursor: pointer !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease !important;
}

.gallery-item-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18) !important;
}

.gallery-img-wrapper {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  display: flex !important;
}

.gallery-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-item-card:hover .gallery-thumb-img {
  transform: scale(1.08) !important;
}

.gallery-hover-icon {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(15, 23, 42, 0.38) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.gallery-hover-icon i {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #f52f2f !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  transform: scale(0.7) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
  box-shadow: 0 8px 22px rgba(245, 47, 47, 0.5) !important;
}

.gallery-item-card:hover .gallery-hover-icon {
  opacity: 1 !important;
}

.gallery-item-card:hover .gallery-hover-icon i {
  transform: scale(1) !important;
}

/* Lightbox Modal System */
.smooth-lightbox-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.smooth-lightbox-modal.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.smooth-lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(8, 12, 20, 0.94) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  cursor: pointer !important;
}

.smooth-lightbox-container {
  position: relative !important;
  z-index: 10 !important;
  width: 90vw !important;
  max-width: 1100px !important;
  height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.smooth-lightbox-topbar {
  position: absolute !important;
  top: 15px !important;
  left: 20px !important;
  right: 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  z-index: 20 !important;
  pointer-events: auto !important;
}

.smooth-lightbox-counter {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 6px 16px !important;
  border-radius: 30px !important;
  backdrop-filter: blur(8px) !important;
}

.smooth-lightbox-close {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  font-size: 20px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  backdrop-filter: blur(8px) !important;
}

.smooth-lightbox-close:hover {
  background: #f52f2f !important;
  border-color: #f52f2f !important;
  transform: rotate(90deg) scale(1.08) !important;
}

.smooth-lightbox-figure {
  max-width: 100% !important;
  max-height: 80vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
  position: relative !important;
}

.smooth-lightbox-img {
  max-width: 100% !important;
  max-height: 78vh !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7) !important;
  transform: scale(0.96) !important;
  opacity: 0 !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
}

.smooth-lightbox-img.is-loaded {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.smooth-lightbox-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.25s ease !important;
  z-index: 20 !important;
  pointer-events: auto !important;
  backdrop-filter: blur(8px) !important;
}

.smooth-lightbox-nav.prev {
  left: -20px !important;
}

.smooth-lightbox-nav.next {
  right: -20px !important;
}

.smooth-lightbox-nav:hover {
  background: #f52f2f !important;
  border-color: #f52f2f !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 24px rgba(245, 47, 47, 0.45) !important;
}

@media (max-width: 1024px) {
  .clean-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
  .smooth-lightbox-nav.prev {
    left: 10px !important;
  }
  .smooth-lightbox-nav.next {
    right: 10px !important;
  }
}

@media (max-width: 680px) {
  .clean-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
  .gallery-item-card {
    border-radius: 12px !important;
  }
  .smooth-lightbox-nav {
    width: 42px !important;
    height: 42px !important;
    font-size: 15px !important;
  }
  .smooth-lightbox-nav.prev {
    left: 8px !important;
  }
  .smooth-lightbox-nav.next {
    right: 8px !important;
  }
}

/* ==========================================================================
   Modern How It Works / Steps Grid
   ========================================================================== */
.modern-steps-grid {
  display: flex !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-top: 15px !important;
}

.step-card-modern {
  flex: 1 1 0 !important;
  background: #ffffff !important;
  border: 1px solid #e8ecf1 !important;
  border-radius: 24px !important;
  padding: 44px 28px 36px !important;
  text-align: center !important;
  position: relative !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.step-card-modern:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(245, 47, 47, 0.35) !important;
  box-shadow: 0 20px 45px rgba(245, 47, 47, 0.12) !important;
}

.step-badge-number {
  position: absolute !important;
  top: 18px !important;
  left: 20px !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #f52f2f !important;
  background: rgba(245, 47, 47, 0.08) !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
}

.step-icon-modern {
  width: 76px !important;
  height: 76px !important;
  margin: 10px auto 22px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #f52f2f, #ff6550) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 26px !important;
  box-shadow: 0 10px 25px rgba(245, 47, 47, 0.35) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.step-card-modern:hover .step-icon-modern {
  transform: scale(1.1) rotate(6deg) !important;
  box-shadow: 0 14px 30px rgba(245, 47, 47, 0.45) !important;
}

.step-title-modern {
  font-size: 21px !important;
  font-weight: 800 !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #0f172a !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.02em !important;
}

.step-desc-modern {
  font-size: 14.5px !important;
  color: #64748b !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  max-width: 280px !important;
}

.step-arrow-connector {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #cbd5e1 !important;
  font-size: 20px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 900px) {
  .modern-steps-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .step-card-modern {
    width: 100% !important;
    padding: 38px 24px 30px !important;
  }
  .step-arrow-connector {
    transform: rotate(90deg) !important;
    margin: 4px 0 !important;
  }
  .step-desc-modern {
    max-width: 100% !important;
  }
}

.service-box-num,
.step-badge-number {
  display: none !important;
}

/* ==========================================================================
   Comprehensive Global Responsiveness Suite
   ========================================================================== */

/* 1. Global Reset & Overflow Protection */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

*, *::before, *::after {
  box-sizing: border-box !important;
}

img, video, iframe {
  max-width: 100% !important;
  height: auto !important;
}

/* 2. Header & Mobile Menu (<= 991px) */
@media (max-width: 991px) {
  .top-contact-bar {
    padding: 8px 0 !important;
    font-size: 12px !important;
  }
  .top-contact-inner {
    padding: 0 16px !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    gap: 8px !important;
  }
  .top-contact-left {
    gap: 12px !important;
  }
  .top-contact-left .top-location {
    display: none !important;
  }

  .site-header {
    height: 72px !important;
  }
  .site-header .nav {
    height: 72px !important;
    padding: 0 16px !important;
    justify-content: space-between !important;
  }
  .brand-logo {
    max-height: 46px !important;
    width: auto !important;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 18px !important;
    cursor: pointer !important;
    z-index: 10001 !important;
    transition: background 0.25s ease !important;
  }
  .menu-toggle:hover {
    background: #f52f2f !important;
  }

  .nav-links {
    position: fixed !important;
    top: 72px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 72px) !important;
    background: rgba(8, 12, 20, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 30px 24px !important;
    gap: 16px !important;
    overflow-y: auto !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
  }
  .nav-links.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .nav-links .nav-item {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .nav-links .nav-item.active,
  .nav-links .nav-item:hover {
    color: #f52f2f !important;
  }

  .nav-dropdown-wrapper {
    width: 100% !important;
  }
  .nav-dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-radius: 14px !important;
    padding: 10px !important;
    margin-top: 8px !important;
    display: none !important;
    width: 100% !important;
  }
  .nav-dropdown-wrapper.is-expanded .nav-dropdown {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .dropdown-link {
    padding: 10px 14px !important;
    border-radius: 10px !important;
    color: #cbd5e1 !important;
  }
  .dropdown-link strong {
    color: #ffffff !important;
    font-size: 14px !important;
  }
  .dropdown-link small {
    color: #94a3b8 !important;
  }
  .dropdown-link:hover {
    background: rgba(245, 47, 47, 0.15) !important;
  }

  .header-cta-btn {
    padding: 0 16px !important;
    height: 42px !important;
    font-size: 12px !important;
  }
}

/* 3. Small Mobile Header Adjustments (<= 480px) */
@media (max-width: 480px) {
  .top-contact-bar {
    display: none !important;
  }
  .header-cta-btn .btn-text {
    display: none !important;
  }
  .header-cta-btn {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    justify-content: center !important;
  }
  .header-cta-btn .btn-icon-circle {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: transparent !important;
    color: #ffffff !important;
  }
  .brand-logo {
    max-height: 38px !important;
  }
}

/* 4. Hero Section Responsiveness */
@media (max-width: 1024px) {
  .hero {
    min-height: auto !important;
    padding: 40px 0 60px !important;
  }
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .hero-copy {
    max-width: 100% !important;
    text-align: left !important;
  }
  .hero-title {
    font-size: clamp(30px, 6vw, 50px) !important;
    line-height: 1.15 !important;
  }
  .hero-desc {
    font-size: 15px !important;
    max-width: 100% !important;
  }
  .hero-card-form {
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .hero-btn-primary,
  .hero-btn-phone {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-trust-badges {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .trust-divider {
    display: none !important;
  }
  .hero-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .hero-card-form {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }
}

/* 5. Services Slider Responsiveness */
@media (max-width: 1024px) {
  .services-header-wrap {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
  }
  .services-slider-track {
    gap: 16px !important;
  }
  .services-slider-track .service-box-card {
    flex: 0 0 calc((100% - 16px) / 2) !important;
    min-width: calc((100% - 16px) / 2) !important;
    max-width: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 680px) {
  .services-slider-track .service-box-card {
    flex: 0 0 88% !important;
    min-width: 88% !important;
    max-width: 88% !important;
  }
  .section-main-title {
    font-size: 28px !important;
  }
}

/* 6. FAQ Section Responsiveness */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0 35px !important;
  }
  .faq-question {
    padding: 16px 18px !important;
    font-size: 15px !important;
    gap: 12px !important;
  }
  .faq-answer {
    padding: 0 18px !important;
  }
  .faq-item.is-open .faq-answer {
    padding: 0 18px 18px !important;
  }
}

/* 7. Steps / How It Works Responsiveness */
@media (max-width: 900px) {
  .modern-steps-section {
    padding: 50px 0 45px !important;
  }
  .modern-steps-grid {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .step-card-modern {
    width: 100% !important;
    padding: 34px 20px 28px !important;
  }
  .step-arrow-connector {
    transform: rotate(90deg) !important;
    margin: 2px 0 !important;
  }
}

/* 8. Gallery Grid Responsiveness */
@media (max-width: 1024px) {
  .clean-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
}

@media (max-width: 680px) {
  .gallery-showcase-section {
    padding: 50px 0 40px !important;
  }
  .clean-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }
}

@media (max-width: 400px) {
  .clean-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* 9. Lightbox Modal Responsiveness */
@media (max-width: 768px) {
  .smooth-lightbox-container {
    width: 96vw !important;
    height: 85vh !important;
  }
  .smooth-lightbox-topbar {
    top: 10px !important;
    left: 12px !important;
    right: 12px !important;
  }
  .smooth-lightbox-nav {
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
  }
  .smooth-lightbox-nav.prev {
    left: 6px !important;
  }
  .smooth-lightbox-nav.next {
    right: 6px !important;
  }
  .smooth-lightbox-img {
    max-height: 70vh !important;
  }
}

/* 10. Oceanside Footer Responsiveness */
@media (max-width: 1024px) {
  .oceanside-footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px 30px !important;
  }
}

@media (max-width: 640px) {
  .site-footer.oceanside-style-footer {
    padding: 0 !important;
  }
  .footer-main-wrap {
    padding: 48px 0 35px !important;
  }
  .oceanside-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
  .os-brand-desc {
    max-width: 100% !important;
  }
  .os-map-card {
    max-width: 100% !important;
    height: 130px !important;
  }
  .os-bottom-flex {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

/* ==========================================================================
   11. COMPREHENSIVE INNER PAGES RESPONSIVENESS (About, Contact, Services, Projects, Blog)
   ========================================================================== */
@media (max-width: 991px) {
  .page-header-banner {
    padding: 55px 0 42px !important;
  }
  .page-header-banner h1 {
    font-size: clamp(26px, 5vw, 38px) !important;
    line-height: 1.25 !important;
  }
  .page-header-banner p {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  /* About Page */
  .about-split-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  /* Contact Page */
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    margin: -20px auto 40px !important;
    gap: 16px !important;
  }
  .contact-page-layout {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }

  /* Services Overview & Detail */
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  .service-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
  }
  .service-sidebar {
    width: 100% !important;
    position: static !important;
    top: auto !important;
  }

  /* Projects & Blog */
  .projects-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

@media (max-width: 680px) {
  .page-header-banner {
    padding: 38px 0 30px !important;
  }
  .page-header-banner h1 {
    font-size: clamp(22px, 6vw, 28px) !important;
  }
  .page-header-banner p {
    font-size: 14px !important;
  }

  /* About Us */
  .about-story-section {
    padding: 45px 0 !important;
  }
  .about-values-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .about-value-card {
    padding: 22px 18px !important;
  }
  .about-images img {
    height: 240px !important;
  }
  .phone-strip {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 12px !important;
    padding: 10px 14px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }

  /* Contact Page */
  .contact-cards-grid {
    grid-template-columns: 1fr !important;
    margin: 10px auto 30px !important;
  }
  .contact-info-card {
    padding: 22px 18px !important;
  }
  .contact-form {
    padding: 22px 16px !important;
    border-radius: 18px !important;
  }
  .big-form {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .big-form input,
  .big-form select,
  .big-form textarea {
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .map-card-wrapper {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

  /* Services Pages */
  .services-page-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .service-features-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .service-hero-image {
    height: 200px !important;
    border-radius: 14px !important;
  }
  .sidebar-widget {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  /* Projects Filter Bar (Horizontally scrollable touch strip) */
  .project-filter-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 4px 10px 14px !important;
    -webkit-overflow-scrolling: touch !important;
    margin-bottom: 24px !important;
    scrollbar-width: thin;
  }
  .filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 12px !important;
    padding: 8px 16px !important;
  }
  .projects-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .project-portfolio-item img {
    height: 220px !important;
  }

  /* Blog Page */
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .blog-card-body {
    padding: 18px !important;
  }
  .single-post-content {
    padding: 0 !important;
  }
}

/* Desktop vs Mobile Navigation Architecture */
@media (min-width: 992px) {
  .drawer-backdrop,
  .mobile-drawer {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }
}

/* ==========================================================================
   PERFECT RIGHT SLIDE-IN OFF-CANVAS MOBILE DRAWER (<= 991px)
   ========================================================================== */
body.menu-open {
  overflow: hidden !important;
  touch-action: none !important;
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }

  .site-header,
  header.site-header {
    height: 74px !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  }

  .site-header .nav {
    height: 74px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand-logo,
  .custom-logo {
    max-height: 44px !important;
    width: auto !important;
    display: block !important;
  }

  /* Hamburger Menu Toggle Button */
  .menu-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
    font-size: 20px !important;
    cursor: pointer !important;
    z-index: 100002 !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0 !important;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    background: #f52f2f !important;
    color: #ffffff !important;
  }

  /* Backdrop Overlay */
  .drawer-backdrop {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.68) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    z-index: 9999998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
    pointer-events: none !important;
  }

  .drawer-backdrop.active,
  body.menu-open .drawer-backdrop {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* Right Slide-in Off-Canvas Drawer */
  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 84vw !important;
    max-width: 320px !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #080c14 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.75) !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .mobile-drawer.open {
    transform: translateX(0) !important;
  }

  /* Drawer Header */
  .drawer-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 16px !important;
    background: #0c121e !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  .drawer-brand {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
  }

  .drawer-logo-img {
    height: 32px !important;
    max-height: 34px !important;
    max-width: 150px !important;
    width: auto !important;
    object-fit: contain !important;
  }

  .drawer-close-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 9px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
  }

  .drawer-close-btn:hover {
    background: #f52f2f !important;
    border-color: #f52f2f !important;
    color: #ffffff !important;
  }

  /* Drawer Menu Body */
  .drawer-menu-body {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 14px 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 7px !important;
    box-sizing: border-box !important;
  }

  /* Mobile Nav Items */
  .mobile-nav-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 46px !important;
    padding: 11px 14px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #f8fafc !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    letter-spacing: 0.03em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    background: rgba(245, 47, 47, 0.16) !important;
    border-color: rgba(245, 47, 47, 0.35) !important;
    color: #f52f2f !important;
  }

  .mobile-nav-arr {
    font-size: 11px !important;
    opacity: 0.6 !important;
  }

  .mobile-chevron {
    font-size: 12px !important;
    color: #f52f2f !important;
    transition: transform 0.25s ease !important;
  }

  .mobile-dropdown-wrapper {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .mobile-dropdown-wrapper.is-expanded .mobile-chevron {
    transform: rotate(180deg) !important;
  }

  /* Nested Services Sub Menu */
  .mobile-sub-menu {
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: #04070d !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    padding: 6px !important;
    margin-top: 4px !important;
    box-sizing: border-box !important;
  }

  .mobile-dropdown-wrapper.is-expanded .mobile-sub-menu {
    display: flex !important;
  }

  .mobile-sub-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    border-radius: 8px !important;
    color: #cbd5e1 !important;
    text-decoration: none !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid transparent !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
  }

  .mobile-sub-link:hover,
  .mobile-sub-link.active {
    background: rgba(245, 47, 47, 0.18) !important;
    border-color: rgba(245, 47, 47, 0.3) !important;
    color: #ffffff !important;
  }

  .sub-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 6px !important;
    background: rgba(245, 47, 47, 0.15) !important;
    color: #f52f2f !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  .sub-info strong {
    color: #ffffff !important;
    font-size: 13px !important;
    display: block !important;
  }

  .sub-info small {
    color: #94a3b8 !important;
    font-size: 10.5px !important;
    display: block !important;
  }

  /* Drawer Footer */
  .drawer-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 12px 14px 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #070a10 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  .drawer-phone-btn {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-decoration: none !important;
    color: #ffffff !important;
    box-sizing: border-box !important;
  }

  .drawer-phone-icon {
    width: 30px !important;
    height: 30px !important;
    border-radius: 6px !important;
    background: #f52f2f !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
  }

  .drawer-phone-text small {
    display: block !important;
    font-size: 10px !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
  }

  .drawer-phone-text strong {
    display: block !important;
    font-size: 13.5px !important;
    color: #ffffff !important;
  }

  .drawer-quote-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, #ff2a5f 0%, #ff5238 50%, #ff7b2b 100%) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 4px 14px rgba(245, 47, 47, 0.3) !important;
    box-sizing: border-box !important;
  }

  .drawer-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    font-size: 10.5px !important;
    font-weight: 600 !important;
    color: #94a3b8 !important;
    text-align: center !important;
    padding-top: 2px !important;
  }

  .drawer-badge i {
    color: #f52f2f !important;
  }

  .header-cta-btn {
    display: none !important;
  }
}

/* ==========================================================================
   12. THANK YOU PAGE STYLES & CONFIRMATION CARDS
   ========================================================================== */
.thank-you-page-main {
  background: #fafafa;
}

.thank-you-banner {
  text-align: center;
  padding: 65px 0 50px !important;
  background: linear-gradient(135deg, #090e18 0%, #172033 100%) !important;
}

.thank-you-banner h1 {
  font-size: clamp(26px, 5.5vw, 42px) !important;
  max-width: 780px;
  margin: 15px auto !important;
  color: #ffffff !important;
}

.thank-you-banner p {
  font-size: 16px !important;
  max-width: 680px;
  margin: 0 auto !important;
  color: #cbd5e1 !important;
}

.thank-you-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.thank-you-steps-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 38px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid #eef0f2;
  margin-bottom: 35px;
}

.steps-card-header {
  text-align: center;
  margin-bottom: 40px;
}

.steps-card-header h2 {
  font-size: 28px;
  color: var(--ink);
  margin-top: 6px;
}

.thank-you-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  border-color: rgba(245, 47, 47, 0.3);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 14px;
  font-weight: 900;
  color: #cbd5e1;
  letter-spacing: 0.05em;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fee2e2;
  color: var(--red);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
  background: rgba(245, 47, 47, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  align-self: flex-start;
}

.urgent-contact-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 20px;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.urgent-text h3 {
  color: #ffffff;
  font-size: 19px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.urgent-text p {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 0;
}

.urgent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ================= GOOGLE ADS / PPC LANDING PAGE ================= */
body.landing-page-body {
  background: #ffffff;
  color: #1e293b;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

/* Landing Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
}

.landing-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.landing-logo {
  display: flex;
  align-items: center;
}

.landing-logo img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 220px !important;
  object-fit: contain !important;
  display: block !important;
}

.landing-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-header-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #475569;
}

.landing-header-rating .stars {
  color: #f59e0b;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-landing-call {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  color: #0b1320;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-landing-call i {
  color: #f52f2f;
  font-size: 16px;
}

.btn-landing-call span small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  line-height: 1;
}

.btn-landing-call span strong {
  display: block;
  font-size: 14.5px;
  color: #0b1320;
  line-height: 1.2;
}

.btn-landing-call:hover {
  background: #ffffff;
  border-color: #f52f2f;
  box-shadow: 0 4px 12px rgba(245, 47, 47, 0.12);
}

.btn-landing-quote-nav {
  display: inline-block;
  padding: 11px 22px;
  background: #f52f2f;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 47, 47, 0.3);
  transition: all 0.2s ease;
}

.btn-landing-quote-nav:hover {
  background: #d62020;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 47, 47, 0.4);
}

/* Landing Hero */
.landing-hero {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #09121f 0%, #0d1a2d 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 47, 47, 0.12) 0%, rgba(245, 47, 47, 0) 70%);
  pointer-events: none;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 999px;
  color: #38bdf8;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.landing-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
}

.landing-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-bottom: 18px;
}

.landing-hero-title span {
  color: #f52f2f;
  background: linear-gradient(135deg, #ff6b6b 0%, #f52f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 540px;
}

.landing-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #e2e8f0;
}

.landing-hero-bullets li i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

.landing-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.trust-item span {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

/* Landing Form Card */
.landing-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #0f172a;
}

.landing-form-head {
  text-align: center;
  margin-bottom: 20px;
}

.form-tag {
  display: inline-block;
  background: #fee2e2;
  color: #dc2626;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.landing-form-head h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #0b1320;
  margin-bottom: 6px;
}

.landing-form-head p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.landing-quote-form {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.landing-quote-form .form-group {
  display: block !important;
  width: 100% !important;
  margin-bottom: 13px !important;
}

.landing-quote-form label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #334155 !important;
  margin-bottom: 5px !important;
  text-align: left !important;
}

.landing-quote-form .form-row-2 {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}

.landing-quote-form .input-with-icon {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
}

.landing-quote-form .input-with-icon i {
  position: absolute !important;
  left: 14px !important;
  color: #94a3b8 !important;
  font-size: 14px !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

.landing-quote-form input,
.landing-quote-form select,
.landing-quote-form textarea {
  width: 100% !important;
  padding: 10px 14px 10px 38px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  box-sizing: border-box !important;
  height: 44px !important;
  line-height: normal !important;
}

.landing-quote-form select {
  padding-right: 24px !important;
  cursor: pointer !important;
}

.landing-quote-form textarea {
  padding: 10px 14px !important;
  height: 72px !important;
  min-height: 72px !important;
  resize: vertical !important;
}

.landing-quote-form input:focus,
.landing-quote-form select:focus,
.landing-quote-form textarea:focus {
  outline: none !important;
  border-color: #f52f2f !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(245, 47, 47, 0.12) !important;
}

.btn-submit-landing {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  background: #f52f2f !important;
  color: #ffffff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  padding: 14px 20px !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  box-shadow: 0 6px 18px rgba(245, 47, 47, 0.35) !important;
  transition: all 0.2s ease !important;
  margin-top: 8px !important;
}

.btn-submit-landing:hover {
  background: #d62020 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(245, 47, 47, 0.45) !important;
}

.landing-form-privacy {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  color: #64748b !important;
  margin-top: 12px !important;
}

.landing-form-privacy i {
  color: #10b981;
}

/* Trust Bar */
.landing-trust-bar-section {
  background: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
}

.landing-trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.trust-badge-card .trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fef2f2;
  color: #f52f2f;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-badge-card .trust-text h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0b1320;
  margin: 0 0 2px 0;
}

.trust-badge-card .trust-text p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* Services Grid */
.landing-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.landing-service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.landing-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.landing-service-card .service-img {
  height: 180px;
  overflow: hidden;
}

.landing-service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.landing-service-card:hover .service-img img {
  transform: scale(1.05);
}

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

.landing-service-card .service-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1320;
  margin: 0 0 8px 0;
}

.landing-service-card .service-body p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex: 1;
}

.btn-service-quote {
  font-size: 13.5px;
  font-weight: 700;
  color: #f52f2f;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-service-quote:hover {
  color: #d62020;
  gap: 8px;
}

/* Gallery Grid */
.landing-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.landing-gallery-item {
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.landing-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.landing-gallery-item:hover img {
  transform: scale(1.06);
}

/* Steps Grid */
.landing-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.landing-step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 32px 24px;
  position: relative;
}

.landing-step-card .step-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  font-weight: 900;
  color: #e2e8f0;
  line-height: 1;
}

.landing-step-card .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #09121f;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.landing-step-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0b1320;
  margin-bottom: 10px;
}

.landing-step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
}

/* Final CTA */
.landing-final-cta {
  padding: 70px 0;
  background: #09121f;
  color: #ffffff;
  text-align: center;
}

.landing-final-cta-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.landing-final-cta-inner p {
  font-size: 16px;
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 28px;
}

.final-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-final-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #ffffff;
  color: #09121f;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-final-call:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.btn-final-quote {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: #f52f2f;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(245, 47, 47, 0.4);
}

.btn-final-quote:hover {
  background: #d62020;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Landing Footer */
.landing-footer {
  background: #060c14;
  padding: 24px 0 90px; /* space for mobile bar */
  color: #64748b;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer-inner p {
  margin: 0 0 6px 0;
}

.landing-footer-credits {
  font-size: 12px;
  color: #94a3b8;
}

/* Sticky Mobile Conversion Bar */
.landing-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  padding: 8px 12px;
  box-sizing: border-box;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1;
  transition: all 0.15s ease;
}

.mobile-cta-btn.call-btn {
  background: #09121f;
  color: #ffffff;
}

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

.mobile-cta-btn.quote-btn {
  background: #f52f2f;
  color: #ffffff;
}

/* Landing Page Responsive Queries */
@media (max-width: 991px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .landing-hero-title {
    font-size: 34px;
  }
  .landing-trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .landing-steps-grid {
    grid-template-columns: 1fr;
  }
  .landing-mobile-sticky-bar {
    display: flex;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  .landing-header-rating {
    display: none;
  }
  .btn-landing-quote-nav {
    display: none;
  }
  .landing-hero-title {
    font-size: 28px;
  }
  .landing-quote-form .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .landing-trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .landing-services-grid {
    grid-template-columns: 1fr;
  }
  .landing-gallery-grid {
    grid-template-columns: 1fr;
  }
  .landing-form-card {
    padding: 24px 18px;
  }
  .landing-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .trust-divider {
    display: none;
  }
}










