/* ═══════════════════════════════════════════════════
   4EverFix — Page Styles
   (background-image URLs injected via wp_add_inline_style)
═══════════════════════════════════════════════════ */

/* ─── Reset ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.container--rel { position: relative; z-index: 1; }

/* ─── Section heading ─── */
.section-hd { text-align: center; margin-bottom: 50px; }
.section-hd--lg { margin-bottom: 56px; }
.section-label {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #f5a623;
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 900;
    color: #404040;
    line-height: 1.2;
    margin-bottom: 14px;
}
.section-title--light { color: #fff; }
.section-divider {
    width: 105px;
    height: 3px;
    background: #f5a623;
    border-radius: 2px;
    margin: 0 auto;
}
.section-divider--mb16 { margin: 0 auto 16px; }
.section-divider--mb20 { margin: 0 auto 20px; }
.section-sub {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #404040;
    line-height: 1.5;
    max-width: 780px;
    margin: 0 auto;
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.hero-title    { animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) both; }
.hero-line     { animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.18s both; }
.hero-subtitle { animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.32s both; }
.hero-actions  { animation: fadeUp 0.8s cubic-bezier(0.4,0,0.2,1) 0.46s both; }
.hero-image    { animation: fadeIn 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s both; }

@keyframes floatUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; }
.anim.is-visible { animation: floatUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both; }

@media (min-width: 769px) {
    .srv-card.anim.is-visible:nth-child(2) { animation-delay: 0.07s; }
    .srv-card.anim.is-visible:nth-child(3) { animation-delay: 0.14s; }
    .srv-card.anim.is-visible:nth-child(4) { animation-delay: 0.21s; }
    .srv-card.anim.is-visible:nth-child(5) { animation-delay: 0.07s; }
    .srv-card.anim.is-visible:nth-child(6) { animation-delay: 0.14s; }
    .srv-card.anim.is-visible:nth-child(7) { animation-delay: 0.21s; }
    .srv-card.anim.is-visible:nth-child(8) { animation-delay: 0.28s; }
    .why-card.anim.is-visible:nth-child(2) { animation-delay: 0.09s; }
    .why-card.anim.is-visible:nth-child(3) { animation-delay: 0.18s; }
    .why-card.anim.is-visible:nth-child(4) { animation-delay: 0.27s; }
}

@media (prefers-reduced-motion: reduce) {
    .anim, .hero-title, .hero-line, .hero-subtitle, .hero-actions, .hero-image {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ─── Split background ─── */
.split-bg {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44%;
    background: #f5a623;
    z-index: 0;
}
.split-bg__diag {
    position: absolute;
    left: -80px; top: 0; bottom: 0;
    width: 120px;
    background: #f5a623;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-util { background: #404040; padding: 9px 0; }
.header-util .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.util-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}
.util-phone:hover { color: #f5a623; }
.util-socials { display: flex; align-items: center; gap: 7px; }
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: #f5a623; }
.header-nav { background: #fff; }
.header-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}
.header-logo img { height: 52px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links li a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #404040;
    padding: 8px 16px;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.current-ref { color: #f5a623; background: rgba(245,166,35,0.07); }
.btn-book {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
    gap: 8px;
    padding: 0 22px;
    height: 42px;
    border: 2px solid #f5a623;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    white-space: nowrap;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
}
.btn-book:hover {
    box-shadow: 0 6px 20px rgba(245,166,35,0.45);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero-wrapper {
    position: relative;
    overflow: hidden;
    background: #404040;
}
.hero-bg {
    display: block;
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 44%;
    background: #f5a623;
    z-index: 0;
}
.hero-bg::before {
    content: '';
    position: absolute;
    left: -80px; top: 0; bottom: 0;
    width: 120px;
    background: #f5a623;
    clip-path: polygon(80px 0, 100% 0, 100% 100%, 0 100%);
}
.hero-overlay { display: none; }
.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 600px;
    grid-template-rows: 1fr auto;
    grid-template-areas: 'content image' 'actions image';
    min-height: 620px;
}
.hero-content {
    grid-area: content;
    padding-top: 100px;
    padding-right: 60px;
    max-width: 590px;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 0;
}
.hero-line {
    display: flex;
    align-items: center;
    margin: 28px 0 22px;
}
.hero-line::before {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #f5a623;
    border-radius: 2px;
    margin-right: 12px;
}
.hero-line::after {
    content: '';
    display: block;
    width: 12px;
    height: 4px;
    background: #f5a623;
    border-radius: 2px;
    opacity: 0.45;
}
.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.65);
    margin-bottom: 40px;
    max-width: 440px;
}
.hero-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 80px;
}
.btn-hero-primary {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
    background: #f5a623;
    padding: 0 32px;
    height: 54px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(245,166,35,0.45);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-hero-primary:hover { background: #e09a1a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(245,166,35,0.5); }
.btn-hero-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: transparent;
    padding: 0 32px;
    height: 54px;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-hero-secondary:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.hero-image {
    grid-area: image;
    width: 600px;
    align-self: flex-end;
    position: relative;
    margin-right: -50px;
}
.hero-image img { display: block; width: 100%; height: auto; object-fit: contain; object-position: bottom center; filter: drop-shadow(0 12px 40px rgba(0,0,0,0.3)); }

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
#services { background: #fff; padding: 80px 0 90px; position: relative; overflow: hidden; }
.srv-parallax-bg {
    position: absolute;
    inset: 0;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: right 50%;
    background-size: auto 100vh;
    pointer-events: none;
    z-index: 0;
}
.srv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.swiper-pagination-bullet { background: #404040; opacity: 0.3; }
.swiper-pagination-bullet-active { background: #f5a623 !important; opacity: 1 !important; }
.srv-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 10.5px rgba(62,65,75,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.srv-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(62,65,75,0.15); }
.srv-top { height: 4px; background: var(--clr); border-radius: 5px 5px 0 0; }
.srv-photo { background: #f5f5f5; display: flex; align-items: center; justify-content: center; height: 170px; padding: 20px; }
.srv-photo img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
.srv-body { padding: 18px 20px 24px; text-align: center; }
.srv-name { font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: #404040; margin-bottom: 10px; }
.srv-line { width: 40px; height: 3px; border-radius: 2px; margin: 0 auto 16px; background: var(--clr); }
.srv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
    background: #f5a623;
    padding: 0 20px;
    height: 38px;
    border-radius: 4px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}
.srv-btn:hover { background: #e09a1a; transform: translateY(-2px); }
.srv-desc { font-size: 13px; color: #888; line-height: 1.6; margin-bottom: 14px; }
.srv-card--logo { display: flex; flex-direction: column; }
.srv-logo-wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 24px; }
.srv-logo-wrap img { width: 100%; max-width: 140px; height: auto; display: block; }
.srv-card--dark   { --clr: #404040; }
.srv-card--yellow { --clr: #f5a623; }
.srv-card--blue   { --clr: #4a90d9; }
.srv-card--teal   { --clr: #50bdc4; }
.srv-card--red    { --clr: #e8563a; }
.srv-card--purple { --clr: #9b59b6; }
.srv-card--green  { --clr: #27ae60; }
.srv-card--black  { --clr: #111111; }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about { background: #f7f9fa; padding: 0; }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 30px; display: flex; align-items: stretch; gap: 0; min-height: 540px; }
.about-text-col { flex: 1; padding: 80px 60px 80px 0; display: flex; flex-direction: column; justify-content: center; }
.about-label { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #f5a623; margin-bottom: 10px; }
.about-title { font-family: 'Poppins', sans-serif; font-size: 60px; font-weight: 900; color: #404040; line-height: 1.2; }
.about-divider { width: 100px; height: 3px; background: #f5a623; border-radius: 2px; margin: 24px 0; }
.about-body,
.about-body-content p {
    font-size: 18px;
    font-weight: 400;
    color: #404040;
    line-height: 1.6;
    margin-bottom: 20px;
}
.about-body-content p:last-child { margin-bottom: 0; }
.about-img-col { width: 470px; flex-shrink: 0; position: relative; overflow: hidden; }
.about-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ═══════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════ */
#how-it-works { background: #fff; padding: 80px 0 90px; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 10.5px rgba(62,65,75,0.1);
    display: flex;
    position: relative;
    overflow: hidden;
    height: 270px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(62,65,75,0.15); }
.why-top { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #f5a623; border-radius: 5px 5px 0 0; }
.why-left { width: 285px; flex-shrink: 0; overflow: hidden; }
.why-left img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.why-right { flex: 1; padding: 40px 30px 30px; display: flex; flex-direction: column; justify-content: center; }
.why-title { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #404040; margin-bottom: 10px; }
.why-line { width: 24px; height: 3px; background: #f5a623; border-radius: 2px; margin-bottom: 14px; }
.why-desc { font-size: 15px; font-weight: 500; color: #7c7c7c; line-height: 1.667; }

/* ═══════════════════════════════════
   PRICING
═══════════════════════════════════ */
#pricing { background: #404040; padding: 75px 0; position: relative; overflow: hidden; }
.pricing-inner { display: flex; align-items: center; gap: 40px; }
.pricing-heading { flex: 0 0 340px; }
.pricing-title { font-family: 'Poppins', sans-serif; font-size: 60px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.pricing-line { width: 100px; height: 3px; background: #fff; border-radius: 2px; margin-bottom: 24px; }
.pricing-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.pricing-cards { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pc {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 6px 10.5px rgba(62,65,75,0.1);
    padding: 36px 30px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.pc:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(62,65,75,0.16); }
.pc-stripe { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: #f5a623; border-radius: 5px 5px 0 0; }
.pc-name { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #404040; margin-bottom: 16px; }
.pc-amount { font-family: 'Poppins', sans-serif; font-size: 80px; font-weight: 900; color: #f5a623; line-height: 1.05; margin-bottom: 4px; }
.pc-amount--sm { font-size: 56px; }
.pc-amount--s  { font-size: 44px; line-height: 1.15; }
@keyframes charUp { from { opacity: 0; transform: translateY(110%); } to { opacity: 1; transform: translateY(0); } }
.char-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; line-height: 1.1; }
.char { display: inline-block; opacity: 0; transform: translateY(110%); will-change: opacity, transform; }
.pc.reveal .char { animation: charUp 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.pc-period { font-size: 15px; font-weight: 700; font-style: italic; color: #404040; margin-bottom: 20px; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pc-list li { font-size: 15px; font-weight: 700; color: #f5a623; line-height: 1.5; }
.pc-list li::before { content: '• '; }

/* ═══════════════════════════════════
   REVIEWS
═══════════════════════════════════ */
#reviews { background: #f7f9fa; padding: 80px 0 90px; }
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: #fff; border-radius: 40px; padding: 10px 24px; box-shadow: 0 4px 14px rgba(0,0,0,0.09); }
.google-badge img { height: 20px; width: auto; }
.google-rating { font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: #404040; }
.google-count { font-size: 14px; color: #888; }
.stars-row { color: #f5a623; font-size: 18px; letter-spacing: 1px; line-height: 1; margin-bottom: 10px; display: block; }
.rev-swiper { overflow: hidden; }
.rev-swiper .swiper-pagination { bottom: 12px; }
@media (min-width: 769px) {
    .rev-swiper { overflow: visible; padding-bottom: 0; }
    .rev-swiper .swiper-wrapper { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 20px; transform: none !important; will-change: unset !important; }
    .rev-swiper .swiper-slide { width: auto !important; margin-right: 0 !important; }
    .rev-swiper .swiper-pagination { display: none; }
}
.review-card { background: #fff; border-radius: 10px; padding: 28px 28px 24px; box-shadow: 0 4px 16px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; color: inherit; text-decoration: none; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-size: 18px; font-weight: 700; color: #fff; }
.review-name { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; color: #404040; }
.review-date { font-size: 13px; color: #aaa; margin-top: 2px; }
.review-google-icon { width: 18px; height: 18px; margin-left: auto; opacity: 0.6; }
.review-text { font-size: 14px; color: #555; line-height: 1.7; }
.reviews-cta { text-align: center; margin-top: 48px; }
.btn-reviews-cta { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #111; background: #f5a623; padding: 0 32px; height: 52px; border-radius: 5px; transition: background 0.2s, transform 0.15s; }
.btn-reviews-cta:hover { background: #e09a1a; transform: translateY(-2px); }
.avatar--blue   { background: #4a90d9; }
.avatar--red    { background: #e8563a; }
.avatar--green  { background: #27ae60; }
.avatar--purple { background: #9b59b6; }
.avatar--teal   { background: #50bdc4; }
.avatar--yellow { background: #f5a623; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
#faq { background: #fff; padding: 80px 0 90px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-item:first-child { border-top: 1px solid #e8e8e8; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 700; color: #404040; text-align: left; transition: color 0.2s; }
.faq-q:hover { color: #f5a623; }
.faq-q.open { color: #f5a623; }
.faq-icon { flex-shrink: 0; font-size: 24px; font-weight: 300; color: #aaa; line-height: 1; transition: transform 0.3s, color 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); color: #f5a623; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 4px; }
.faq-a.open { max-height: 200px; padding: 0 4px 22px; }
.faq-a p { font-size: 15px; color: #666; line-height: 1.7; }

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
#contact { background: #404040; padding: 80px 0 90px; position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon-wrap { width: 50px; height: 50px; border-radius: 50%; background: rgba(245,166,35,0.15); border: 1.5px solid rgba(245,166,35,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-size: 13px; font-weight: 500; color: #888; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.contact-value { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 700; color: #fff; transition: color 0.2s; }
a.contact-value:hover { color: #f5a623; }
.contact-value--static { cursor: default; }
.contact-socials-row { display: flex; gap: 12px; margin-top: 4px; }
.contact-social { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #ccc; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 6px; padding: 8px 16px; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.contact-social:hover { background: rgba(245,166,35,0.15); color: #f5a623; border-color: rgba(245,166,35,0.4); }

/* Contact form wrap (CF7) */
.contact-form-wrap .wpcf7-form,
.contact-form {
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-form-wrap .wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 6px; }
.contact-form-wrap .cf-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form-wrap .cf-label { font-family: 'Roboto', sans-serif; font-size: 13px; font-weight: 500; color: #444; }
.contact-form-wrap .wpcf7-select option[value=""] { color: #999; }
.contact-form-wrap .wpcf7-select:has(option[value=""]:checked) { color: #999; }
.wpcf7-form-control-wrap { display: block; width: 100%; }
.contact-form-wrap .wpcf7-text,
.contact-form-wrap .wpcf7-tel,
.contact-form-wrap .wpcf7-email,
.contact-form-wrap .wpcf7-textarea,
.contact-form-wrap .wpcf7-select {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #404040;
    background: #f7f9fa;
    border: 1.5px solid #e8e8e8;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    display: block;
}
.contact-form-wrap .wpcf7-text:focus,
.contact-form-wrap .wpcf7-tel:focus,
.contact-form-wrap .wpcf7-email:focus,
.contact-form-wrap .wpcf7-textarea:focus,
.contact-form-wrap .wpcf7-select:focus { border-color: #f5a623; background: #fff; }
.contact-form-wrap .wpcf7-textarea { resize: vertical; min-height: 90px; }
.contact-form-wrap .wpcf7-submit {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111;
    background: #f5a623;
    border: none;
    border-radius: 6px;
    height: 52px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    margin-top: 4px;
}
.contact-form-wrap .wpcf7-submit:hover { background: #e09a1a; transform: translateY(-2px); }
.contact-form-wrap .wpcf7-response-output { margin: 0; padding: 10px 16px; border-radius: 6px; font-size: 14px; }
.contact-form-wrap .wpcf7-mail-sent-ok { border-color: #27ae60; background: rgba(39,174,96,0.08); color: #27ae60; }
.contact-form-wrap .wpcf7-validation-errors,
.contact-form-wrap .wpcf7-spam-blocked { border-color: #e8563a; background: rgba(232,86,58,0.08); color: #e8563a; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer { background: #fff; border-top: 1px solid #e8e8e8; padding: 60px 0 0; }
.footer-logo-img { height: 52px; width: auto; margin-bottom: 16px; display: block; }
.footer-social-row { display: flex; gap: 10px; margin-top: 20px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { font-size: 14px; color: #777; line-height: 1.7; }
.footer-social { width: 36px; height: 36px; border-radius: 6px; background: #f5a623; border: 1px solid #f5a623; display: flex; align-items: center; justify-content: center; color: #111; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s; }
.footer-social:hover { background: #e09a1a; border-color: #e09a1a; transform: translateY(-2px); }
.footer-col-title { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: #111; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links li a,
.footer-links li span { font-size: 14px; color: #666; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer-links li a:hover { color: #f5a623; }
.icon-no-shrink { flex-shrink: 0; }
.footer-bottom { border-top: 1px solid #e8e8e8; padding: 20px 0; background: #f7f9fa; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-meta { font-size: 13px; color: #555; }

/* ═══════════════════════════════════
   FLOATING CALL BUTTON
═══════════════════════════════════ */
.fab-call { position: fixed; bottom: 32px; right: 32px; z-index: 999; width: 60px; height: 60px; border-radius: 50%; background: #f5a623; color: #111; display: flex; align-items: center; justify-content: center; border: 3px solid #fff; box-shadow: 0 6px 20px rgba(245,166,35,0.5); transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.fab-call:hover { background: #e09a1a; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(245,166,35,0.6); }
.fab-pulse { position: absolute; inset: 0; border-radius: 50%; background: #f5a623; animation: fab-ring 2s ease-out infinite; pointer-events: none; }
@keyframes fab-ring { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.7); opacity: 0; } 100% { transform: scale(1.7); opacity: 0; } }
@media (max-width: 480px) { .fab-call { bottom: 20px; right: 20px; width: 52px; height: 52px; } }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
    h2 { font-size: 46px !important; }
    .hero-title { font-size: 60px; }
    .hero-image { width: 360px; }
    .hero-bg { width: 42%; }
    .about-img-col { width: 360px; }
    .about-text-col { padding-right: 40px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
    h2 { font-size: 40px !important; }
    .pricing-inner { flex-direction: column; }
    .pricing-heading { flex: none; text-align: center; }
    .pricing-line { margin: 0 auto 24px; }
    .pricing-cards { width: 100%; }
}
@media (max-width: 768px) {
    h2 { font-size: 36px !important; }
    .hero-bg { display: none; }
    .hero-bg::before { display: none; }
    .hero-inner { display: flex; flex-direction: column; min-height: 100svh; justify-content: center; padding-top: 0; padding-bottom: 0; }
    .hero-content { padding-top: 52px; padding-bottom: 0; padding-right: 0; max-width: 100%; position: relative; z-index: 1; }
    .hero-title { font-size: 54px; }
    .hero-image { display: none; }
    .hero-actions { padding-bottom: 52px; padding-top: 0; flex-wrap: wrap; position: relative; z-index: 1; }
    .srv-parallax-bg { display: none; }
    .srv-grid { grid-template-columns: 1fr; }
    .srv-card--logo { display: none; }
    #services, #how-it-works, #reviews, #faq { padding-top: 56px !important; padding-bottom: 64px !important; }
    #pricing { padding: 56px 0 !important; }
    #contact { padding: 56px 0 64px !important; }
    .about-inner { flex-direction: column; min-height: auto; }
    .about-text-col { padding: 52px 0 32px; }
    .about-img-col { width: 100%; height: 300px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card { flex-direction: column; height: auto; }
    .why-left { width: 100%; height: 320px; }
    #pricing .split-bg, #contact .split-bg { display: none; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-socials-row { flex-wrap: wrap; }
}
@media (max-width: 580px) {
    h2 { font-size: 30px !important; }
    .section-label, .about-label { font-size: 16px !important; }
    .hero-title { font-size: 46px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    #services, #how-it-works, #reviews, #faq, #pricing, #contact { padding-top: 40px !important; padding-bottom: 48px !important; }
    #pricing { padding: 40px 0 !important; }
    .about-img-col { height: auto; }
    .about-img-col img { object-position: center 13%; }
    .why-left img { object-position: 40% 11%; }
    .swiper-wrapper { padding-bottom: 42px !important; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pc-amount { font-size: 60px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .site-footer { padding-top: 44px; }
    .contact-value { font-size: 17px; }
    .contact-socials-row { flex-wrap: wrap; gap: 8px; }
    .contact-social { padding: 6px 10px; font-size: 13px; }
    .contact-icon-wrap { width: 36px; height: 36px; }
    .contact-icon-wrap svg { width: 16px; height: 16px; }
    .hero-inner { padding: 0 15px; }
}
@media (max-width: 440px) {
    h2 { font-size: 26px !important; }
    .container { padding-left: 16px; padding-right: 16px; }
    .header-util { padding: 6px 0; }
    .util-phone { font-size: 12px; }
    .hero-title { font-size: 46px; }
    .contact-form-wrap .wpcf7-form, .contact-form { padding: 28px 20px; }
    .google-badge { flex-wrap: wrap; justify-content: center; padding: 10px 16px; }
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
    .fab-pulse { animation: none; }
}

.cf-group br{
	display:none;
}