/* ---------- MODERN RESET / GLOBAL ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a2639;
    line-height: 1.5;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ---------- DEEP BLUE + GRAY PALETTE ---------- */
:root {
    --deep-blue: #ed3107;
    /* bold, trust */
    --white: #ffffff;
    --soft-gray: #f5f7fa;
    --mid-gray: #e3e8ef;
    --accent-blue: #1e4a6b;
    /* cta variant */
    --bright-accent: #0077b6;
    /* CTA button */
    --dark-bg: #0a1e2f;
    /* footer */
    --text-dark: #1e2b3c;
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.02), 0 2px 6px rgba(0, 20, 40, 0.02);
    --shadow-hover: 0 20px 30px -8px rgba(0, 35, 70, 0.08);
}

/* ---------- TYPOGRAPHY / LINKS ---------- */
a {
    text-decoration: none;
    color: inherit;
}

/* ---------- STICKY BOLD NAVBAR ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.2s;
}

.nav-left {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--deep-blue);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.nav-left span {
    font-weight: 600;
    color: #2c405c;
}

/* Hamburger button – bold minimalist */
.hamburger {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--deep-blue);
    cursor: pointer;
    transition: transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.hamburger:hover {
    color: var(--accent-blue);
    transform: scale(0.96);
}

/* ----- SLIDE-IN MENU (MODERN OVERLAY) ----- */
.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.06);
    z-index: 2000;
    transition: right 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.menu-overlay.active {
    right: 0;
}

.menu-close {
    align-self: flex-end;
    font-size: 2.2rem;
    background: none;
    border: none;
    color: var(--deep-blue);
    margin-bottom: 40px;
    cursor: pointer;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-list li a {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e2b3c;
    transition: all 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.menu-list li a:hover {
    border-bottom-color: var(--deep-blue);
    color: var(--deep-blue);
}

.menu-overlay-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 43, 75, 0.3);
    backdrop-filter: blur(2px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.menu-overlay-bg.active {
    opacity: 1;
    pointer-events: auto;
}

/* ---------- HEADER : BG + CENTER FADE ---------- */
.hero {
   
    background-size: cover;
    background-position: center 30%;
    padding: 120px 24px;
    text-align: center;
    color: white;
    animation: fadeSlide 1.1s ease-out;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(14px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    border-radius: 60px;
    padding: 16px 42px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    display: inline-block;
    background: white;
    color: var(--deep-blue);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--bright-accent);
    color: white;
}

.btn-primary:hover {
    background: #0a4b6e;
    transform: scale(1.02);
    box-shadow: 0 14px 24px rgba(0, 119, 182, 0.25);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--deep-blue);
    border: 1px solid white;
}

.btn-outline-light:hover {
    background: white;
    transform: translateY(-3px);
}

/* ---------- SECTIONS GENERAL ---------- */
section {
    padding: 90px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* ---------- ABOUT (split) ---------- */
.split-layout {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-text {
    flex: 1.1;
}

.about-text p {
    font-size: 1.18rem;
    color: #2e3f53;
    margin-bottom: 30px;
    font-weight: 400;
}

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

.feature-item {
    padding: 8px 0;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-6px);
}

.feature-item i {
    font-size: 2.2rem;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.about-decor {
    flex: 0.9;
    background: url('https://images.pexels.com/photos/4239032/pexels-photo-4239032.jpeg?auto=compress&cs=tinysrgb&w=600') center/cover;
    height: 440px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* ---------- FULL-WIDTH CTA BANNER ---------- */
.cta-banner {
    background: var(--bright-accent);
    padding: 80px 32px;
    text-align: center;
    color: white;
    border-radius: 0;
}

.cta-banner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-banner .btn {
    background: white;
    color: var(--deep-blue);
    font-size: 1.4rem;
    padding: 18px 52px;
    border-radius: 50px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.cta-banner .btn:hover {
    background: #f0f7ff;
    transform: scale(1.02);
}

/* ---------- FEATURE SERVICES (alternating layout) ---------- */
.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 90px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.service-content p {
    font-size: 1.16rem;
    color: #3b4e62;
}

.service-icon {
    flex: 0.7;
    text-align: center;
    font-size: 4.5rem;
    color: var(--deep-blue);
    background: var(--soft-gray);
    padding: 40px 20px;
    border-radius: 80px 20px 80px 20px;
    transition: box-shadow 0.25s, transform 0.2s;
}

.service-icon:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(0.98);
}

.service-icon i {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.02));
}

/* ---------- SERVICE AREAS (paragraph style) ---------- */
.areas-paragraph {
    background: var(--soft-gray);
    padding: 60px 40px;
    border-radius: 24px;
}

.area-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--deep-blue);
    margin-bottom: 32px;
}

.area-list {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c3e50;
    word-spacing: 6px;
}

/* ---------- COMPREHENSIVE SERVICES (2 rows, alternating image) ---------- */
.comp-row {
    display: flex;
    align-items: center;
    background: white;
    padding: 40px 24px;
    border-radius: 28px;
    margin-bottom: 36px;
    transition: background 0.2s;
}

.comp-row:nth-child(even) {
    background: var(--soft-gray);
}

.comp-img {
    flex: 0.9;
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    margin: 0 30px;
}

.comp-text {
    flex: 1.2;
}

.comp-text h3 {
    font-size: 1.9rem;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

/* ---------- FAQ ACCORDION ---------- */
.accordion-item {
    border-bottom: 1px solid var(--mid-gray);
    padding: 18px 0;
}

.accordion-title {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.3rem;
    color: #1e3a5f;
    cursor: pointer;
    padding: 10px 0;
}

.accordion-title i {
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
    padding: 0 16px 0 0;
    color: #3e5266;
    font-size: 1.1rem;
}

.accordion-content.show {
    max-height: 180px;
    padding: 16px 16px 8px 0;
}

/* ---------- BENEFITS ---------- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-card i {
    font-size: 2.8rem;
    color: var(--deep-blue);
    margin-bottom: 18px;
}

.benefit-card h4 {
    font-size: 1.4rem;
}

/* ---------- CONTACT (split) + MAP ---------- */
.contact-split {
    display: flex;
    gap: 50px;
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--deep-blue);
}

.contact-detail {
    margin-top: 25px;
    font-size: 1.16rem;
    line-height: 2;
}

.map {
    flex: 1.2;
    background: #e3e8ef;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- FOOTER – modern, unique ---------- */
.footer {
    position: relative;
    background: #071116;
    background-image: linear-gradient(180deg, #0a181f 0%, #071116 100%);
    color: rgba(255, 255, 250, 0.88);
    padding: 0 0 0;
    overflow: hidden;
}

/* top accent – brand gradient line */
.footer-accent {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, #ed3107 20%, #dbb492 50%, #ed3107 80%, transparent 100%);
    opacity: 0.9;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    color: #fff;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
}

.footer-tagline {
    color: rgba(255, 255, 250, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin: 0 0 1.25rem 0;
}

.footer-address,
.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 250, 0.82);
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-address i,
.footer-phone i {
    color: #ed3107;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.footer-phone {
    text-decoration: none;
    margin-bottom: 0;
}

.footer-phone:hover {
    color: #fff;
}

.footer-phone:hover i {
    color: #dbb492;
}

.footer-nav-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 250, 0.5);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 250, 0.85);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-cta {
    text-align: right;
}

.footer-cta p {
    font-size: 0.9rem;
    color: rgba(255, 255, 250, 0.6);
    margin: 0 0 0.75rem 0;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: #ed3107;
    color: #071116;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(237, 49, 7, 0.35);
}

.footer-btn:hover {
    background: #dbb492;
    color: #071116;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(219, 180, 146, 0.3);
}

.footer-btn i {
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 250, 0.08);
    padding: 1.25rem 2rem;
}

.footer-copyright {
    margin: 0;
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 250, 0.5);
    font-weight: 400;
}

/* footer responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-cta {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-cta p {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem 2rem;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-address,
    .footer-phone {
        justify-content: center;
    }

    .footer-nav {
        text-align: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-cta {
        text-align: center;
    }

    .footer-bottom {
        padding: 1rem 1.5rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .split-layout {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-row {
        flex-direction: column;
    }

    .service-row.reverse {
        flex-direction: column;
    }

    .comp-row {
        flex-direction: column;
    }

    .navbar {
        padding: 16px 20px;
    }

    .nav-left {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}



.accordion-content.show+* {}

.fa-minus {
    transform: rotate(0deg);
}


/* ---------- global reset / minimalist ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #faf9f6;
    color: #1e1e1e;
    line-height: 1.5;
}

/* ---------- containers, sections ---------- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

/* ----- 2️⃣ HERO – bold, sculptural, deep texture ----- */
#home {
    background-color: #0e1c26;
    background-image: radial-gradient(circle at 10% 30%, rgba(58, 108, 118, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(168, 144, 116, 0.18) 0%, transparent 35%),
        linear-gradient(145deg, #0a161c 0%, #14262e 100%);
    position: relative;
    isolation: isolate;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6.5rem 1.5rem 7rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* abstract carpet fibre motif (subtle but unique) */
.hero::after {
    content: "⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻";
    letter-spacing: 12px;
    color: rgba(200, 180, 150, 0.18);
    font-size: 2.2rem;
    font-weight: 300;
    display: block;
    margin-top: 2rem;
    transform: rotate(-1deg);
    opacity: 0.5;
    white-space: nowrap;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto 1.25rem auto;
}

.hero p {
    font-size: 1.35rem;
    font-weight: 350;
    color: rgba(255, 255, 245, 0.88);
    margin-bottom: 2.4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(2px);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: #ed3107;
    color: #0e1c26;
    box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 245, 0.2);
}

.btn-primary:hover {
    background: #dbb492;
    color: #0a1419;
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 24px 28px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 170, 0.6);
}

.btn-outline-light {
    background: transparent;
    border: 1.8px solid rgba(255, 245, 235, 0.65);
    color: #fff9f0;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255, 245, 235, 0.08);
    border-color: #f0dfcc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 22px -12px #00000040;
}

/* ---------- 3️⃣ ABOUT – split layout with rich details / unique decor ---------- */
#about {
    padding: 6rem 0 7rem 0;
    background: #faf9f6;
    background-image:
        linear-gradient(145deg, #f6f3ef 0%, #fffcf9 100%);
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2.8rem;
}

.about-text {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 1.2rem 0 0.8rem 0;
    position: relative;
    z-index: 5;
}

.about-decor {
    flex: 1 1 35%;
    min-width: 280px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 700" opacity="0.75"><path fill="%23cba98420" d="M0,400 Q150,350 200,400 T400,400 T600,350 L600,700 L0,700 Z"/><path fill="%23b0926e15" d="M0,470 Q130,520 240,470 T500,500 L600,480 L600,700 L0,700 Z"/><circle cx="480" cy="220" r="40" fill="%23a0846320"/><circle cx="100" cy="140" r="70" fill="%237e6b5620"/><rect x="40" y="550" width="90" height="40" fill="%23927a6222" rx="20"/><rect x="420" y="600" width="120" height="30" fill="%23b19d8525" rx="15"/><path stroke="%23afa18c30" stroke-width="12" stroke-linecap="round" d="M180 120 L250 70 L320 110" /><path stroke="%2395826d28" stroke-width="12" stroke-linecap="round" d="M500 50 L560 90 L520 150" /></svg>');
    background-size: cover;
    background-position: center 20%;
    border-radius: 180px 40px 180px 40px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.04), -12px -12px 30px rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    position: relative;
    min-height: 360px;
    background-color: #e3dbcf30;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(200, 180, 150, 0.25);
}

/* abstract rug texture hint (unique layered effect) */
.about-decor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255, 240, 210, 0.2) 0%, transparent 60%);
    border-radius: inherit;
    pointer-events: none;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: #1c2a33;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, #ed3107, #b48a61, #ed3107);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(170, 130, 80, 0.3);
}

.about-text p {
    font-size: 1.13rem;
    color: #2c3a44;
    margin: 2rem 0 2.6rem 0;
    line-height: 1.6;
    font-weight: 360;
    border-left: 4px solid #ed310780;
    padding-left: 1.8rem;
    background: linear-gradient(to right, #ffffff10, transparent);
}

/* feature grid – modern & airy */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 1.8rem 1rem 1.5rem 1rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 12px 24px -16px rgba(60, 45, 35, 0.12);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid #ed310760;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #ed3107;
    box-shadow: 0 22px 30px -18px #a8775190;
}

.feature-item i {
    font-size: 2rem;
    color: #2c5f5f;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px #b3a68f40;
}

.feature-item h4 {
    font-weight: 650;
    font-size: 1.12rem;
    color: #14262e;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
    font-family: "Space Grotesk", sans-serif;
}

.feature-item p {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5e66;
    margin: 0;
    padding-left: 0;
    border-left: none;
    background: none;
}

/* microchip icon special flip */
.fa-microchip {
    transform: rotate(-2deg);
}

/* responsive */
@media (max-width: 1000px) {
    .hero h1 {
        font-size: 2.9rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-layout {
        flex-direction: column;
    }

    .about-decor {
        min-height: 300px;
    }

    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 550px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero::after {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
}

/* extra unique – signature "since 1995" line in decor */
.about-decor {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background-blend-mode: overlay;
}

.about-decor::before {
    content: "✦  A&L&Q  ✦";
    background-image: url(img/about.jpg);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c423f;
    background: rgba(255, 250, 240, 0.55);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    margin: 2rem;
    border: 1px solid #ffffffd0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    letter-spacing: 2px;
}

/* subtle carpet pattern at about background */
#about .container {
    position: relative;
}

#about .container::after {
    content: "⚡ ⚡ ⚡ ⚡ ⚡";
    position: absolute;
    bottom: -30px;
    right: 40px;
    font-size: 2rem;
    color: #ed310710;
    letter-spacing: 18px;
    transform: rotate(2deg);
    white-space: nowrap;
    pointer-events: none;
}

/* trust badge micro */
.btn::after {
    transition: none;
}

/* unique sio – slight curvature in hero */
.hero {
    border-bottom: 1px solid rgba(255, 215, 170, 0.14);
}

/* perfect crisp attrctive */
.fa-leaf,
.fa-certificate,
.fa-wind {
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.02));
}



/* ---------- global reset / perfect consistency ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fcfaf7;
    color: #1e1e1e;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

/* ----- HERO (unchanged, perfect) ----- */
#home {
    background-color: #0e1c26;
    background-image: radial-gradient(circle at 10% 30%, rgba(58, 108, 118, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(168, 144, 116, 0.18) 0%, transparent 35%),
        linear-gradient(145deg, #0a161c 0%, #14262e 100%);
    isolation: isolate;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6.5rem 1.5rem 7rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero::after {
    content: "⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻";
    letter-spacing: 12px;
    color: rgba(200, 180, 150, 0.18);
    font-size: 2.2rem;
    font-weight: 300;
    display: block;
    margin-top: 2rem;
    transform: rotate(-1deg);
    opacity: 0.5;
    white-space: nowrap;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto 1.25rem auto;
}

.hero p {
    font-size: 1.35rem;
    font-weight: 350;
    color: rgba(255, 255, 245, 0.88);
    margin-bottom: 2.4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(2px);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: #ed3107;
    color: #0e1c26;
    box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 245, 0.2);
}

.btn-primary:hover {
    background: #dbb492;
    color: #0a1419;
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 24px 28px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 170, 0.6);
}

.btn-outline-light {
    background: transparent;
    border: 1.8px solid rgba(255, 245, 235, 0.65);
    color: #fff9f0;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255, 245, 235, 0.08);
    border-color: #f0dfcc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 22px -12px #00000040;
}

/* ----- ABOUT (refined, perfect) ----- */
#about {
    padding: 6rem 0 5rem 0;
    background: #faf9f6;
    background-image: linear-gradient(145deg, #f6f3ef 0%, #fffcf9 100%);
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2.8rem;
}

.about-text {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 1.2rem 0 0.8rem 0;
    position: relative;
    z-index: 5;
}

.about-decor {
    flex: 1 1 35%;
    min-width: 280px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 700" opacity="0.75"><path fill="%23cba98420" d="M0,400 Q150,350 200,400 T400,400 T600,350 L600,700 L0,700 Z"/><path fill="%23b0926e15" d="M0,470 Q130,520 240,470 T500,500 L600,480 L600,700 L0,700 Z"/><circle cx="480" cy="220" r="40" fill="%23a0846320"/><circle cx="100" cy="140" r="70" fill="%237e6b5620"/><rect x="40" y="550" width="90" height="40" fill="%23927a6222" rx="20"/><rect x="420" y="600" width="120" height="30" fill="%23b19d8525" rx="15"/><path stroke="%23afa18c30" stroke-width="12" stroke-linecap="round" d="M180 120 L250 70 L320 110" /><path stroke="%2395826d28" stroke-width="12" stroke-linecap="round" d="M500 50 L560 90 L520 150" /></svg>');
    background-size: cover;
    background-position: center 20%;
    border-radius: 180px 40px 180px 40px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.04), -12px -12px 30px rgba(255, 255, 255, 0.7);
    min-height: 360px;
    background-color: #e3dbcf30;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(200, 180, 150, 0.25);
    position: relative;
}

.about-decor::before {
    content: "✦  A&L&Q  ✦";
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c423f;
    background: rgba(255, 250, 240, 0.55);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    margin: 2rem;
    border: 1px solid #ffffffd0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    letter-spacing: 2px;
    display: inline-block;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: #1c2a33;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, #ed3107, #b48a61, #ed3107);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(170, 130, 80, 0.3);
}

.about-text p {
    font-size: 1.13rem;
    color: #2c3a44;
    margin: 2rem 0 2.6rem 0;
    line-height: 1.6;
    font-weight: 360;
    border-left: 4px solid #ed310780;
    padding-left: 1.8rem;
    background: linear-gradient(to right, #ffffff10, transparent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 1.8rem 1rem 1.5rem 1rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 12px 24px -16px rgba(60, 45, 35, 0.12);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid #ed310760;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #ed3107;
    box-shadow: 0 22px 30px -18px #a8775190;
}

.feature-item i {
    font-size: 2rem;
    color: #2c5f5f;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px #b3a68f40;
}

.feature-item h4 {
    font-weight: 650;
    font-size: 1.12rem;
    color: #14262e;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
    font-family: "Space Grotesk", sans-serif;
}

.feature-item p {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5e66;
    margin: 0;
    padding-left: 0;
    border-left: none;
    background: none;
}

/* ---------- 🌟 NEW! PERFECT SERVICES SECTION – TWO LARGE IMAGES, LONG DESCRIPTIONS, ADDITIONAL SERVICES ---------- */
#services {
    padding: 6rem 0 8rem 0;
    background: #ffffff;
    background-image: radial-gradient(circle at 0% 10%, rgba(203, 158, 114, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(44, 95, 95, 0.02) 0%, transparent 50%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.services-header .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
}

.services-header p {
    font-size: 1.3rem;
    color: #3a525a;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 350;
}

/* --- two big hero service cards (image left, long text) --- */
.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-card-large {
    display: flex;
    flex-wrap: wrap;
    background: #fefcf9;
    border-radius: 48px 48px 48px 48px;
    box-shadow: 0 20px 40px -12px rgba(40, 40, 40, 0.08), 0 6px 12px -6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #f1ebe6;
}

.service-card-large:hover {
    box-shadow: 0 32px 64px -16px rgba(98, 83, 64, 0.16);
    border-color: #ed310740;
}

.service-img {
    flex: 1 1 45%;
    min-height: 360px;
    background-size: cover;
    background-position: center 30%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* two unique images – abstract carpet / rug patterns with deep texture */


.img-overlay {
    background: rgba(14, 28, 38, 0.2);
    backdrop-filter: blur(2px);
    padding: 1rem 2rem;
    border-radius: 100px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 245, 0.5);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
    transform: rotate(-1deg);
}

.service-content {
    flex: 1 1 55%;
    padding: 3rem 3.5rem;
    background: linear-gradient(145deg, #fffdfb, #fffaf5);
}

.service-content h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1c2a33;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 5px;
    background: #ed3107;
    border-radius: 6px;
}

.long-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #36454f;
    margin: 1.8rem 0 2rem 0;
    font-weight: 360;
    border-left: 3px dashed #ed310790;
    padding-left: 1.6rem;
}

.long-description strong {
    color: #1f4e4e;
    font-weight: 600;
}

.tech-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.8rem;
}

.tech-details span {
    background: rgba(203, 158, 114, 0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a444c;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ed310730;
}

.tech-details i {
    color: #2c5f5f;
}

/* ----- ADDITIONAL SERVICES (4 perfect cards) ----- */
.additional-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #1c2a33;
    margin: 4.5rem 0 2rem 0;
    position: relative;
    display: inline-block;
}

.additional-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100px;
    height: 6px;
    background: linear-gradient(90deg, #b48a61, #ed3107);
    border-radius: 8px;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.additional-card {
    background: white;
    border-radius: 32px;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    box-shadow: 0 12px 28px -10px rgba(60, 45, 35, 0.06);
    transition: 0.25s ease;
    border: 1px solid #f0eae4;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.additional-card:hover {
    transform: translateY(-10px);
    border-color: #ed3107;
    box-shadow: 0 28px 40px -16px #7e695750;
    background: #fffdfa;
}

.additional-card i {
    font-size: 2.1rem;
    color: #2c5f5f;
    margin-bottom: 1.3rem;
}

.additional-card h4 {
    font-size: 1.45rem;
    font-weight: 600;
    font-family: "Space Grotesk", sans-serif;
    margin-bottom: 0.8rem;
    color: #14262e;
}

.additional-card p {
    font-size: 0.98rem;
    color: #4b616a;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.card-foot {
    font-size: 0.85rem;
    color: #a16b4a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
}

.card-foot i {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #ed3107;
}

/* responsive */
@media (max-width: 1100px) {
    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-content {
        padding: 2.5rem;
    }

    .service-content h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 900px) {
    .service-card-large {
        flex-direction: column;
    }

    .service-img {
        min-height: 300px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .services-header .section-title {
        font-size: 2.2rem;
    }
}

/* perfect micro interactions */
.fa-regular,
.fas,
.far {
    transition: transform 0.15s;
}

.additional-card:hover i {
    transform: scale(1.08);
    color: #1f4a4a;
}

.service-img .img-overlay i {
    margin-right: 8px;
}



#faq {
    background: linear-gradient(175deg, #f8f6f2 0%, #fffbf7 100%);
    padding: 6rem 0 7rem 0;
    position: relative;
    border-top: 1px solid #e5ddd2;
    border-bottom: 1px solid #e5ddd2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-title {
    font-size: 2.9rem;
}

.faq-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    background: linear-gradient(90deg, #ed3107, #9f7e5c, #ed3107);
}

.faq-subhead {
    font-size: 1.25rem;
    color: #3e5a62;
    margin-top: 1rem;
    font-weight: 360;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(203, 158, 114, 0.06);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    backdrop-filter: blur(4px);
    border: 1px solid #ed310730;
}

.faq-subhead i {
    color: #2c5f5f;
    margin-right: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    margin-top: 2rem;
}

.faq-card {
    background: white;
    border-radius: 36px;
    padding: 2rem 2rem 2rem 2.5rem;
    box-shadow: 0 16px 32px -12px rgba(64, 64, 64, 0.04);
    transition: all 0.2s ease;
    border: 1px solid #f5ede6;
    position: relative;
}

.faq-card:hover {
    border-color: #ed3107a0;
    box-shadow: 0 24px 44px -14px rgba(139, 109, 76, 0.12);
    background: #fffefc;
}

.faq-card i {
    color: #ed3107;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.faq-question {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 650;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    color: #1c2a33;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-right: 0.5rem;
}

.faq-question span {
    background: #2c5f5f10;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f4a4a;
    border: 1px solid #2c5f5f30;
    margin-left: 0.6rem;
    white-space: nowrap;
    display: inline-block;
}

.faq-answer {
    color: #3a535c;
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 360;
    border-left: 2px solid #ed310760;
    padding-left: 1.3rem;
    margin-top: 0.6rem;
}

.city-tag-cloud {
    margin-top: 3.5rem;
    text-align: center;
    padding: 2rem 2rem 1rem;
    background: rgba(255, 255, 245, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px 100px 100px 100px;
    border: 1px solid rgba(203, 158, 114, 0.25);
}

.city-tag-cloud h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1f4045;
    margin-bottom: 1.5rem;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.9rem;
}

.city-tag {
    background: white;
    color: #2e4a52;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #dbcfc0;
    transition: all 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.city-tag:hover {
    background: #ed3107;
    color: white;
    border-color: #ed3107;
    transform: scale(1.04);
}

.city-tag i {
    margin-right: 5px;
    font-size: 0.8rem;
    color: #2c5f5f;
}

.city-tag:hover i {
    color: white;
}

/* responsive */
@media (max-width: 1000px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .additional-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .service-card-large {
        flex-direction: column;
    }

    .service-img {
        min-height: 300px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .faq-card {
        padding: 1.8rem;
    }

    .city-tag-cloud {
        border-radius: 40px;
    }
}



/* ---------- global reset / perfect consistency ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #fcfaf7;
    color: #1e1e1e;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    position: relative;
}

/* ----- HERO (unchanged, perfect) ----- */
#home {
    background-color: #0e1c26;
    background-image: radial-gradient(circle at 10% 30%, rgba(58, 108, 118, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 90% 70%, rgba(168, 144, 116, 0.18) 0%, transparent 35%),
        linear-gradient(145deg, #0a161c 0%, #14262e 100%);
    isolation: isolate;
}

.hero {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6.5rem 1.5rem 7rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 5;
}

.hero::after {
    content: "⸻⸻⸻⸻⸻⸻⸻⸻⸻⸻";
    letter-spacing: 12px;
    color: rgba(200, 180, 150, 0.18);
    font-size: 2.2rem;
    font-weight: 300;
    display: block;
    margin-top: 2rem;
    transform: rotate(-1deg);
    opacity: 0.5;
    white-space: nowrap;
}

.hero h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto 1.25rem auto;
}

.hero p {
    font-size: 1.35rem;
    font-weight: 350;
    color: rgba(255, 255, 245, 0.88);
    margin-bottom: 2.4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(2px);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.4rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
    border: 1.5px solid transparent;
}

.btn-primary {
    background: #ed3107;
    color: #0e1c26;
    box-shadow: 0 12px 18px -8px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 245, 0.2);
}

.btn-primary:hover {
    background: #dbb492;
    color: #0a1419;
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 24px 28px -12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 170, 0.6);
}

.btn-outline-light {
    background: transparent;
    border: 1.8px solid rgba(255, 245, 235, 0.65);
    color: #fff9f0;
    backdrop-filter: blur(4px);
}

.btn-outline-light:hover {
    background: rgba(255, 245, 235, 0.08);
    border-color: #f0dfcc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 22px -12px #00000040;
}

/* ----- ABOUT ----- */
#about {
    padding: 6rem 0 5rem 0;
    background: #faf9f6;
    background-image: linear-gradient(145deg, #f6f3ef 0%, #fffcf9 100%);
    position: relative;
    overflow: hidden;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 2.8rem;
}

.about-text {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 1.2rem 0 0.8rem 0;
    position: relative;
    z-index: 5;
}

.about-decor {
    flex: 1 1 35%;
    min-width: 280px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 700" opacity="0.75"><path fill="%23cba98420" d="M0,400 Q150,350 200,400 T400,400 T600,350 L600,700 L0,700 Z"/><path fill="%23b0926e15" d="M0,470 Q130,520 240,470 T500,500 L600,480 L600,700 L0,700 Z"/><circle cx="480" cy="220" r="40" fill="%23a0846320"/><circle cx="100" cy="140" r="70" fill="%237e6b5620"/><rect x="40" y="550" width="90" height="40" fill="%23927a6222" rx="20"/><rect x="420" y="600" width="120" height="30" fill="%23b19d8525" rx="15"/><path stroke="%23afa18c30" stroke-width="12" stroke-linecap="round" d="M180 120 L250 70 L320 110" /><path stroke="%2395826d28" stroke-width="12" stroke-linecap="round" d="M500 50 L560 90 L520 150" /></svg>');
    background-size: cover;
    background-position: center 20%;
    border-radius: 180px 40px 180px 40px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.04), -12px -12px 30px rgba(255, 255, 255, 0.7);
    min-height: 360px;
    background-color: #e3dbcf30;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(200, 180, 150, 0.25);
    position: relative;
}

.about-decor::before {
    content: "✦  A&L&Q  ✦";
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c423f;
    background: rgba(255, 250, 240, 0.55);
    backdrop-filter: blur(8px);
    padding: 0.8rem 1.8rem;
    border-radius: 60px;
    margin: 2rem;
    border: 1px solid #ffffffd0;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    letter-spacing: 2px;
    display: inline-block;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2.9rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.1;
    color: #1c2a33;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, #ed3107, #b48a61, #ed3107);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(170, 130, 80, 0.3);
}

.about-text p {
    font-size: 1.13rem;
    color: #2c3a44;
    margin: 2rem 0 2.6rem 0;
    line-height: 1.6;
    font-weight: 360;
    border-left: 4px solid #ed310780;
    padding-left: 1.8rem;
    background: linear-gradient(to right, #ffffff10, transparent);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 1.8rem 1rem 1.5rem 1rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 12px 24px -16px rgba(60, 45, 35, 0.12);
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 3px solid #ed310760;
}

.feature-item:hover {
    transform: translateY(-8px);
    background: white;
    border-color: #ed3107;
    box-shadow: 0 22px 30px -18px #a8775190;
}

.feature-item i {
    font-size: 2rem;
    color: #2c5f5f;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 6px #b3a68f40;
}

.feature-item h4 {
    font-weight: 650;
    font-size: 1.12rem;
    color: #14262e;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
    font-family: "Space Grotesk", sans-serif;
}

.feature-item p {
    font-size: 0.85rem;
    font-weight: 400;
    color: #4a5e66;
    margin: 0;
    padding-left: 0;
    border-left: none;
    background: none;
}

/* ---------- SERVICES SECTION (now COMPREHENSIVE – 4 detailed service cards) ---------- */
#services {
    padding: 6rem 0 7rem 0;
    background: #ffffff;
    background-image: radial-gradient(circle at 0% 10%, rgba(203, 158, 114, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 100% 80%, rgba(44, 95, 95, 0.02) 0%, transparent 50%);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header .section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
}

.services-header p {
    font-size: 1.3rem;
    color: #3a525a;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 350;
}

/* comprehensive service grid – 4 perfect detailed cards */
.comprehensive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-detailed {
    background: #fefcf9;
    border-radius: 40px;
    padding: 2.4rem 1.8rem 2.4rem 1.8rem;
    box-shadow: 0 20px 36px -16px rgba(70, 60, 50, 0.06);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #f0e8e0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-detailed:hover {
    transform: translateY(-12px);
    border-color: #ed3107a0;
    box-shadow: 0 32px 48px -18px #8f7a6890;
    background: white;
}

.service-icon {
    font-size: 2.6rem;
    color: #2c5f5f;
    margin-bottom: 1.6rem;
}

.service-detailed h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #1c2a33;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.service-detailed h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ed3107;
    border-radius: 4px;
}

.service-long-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #3e555e;
    margin: 1rem 0 1.6rem 0;
    font-weight: 360;
    flex: 1;
}

.service-long-desc strong {
    color: #1f4e4e;
    font-weight: 600;
}

.service-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
    margin-top: 0.8rem;
    border-top: 1px solid #eae1d6;
    padding-top: 1.4rem;
}

.service-metadata span {
    background: rgba(44, 95, 95, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #1f4a4a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #ed310730;
}

.service-metadata i {
    color: #ed3107;
}

/* ----- FAQ (26 cities, perfect) ----- */
#faq {
    background: linear-gradient(175deg, #f8f6f2 0%, #fffbf7 100%);
    padding: 6rem 0 7rem 0;
    position: relative;
    border-top: 1px solid #e5ddd2;
    border-bottom: 1px solid #e5ddd2;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-title {
    font-size: 2.9rem;
}

.faq-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    background: linear-gradient(90deg, #ed3107, #9f7e5c, #ed3107);
}

.faq-subhead {
    font-size: 1.25rem;
    color: #3e5a62;
    margin-top: 1rem;
    font-weight: 360;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(203, 158, 114, 0.06);
    padding: 0.8rem 2rem;
    border-radius: 60px;
    backdrop-filter: blur(4px);
    border: 1px solid #ed310730;
}

.faq-subhead i {
    color: #2c5f5f;
    margin-right: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
    margin-top: 2rem;
}

.faq-card {
    background: white;
    border-radius: 36px;
    padding: 2rem 2rem 2rem 2.5rem;
    box-shadow: 0 16px 32px -12px rgba(64, 64, 64, 0.04);
    transition: all 0.2s ease;
    border: 1px solid #f5ede6;
    position: relative;
}

.faq-card:hover {
    border-color: #ed3107a0;
    box-shadow: 0 24px 44px -14px rgba(139, 109, 76, 0.12);
    background: #fffefc;
}

.faq-card i {
    color: #ed3107;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.faq-question {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 650;
    font-size: 1.35rem;
    letter-spacing: -0.01em;
    color: #1c2a33;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-right: 0.5rem;
}

.faq-question span {
    background: #2c5f5f10;
    padding: 0.2rem 0.8rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    color: #1f4a4a;
    border: 1px solid #2c5f5f30;
    margin-left: 0.6rem;
    white-space: nowrap;
    display: inline-block;
}

.faq-answer {
    color: #3a535c;
    font-size: 1.02rem;
    line-height: 1.65;
    font-weight: 360;
    border-left: 2px solid #ed310760;
    padding-left: 1.3rem;
    margin-top: 0.6rem;
}

.city-tag-cloud {
    margin-top: 3.5rem;
    text-align: center;
    padding: 2rem 2rem 1.8rem;
    background: rgba(255, 255, 245, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 100px 100px 100px 100px;
    border: 1px solid rgba(203, 158, 114, 0.25);
}

.city-tag-cloud h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1f4045;
    margin-bottom: 1.5rem;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem 0.9rem;
}

.city-tag {
    background: white;
    color: #2e4a52;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #dbcfc0;
    transition: all 0.15s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.city-tag:hover {
    background: #ed3107;
    color: white;
    border-color: #ed3107;
    transform: scale(1.04);
}

.city-tag i {
    margin-right: 5px;
    font-size: 0.8rem;
    color: #2c5f5f;
}

.city-tag:hover i {
    color: white;
}

/* ---------- 🌟 CONTACT SECTION – MAP + EXACT A & L & Q INFO (Ashburn, VA) ---------- */
#contact {
    padding: 6rem 0 7rem 0;
    background: #ffffff;
    position: relative;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2.5rem;
}

.contact-info {
    flex: 1 1 35%;
    background: #fefcf9;
    border-radius: 48px;
    padding: 2.8rem 2.5rem;
    border: 1px solid #ede3d9;
    box-shadow: 0 24px 44px -16px rgba(80, 70, 60, 0.06);
    position: relative;
    backdrop-filter: blur(4px);
}

.contact-info i {
    color: #ed3107;
    margin-right: 0.8rem;
    width: 2rem;
    text-align: center;
}

.contact-brand {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1c2a33;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-brand i {
    font-size: 2rem;
    color: #2c5f5f;
}

.contact-sub {
    font-size: 1.15rem;
    color: #4d6a72;
    margin-bottom: 2.5rem;
    border-left: 4px solid #ed3107;
    padding-left: 1.2rem;
    background: rgba(203, 158, 114, 0.04);
    padding: 1rem 1.2rem;
    border-radius: 16px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    gap: 0.8rem;
}

.contact-detail-item i {
    font-size: 1.5rem;
    margin-top: 0.1rem;
    color: #2c5f5f;
}

.contact-detail-text {
    font-size: 1.1rem;
    color: #2c3e45;
    line-height: 1.5;
    font-weight: 380;
}

.contact-detail-text strong {
    color: #1c2a33;
    font-weight: 650;
}

.contact-phone a,
.contact-web a {
    text-decoration: none;
    color: #1f4e4e;
    font-weight: 550;
    border-bottom: 2px solid #ed310750;
    transition: all 0.2s;
}

.contact-phone a:hover,
.contact-web a:hover {
    color: #ed3107;
    border-bottom-color: #ed3107;
}

.contact-divider {
    height: 2px;
    background: linear-gradient(90deg, #ed310740, #dac09a20, transparent);
    margin: 2rem 0 1.8rem 0;
    width: 100%;
}

.contact-map {
    flex: 1 1 55%;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 20px 40px -14px rgba(50, 50, 40, 0.12);
    border: 1px solid #e5d9ce;
    transition: 0.3s ease;
    min-height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.map-credit {
    font-size: 0.75rem;
    color: #8f8a82;
    margin-top: 0.5rem;
    text-align: right;
}

/* responsive */
@media (max-width: 1100px) {
    .comprehensive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        min-height: 360px;
    }
}

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .city-tag-cloud {
        border-radius: 40px;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }
}



/* reset / base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #faf9f6;
}

/* ----- PERFECT HEADER ONLY – standalone, pixel-perfect, unique, attractive ----- */
#home {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a181f;
    background-image: linear-gradient(135deg, rgba(10, 24, 31, 0.92) 0%, rgba(12, 28, 36, 0.88) 50%, rgba(8, 20, 28, 0.94) 100%),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    overflow: hidden;
}

#home::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(237, 49, 7, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(219, 180, 146, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

/* carpet‑inspired abstract weave (very subtle, unique) */
#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg,
            rgba(200, 175, 140, 0.03) 0px,
            rgba(200, 175, 140, 0.03) 2px,
            transparent 2px,
            transparent 12px);
    pointer-events: none;
    z-index: 1;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7rem 2rem 8rem 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* modern pill badge above headline */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.4rem;
    margin: 0 auto 1.5rem auto;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 245, 0.98);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 245, 230, 0.25);
    border-radius: 100px;
    animation: fadeUp 0.9s 0.05s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(237, 49, 7, 0.1);
}

.hero-badge i {
    color: #ed3107;
    font-size: 0.75rem;
}

/* premium decorative line – unique signature */
.hero::after {
    content: "";
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ed3107, #dbb492, #ed3107, transparent);
    border-radius: 4px;
    opacity: 0.5;
}

/* main headline – bold, sharp, elegant */
.hero h1 {
    font-family: "Inter", "Space Grotesk", sans-serif;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: white;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    max-width: 1000px;
    margin: 0 auto 1.2rem auto;
    animation: fadeUp 0.9s cubic-bezier(0.12, 0.71, 0.33, 1) forwards;
}

/* subtle highlight on "Ashburn, VA" */
.hero h1 span {
    background: linear-gradient(145deg, #ed3107, #eb9576);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(203, 158, 114, 0.3);
    border-bottom: 2px solid rgba(203, 158, 114, 0.4);
    padding-bottom: 2px;
}

/* subheadline – crisp, airy */
.hero-tagline,
.hero p.hero-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 350;
    color: rgba(255, 255, 245, 0.94);
    margin-bottom: 1.25rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    animation: fadeUp 0.9s 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* trust line – free estimates, licensed, scheduling */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem 1rem;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 500;
    color: rgba(255, 255, 245, 0.8);
    margin-bottom: 2.25rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 0.9s 0.15s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-trust i {
    color: rgba(237, 49, 7, 0.95);
    font-size: 0.9em;
    margin-right: 0.15rem;
}

/* CTA container – perfect spacing */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.8rem;
    align-items: center;
    animation: fadeUp 0.9s 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* primary button – elevated, tactile */
.btn-primary {
    background: #ed3107;
    color: #0a181f;
    padding: 1.1rem 2.8rem;
    border-radius: 60px;
    font-weight: 650;
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 245, 0.25);
    box-shadow: 0 14px 22px -8px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary i {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background: #dbb492;
    color: #071116;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 32px -12px #00000060;
    border-color: rgba(255, 215, 170, 0.7);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

/* outline button – refined, glass-like */
.btn-outline-light {
    background: rgba(255, 255, 250, 0.05);
    backdrop-filter: blur(10px);
    border: 1.8px solid rgba(255, 245, 230, 0.5);
    color: #fffef9;
    padding: 1.1rem 2.6rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.2);
}

.btn-outline-light i {
    font-size: 1.1rem;
    color: #ed3107;
    transition: all 0.2s;
}

.btn-outline-light:hover {
    background: rgba(255, 245, 235, 0.15);
    border-color: #f0dfcc;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 20px 26px -12px #00000050;
}

.btn-outline-light:hover i {
    color: #f0d5b0;
    transform: scale(1.1);
}

/* keyframe animation – smooth entrance */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive perfection */
@media (max-width: 800px) {
    #home {
        min-height: 480px;
    }

    .hero h1 {
        font-size: 2.9rem;
    }

    .hero p,
    .hero-tagline {
        font-size: 1.25rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1rem;
    }

    .hero-trust {
        font-size: 0.85rem;
        gap: 0.4rem 0.75rem;
    }

    .btn-primary,
    .btn-outline-light {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 550px) {
    #home {
        min-height: 440px;
    }

    .hero {
        padding: 5rem 1.5rem 6rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p,
    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-trust {
        font-size: 0.8rem;
        margin-bottom: 1.75rem;
        gap: 0.35rem 0.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }

    .hero::after {
        width: 120px;
        bottom: 1.8rem;
    }
}

/* extra unique: subtle shine on buttons */
.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 245, 0.2) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-primary:hover::after {
    opacity: 1;
}

/* custom phone icon */
.fa-phone-alt {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* small decorative touch: carpet dot pattern at edges */
.hero .cta-buttons {
    position: relative;
    z-index: 20;
}

/* perfect span for city highlight – manual wrap */
.hero h1 span {
    display: inline-block;
}
