/* ============================================================
   ADORN DECORATORS - Frontend Stylesheet
   ============================================================ */

:root {
    --accent: #7B1818;
    --accent-dark: #5D1010;
    --accent-light: #f9f0f0;
    --dark: #1a1a2e;
    --dark-green: #4A5C0A;
    --green: #4A5C0A;
    --text: #444;
    --text-light: #777;
    --bg-light: #f8f9fa;
    --white: #fff;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }
.section-padding { padding: 80px 0; }

/* ---------- Buttons ---------- */
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 83, 113, 0.3);
}
.btn-outline-accent {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
}
.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Section Titles ---------- */
.section-tag {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-divider-icon {
    height: 20px;
    display: block;
    margin: 6px auto 10px;
    opacity: 0.85;
    width: auto;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 20px;
}
.section-text { color: var(--text); line-height: 1.8; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header .navbar {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: none;
    transition: var(--transition);
}
.site-header .navbar.scrolled {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.logo-img { height: 45px; transition: var(--transition); width: auto; }
.scrolled .logo-img { height: 45px; }
.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}
.navbar .nav-link {
    font-weight: 500;
    color: var(--dark);
    padding: 8px 16px !important;
    font-size: 0.95rem;
    position: relative;
}
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--accent); }
.nav-cta { padding: 8px 24px !important; font-size: 0.9rem; }

/* Mega Dropdown - Hover, Categories Only */
.mega-dropdown { position: relative; }
.mega-menu {
    min-width: 380px;
    max-width: 480px;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    border-top: 3px solid var(--accent);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    margin-top: 0;
}
.mega-menu .row {
    justify-content: center;
}
.mega-category-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 10px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: normal;
}
.mega-category-link i {
    color: var(--accent);
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}
.mega-category-link:hover {
    color: var(--accent);
    background: var(--accent-light);
    padding-left: 18px;
}
.text-accent { color: var(--accent) !important; font-weight: 600; }
/* Hover open on desktop */
@media (min-width: 992px) {
    .mega-dropdown:hover > .dropdown-menu { display: block !important; }
    .mega-category-link { white-space: normal; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slide {
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Subtle Ken Burns zoom on the active slide */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.carousel-item.active .hero-bg {
    animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1); }
    to   { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item.active .hero-bg { animation: none; }
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to top, rgba(10, 10, 22, 0.75) 0%, rgba(10, 10, 22, 0.15) 45%),
        linear-gradient(120deg, rgba(26, 26, 46, 0.65) 0%, rgba(26, 26, 46, 0.15) 70%);
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 700px; }
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 14px;
    opacity: 0.95;
}
.hero-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 5px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next { width: 5%; }
.hero-slider .carousel-indicators { margin-bottom: 28px; }
.hero-slider .carousel-indicators button {
    width: 28px; height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.45);
    border: none;
    transition: var(--transition);
}
.hero-slider .carousel-indicators button.active { background: var(--accent); width: 44px; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
    padding: 160px 0 80px;
    background: var(--dark);
    background-size: cover;
    background-position: center;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26, 26, 46, 0.75);
}
.page-banner-content { position: relative; z-index: 2; color: var(--white); }
.page-banner-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}
.page-banner .breadcrumb { background: none; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item a:hover { color: var(--white); }
.page-banner .breadcrumb-item.active { color: var(--accent); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}
.service-card-img { height: 220px; overflow: hidden; }
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-placeholder {
    width: 100%; height: 100%;
    background: var(--accent-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.service-card-body { padding: 20px; }
.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 8px;
}
.service-card-body p { font-size: 0.9rem; color: var(--text-light); }
.service-link {
    display: inline-block;
    font-weight: 600;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 5px;
}
.service-link i { transition: transform 0.3s; }
.service-card:hover .service-link i { transform: translateX(5px); }

/* ============================================================
   SERVICE TABS
   ============================================================ */
.service-tabs .nav-link {
    color: var(--text);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    background: var(--white);
}
.service-tabs .nav-link.active,
.service-tabs .nav-link:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============================================================
   COUNTERS
   ============================================================ */
.counters-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        linear-gradient(135deg, var(--accent-dark) 0%, var(--dark) 100%);
    color: var(--white);
}
.counter-item i { font-size: 2rem; margin-bottom: 10px; color: rgba(255, 255, 255, 0.85); }
.counter-value {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    display: inline;
}
.counter-suffix { font-size: 1.5rem; font-weight: 600; }
.counter-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(123, 24, 24, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: var(--white);
    font-size: 1.5rem;
}
.gallery-overlay span { font-size: 0.9rem; margin-top: 5px; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1px solid #dee2e6;
    border-radius: 50px;
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    max-width: 700px;
    text-align: center;
    padding: 40px 30px;
}
.testimonial-stars { margin-bottom: 15px; font-size: 1rem; }
.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 55px; height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-light);
}
.testimonial-author h3 { margin: 0; font-size: 1rem; font-weight: 600; color: var(--dark); }
.testimonial-author small { color: var(--text); }

/* Carousel controls for testimonials */
#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next,
#aboutTestimonials .carousel-control-prev,
#aboutTestimonials .carousel-control-next {
    width: 40px; height: 40px;
    background: var(--accent);
    border-radius: 50%;
    top: 50%; transform: translateY(-50%);
    opacity: 1;
}

/* ============================================================
   ABOUT IMAGE
   ============================================================ */
.about-img-wrap {
    position: relative;
}
.about-img-wrap::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    top: 20px; left: 20px;
    z-index: -1;
}
.about-img-wrap img { border-radius: 16px; }
/* 2×3 image mosaic (about page) */
.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.about-mosaic a { display: block; overflow: hidden; border-radius: 10px; }
.about-mosaic img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.35s ease;
    cursor: pointer;
}
.about-mosaic a:hover img { transform: scale(1.06); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.contact-icon {
    width: 65px; height: 65px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}
.contact-info-card h5 { color: var(--dark); font-weight: 600; margin-bottom: 8px; }
.contact-info-card a { color: var(--text); }
.contact-info-card a:hover { color: var(--accent); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.cta-text { font-size: 1.1rem; opacity: 0.9; margin-bottom: 25px; }
.cta-section .btn-accent {
    background: var(--white);
    color: var(--accent);
    border-color: var(--white);
}
.cta-section .btn-accent:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================================
   LATEST WORKS — SPLIT LAYOUT
   ============================================================ */
.lft-work-row { margin-bottom: 48px; }
.lftimage {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}
.lftimage-placeholder { height: 500px; border-radius: 15px; }
.rgtcnt {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    margin: 40px 4px 40px -75px;
}
.rgtcnt-reverse {
    margin: 40px -75px 40px 4px;
}
.rgtcnt-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.rgtcnt-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 4px;
}
.thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 16px 0;
}
.thumbs-grid a { display: block; overflow: hidden; border-radius: 6px; }
.thumbs-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.thumbs-grid a:hover img { transform: scale(1.08); }
.btn-explore {
    display: inline-flex;
    align-items: center;
    background: var(--dark-green);
    color: var(--white);
    border: 2px solid var(--dark-green);
    padding: 9px 26px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
}
.btn-explore:hover {
    background: transparent;
    color: var(--dark-green);
    transform: translateY(-2px);
}

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.accordion-item { border: none; margin-bottom: 10px; border-radius: var(--radius) !important; overflow: hidden; box-shadow: var(--shadow); }
.accordion-button { font-weight: 600; color: var(--dark); padding: 18px 24px; }
.accordion-button:not(.collapsed) { background: var(--accent-light); color: var(--accent); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-button::after { filter: none; }
.accordion-body { padding: 0 24px 18px; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 60px 0 40px; }
.footer-logo { height: 50px; margin-bottom: 15px; width: auto; }
.footer-text { font-size: 0.9rem; line-height: 1.7; }
.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}
.footer-col-divider {
    width: 50px;
    border-top: 2px solid var(--accent);
    margin: 0 0 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
    display: flex; gap: 12px; margin-bottom: 12px;
    font-size: 0.9rem; align-items: flex-start;
}
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 15px; }
.social-links a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   MAP
   ============================================================ */
.map-section iframe { display: block; width: 100%; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-title { font-size: 2.5rem; }
    .hero-slide { height: 70vh; }
    .section-title { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    .mega-menu { padding: 15px; }
    .mega-menu .col-lg-4 { margin-bottom: 15px; }
    .about-img-wrap::before { display: none; }
    /* Latest Works — remove negative margin overlap on tablet/mobile */
    .rgtcnt, .rgtcnt-reverse { margin: 20px 0 0; box-shadow: var(--shadow); }
    .lftimage, .lftimage-placeholder { height: 320px; }
    .thumbs-grid { grid-template-columns: repeat(4, 1fr); }
    .thumbs-grid img { height: 65px; }
    /* Mega menu — full width, single column (one category per row) */
    .mega-menu { width: 100% !important; border-top: none; border-radius: var(--radius); box-shadow: none; padding: 4px 0; }
    .mega-menu .row { display: block; }
    .mega-menu .col-6 { width: 100%; flex: 0 0 100%; max-width: 100%; }
    .mega-category-link { padding: 8px 12px; border-radius: 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .mega-category-link:hover { padding-left: 16px; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.8rem; }
    .hero-slide { height: 60vh; min-height: 400px; }
    .page-banner { padding: 120px 0 60px; }
    .page-banner-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .counter-value { font-size: 2rem; }
    .cta-title { font-size: 1.8rem; }
    .gallery-item img { height: 200px; }
    .lftimage, .lftimage-placeholder { height: 250px; }
    .thumbs-grid { grid-template-columns: repeat(2, 1fr); }
    .thumbs-grid img { height: 80px; }
}
/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: var(--transition);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 55%, transparent);
    outline-offset: 2px;
}

/* ============================================================
   HOW IT WORKS (steps)
   ============================================================ */
.step-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-light);
    line-height: 1;
}
.step-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* ============================================================
   WHY CHOOSE US (feature grid)
   ============================================================ */
.feature-tile {
    display: flex;
    gap: 18px;
    padding: 26px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    height: 100%;
    transition: var(--transition);
}
.feature-tile:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-tile i {
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-tile h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.feature-tile p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.area-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-pill {
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.area-pill i { color: var(--accent); margin-right: 6px; font-size: 0.8rem; }
.area-pill:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   FEATURED VIDEO (lazy embed)
   ============================================================ */
.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    background: #000;
}
.video-embed img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: var(--transition); }
.video-embed:hover img { opacity: 1; transform: scale(1.03); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    pointer-events: none;
}
.video-embed:hover .video-play { transform: translate(-50%, -50%) scale(1.08); }
.video-embed.playing .video-play { display: none; }
