/*
Theme Name: Crucial Tools Services Ltd
Theme URI: http://localhost/crucial
Author: Crucial Tools Services Ltd
Description: Professional heavy equipment hire website — green, black & white
Version: 2.0
*/

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:      #22c55e;
    --green-dk:   #16a34a;
    --green-xdk:  #15803d;
    --green-deep: #166534;
    --black:      #0b0f0e;
    --dark:       #111827;
    --dark2:      #1f2937;
    --dark3:      #166534;
    --white:      #ffffff;
    --light:      #f0fdf4;
    --light2:     #dcfce7;
    --gray:       #6b7280;
    --gray-lt:    #9ca3af;
    --border:     #d1fae5;
    --text:       #1f2937;
    --shadow:     0 4px 24px rgba(0,0,0,.14);
    --radius:     8px;
    --transition: all .3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

a { color: var(--green-dk); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-xdk); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--dark); }

/* =========================================
   UTILITIES
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }

/* =========================================
   SECTION HEADINGS
   ========================================= */
.section-title { font-size: 2.2rem; margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 620px; margin: 0 auto 50px; }
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
    padding: 4px 14px;
    background: var(--light2);
    border-radius: 50px;
    border: 1px solid var(--green);
}
.title-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--green), var(--green-dk));
    margin: 14px auto 20px;
    border-radius: 2px;
}
.title-line.left { margin-left: 0; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .93rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.btn-primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}
.btn-primary:hover {
    background: var(--green-dk);
    border-color: var(--green-dk);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34,197,94,.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}
.btn-dark:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-green-outline {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}
.btn-green-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: .83rem; }

/* =========================================
   HEADER / NAVIGATION
   ========================================= */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(11,15,14,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34,197,94,.2);
    transition: var(--transition);
}
#site-header.scrolled {
    background: rgba(11,15,14,1);
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
    border-bottom-color: var(--green);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-text .name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.1;
}
.logo-text .tagline {
    font-size: .65rem;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-nav ul { display: flex; gap: 4px; list-style: none; }
.main-nav ul li a {
    color: rgba(255,255,255,.82);
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 6px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
    color: var(--green);
    background: rgba(34,197,94,.12);
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.hamburger span {
    display: block; width: 26px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
   ========================================= */
.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(11,15,14,.92) 0%,
        rgba(11,15,14,.80) 50%,
        rgba(22,101,52,.55) 100%
    );
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-content { position: relative; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34,197,94,.15);
    border: 1px solid rgba(34,197,94,.5);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}

.hero h1 {
    font-size: clamp(1.9rem, 4.2vw, 3.4rem);
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero h1 span { color: var(--green); }
.hero p {
    font-size: 1.08rem;
    color: rgba(255,255,255,.8);
    margin-bottom: 34px;
    line-height: 1.75;
    max-width: 540px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.6);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 34px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: var(--transition);
    display: inline-block;
}
.btn-hero-outline:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(34,197,94,.08);
    transform: translateY(-2px);
}

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .number {
    font-size: 1.65rem; font-weight: 800;
    color: var(--green); display: block; line-height: 1.1;
}
.hero-stat .label {
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    display: block;
}

/* Hero right — floating image cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hero-card-main {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,.55);
    position: relative;
    border: 2px solid rgba(34,197,94,.3);
}
.hero-card-main img { width: 100%; height: 300px; object-fit: cover; display: block; }
.hero-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.45);
    position: relative;
    border: 1px solid rgba(34,197,94,.25);
    transition: var(--transition);
}
.hero-card:hover { transform: scale(1.03); }
.hero-card img { width: 100%; height: 150px; object-fit: cover; display: block; }
.hero-card-label {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(11,15,14,.9), transparent);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: 20px 12px 8px;
}

/* Scroll cue */
.scroll-cue {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: rgba(255,255,255,.45); font-size: .7rem;
    text-transform: uppercase; letter-spacing: 2px;
    z-index: 3; text-decoration: none;
    transition: var(--transition);
}
.scroll-cue:hover { color: var(--green); }
.scroll-cue-arrow {
    width: 20px; height: 20px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    animation: scrollBounce 1.6s infinite;
}
@keyframes scrollBounce {
    0%,100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(6px); }
}

/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    background: var(--black);
    border-top: 3px solid var(--green);
    border-bottom: 1px solid rgba(34,197,94,.2);
    padding: 16px 0;
}
.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.8);
    font-size: .85rem;
    font-weight: 600;
    white-space: nowrap;
}
.trust-icon { color: var(--green); font-size: 1rem; }
.trust-sep { width: 1px; height: 24px; background: rgba(34,197,94,.25); }

/* =========================================
   INTRO STRIP
   ========================================= */
.intro-strip { background: var(--green); padding: 20px 0; }
.intro-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.intro-strip p { font-size: 1rem; font-weight: 600; color: var(--white); }

/* =========================================
   ABOUT
   ========================================= */
.about-section { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-img-main { grid-column: 1 / -1; border-radius: 12px; overflow: hidden; height: 280px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { border-radius: 10px; overflow: hidden; height: 180px; }
.about-img-sm img { width: 100%; height: 100%; object-fit: cover; }

.experience-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--green);
    color: var(--white);
    border-radius: 12px; padding: 18px 22px; text-align: center;
    box-shadow: 0 8px 30px rgba(34,197,94,.4);
    font-weight: 800;
}
.experience-badge .years { font-size: 2.2rem; line-height: 1; display: block; }
.experience-badge .text { font-size: .74rem; text-transform: uppercase; letter-spacing: 1px; opacity: .9; }

.about-content h2 { font-size: 1.95rem; margin-bottom: 16px; }
.about-content p { color: var(--gray); margin-bottom: 14px; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.about-feature { display: flex; align-items: flex-start; gap: 10px; }
.feature-icon {
    width: 36px; height: 36px;
    background: var(--light2); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; color: var(--green-dk);
    border: 1px solid var(--green);
}
.about-feature h4 { font-size: .88rem; margin-bottom: 2px; }
.about-feature p { font-size: .8rem; color: var(--gray); margin: 0; }

/* =========================================
   SERVICES
   ========================================= */
.services-section { padding: 90px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }

.service-card {
    background: var(--white);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: var(--transition); position: relative;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(34,197,94,.18);
    border-color: var(--green);
}
.service-img { height: 220px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(22,101,52,.8), transparent);
    opacity: 0; transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--green); color: var(--white);
    padding: 3px 12px; border-radius: 50px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.service-body { padding: 22px; }
.service-icon {
    width: 46px; height: 46px;
    background: var(--light2); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 12px;
    border: 1px solid var(--green);
}
.service-body h3 { font-size: 1.1rem; margin-bottom: 9px; }
.service-body p { font-size: .86rem; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green-dk); font-weight: 700; font-size: .85rem;
    text-transform: uppercase; letter-spacing: .5px;
}
.service-link::after { content: '→'; transition: transform .3s; }
.service-link:hover::after { transform: translateX(4px); }

/* =========================================
   STATS
   ========================================= */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--black) 0%, #0a1a10 60%, var(--dark) 100%);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(34,197,94,.06) 0%, transparent 70%);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; position: relative; z-index: 2; }
.stat-card {
    text-align: center; padding: 38px 18px;
    border: 1px solid rgba(34,197,94,.25); border-radius: 14px;
    background: rgba(34,197,94,.04); transition: var(--transition);
}
.stat-card:hover {
    border-color: var(--green);
    background: rgba(34,197,94,.1);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34,197,94,.2);
}
.stat-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.stat-number { font-size: 2.6rem; font-weight: 800; color: var(--green); display: block; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1.5px; }

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-section { padding: 90px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.why-img-wrap img { width: 100%; height: 500px; object-fit: cover; }
.why-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--dark); color: var(--white);
    padding: 14px 20px; border-radius: 10px;
    border-left: 4px solid var(--green);
}
.why-badge strong { display: block; font-size: 1.2rem; color: var(--green); }
.why-badge span { font-size: .78rem; color: rgba(255,255,255,.65); }

.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-item {
    display: flex; gap: 16px; padding: 18px;
    border-radius: 10px; background: var(--light);
    transition: var(--transition); border: 1px solid transparent;
}
.why-item:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(34,197,94,.12);
    transform: translateX(6px);
    border-color: var(--border);
}
.why-item-icon {
    width: 48px; height: 48px;
    background: var(--green); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0; color: var(--white);
}
.why-item-content h4 { font-size: .97rem; margin-bottom: 4px; }
.why-item-content p { font-size: .85rem; color: var(--gray); margin: 0; }

/* =========================================
   PORTFOLIO / GALLERY
   ========================================= */
.portfolio-section { padding: 90px 0; background: var(--light); }
.portfolio-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 240px; gap: 14px;
}
.portfolio-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,15,14,.9) 0%, rgba(11,15,14,.2) 60%, transparent 100%);
    opacity: 0; transition: var(--transition);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay span { color: var(--green); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; }
.portfolio-icon {
    position: absolute; top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: var(--green); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.1rem;
    opacity: 0; transition: var(--transition);
}
.portfolio-item:hover .portfolio-icon { opacity: 1; }

/* =========================================
   BLOG
   ========================================= */
.blog-section { padding: 90px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.blog-card {
    background: var(--white); border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: var(--transition); border: 1px solid transparent;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(34,197,94,.15);
    border-color: var(--green);
}
.blog-img { height: 200px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--green); color: var(--white);
    padding: 3px 12px; border-radius: 50px;
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
}
.blog-body { padding: 20px; }
.blog-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--gray); margin-bottom: 10px; }
.blog-body h3 { font-size: 1rem; margin-bottom: 9px; line-height: 1.4; }
.blog-body h3 a { color: var(--dark); }
.blog-body h3 a:hover { color: var(--green-dk); }
.blog-body p { font-size: .85rem; color: var(--gray); margin-bottom: 16px; }
.blog-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green-dk); font-weight: 700; font-size: .83rem;
}
.blog-link::after { content: '→'; transition: transform .3s; }
.blog-link:hover::after { transform: translateX(4px); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--black) 0%, #0a1a10 100%);
    position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(34,197,94,.1) 0%, transparent 70%);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; position: relative; z-index: 2; }
.testimonial-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(34,197,94,.15);
    border-radius: 14px; padding: 28px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: var(--green);
    background: rgba(34,197,94,.06);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(34,197,94,.15);
}
.quote-icon { font-size: 2.4rem; color: var(--green); opacity: .5; line-height: 1; margin-bottom: 14px; font-family: Georgia, serif; }
.testimonial-text { color: rgba(255,255,255,.8); font-size: .91rem; line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid rgba(34,197,94,.2); }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
    background: var(--green); display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 800; font-size: 1.05rem; flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--white); font-size: .93rem; }
.author-role { font-size: .76rem; color: var(--green); }
.star-rating { display: flex; gap: 3px; margin-bottom: 6px; }
.star-rating span { color: var(--green); font-size: .88rem; }

/* =========================================
   CTA STRIP
   ========================================= */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-dk) 100%);
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06) 0%, transparent 60%);
}
.cta-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    gap: 30px; flex-wrap: wrap;
}
.cta-text h2 { font-size: 2rem; color: var(--white); }
.cta-text p { color: rgba(255,255,255,.8); font-size: 1.03rem; margin-top: 8px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* =========================================
   CONTACT
   ========================================= */
.contact-section { padding: 90px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 18px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 16px; background: var(--white);
    border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid var(--border);
}
.contact-item-icon {
    width: 42px; height: 42px;
    background: var(--green); border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; color: var(--white);
}
.contact-item h4 { font-size: .82rem; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: .93rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--green-dk); }

.contact-form-wrap {
    background: var(--white); padding: 38px;
    border-radius: 14px; box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block; font-size: .82rem; font-weight: 600;
    color: var(--dark); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid #e5e7eb; border-radius: 8px;
    font-size: .93rem; font-family: inherit;
    color: var(--text); background: var(--white);
    transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(34,197,94,.15);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { text-align: right; }

/* =========================================
   FOOTER
   ========================================= */
#site-footer { background: var(--black); color: rgba(255,255,255,.65); }
.footer-top { padding: 68px 0 48px; border-bottom: 1px solid rgba(34,197,94,.12); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { font-size: .86rem; line-height: 1.8; margin: 14px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .88rem; transition: var(--transition);
}
.social-link:hover {
    background: var(--green); border-color: var(--green);
    color: var(--white); transform: translateY(-3px);
}
.footer-widget h4 {
    color: var(--white); font-size: .9rem;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 18px; padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
    color: rgba(255,255,255,.6); font-size: .85rem;
    transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--green); }
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-services-list { display: flex; flex-direction: column; gap: 10px; }
.footer-services-list a {
    color: rgba(255,255,255,.6); font-size: .85rem;
    transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-services-list a:hover { color: var(--green); }

.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item { display: flex; gap: 10px; font-size: .85rem; }
.footer-contact-item .icon { color: var(--green); font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--green); }
.footer-contact-item p { color: rgba(255,255,255,.6); margin: 0; }

.footer-bottom {
    padding: 20px 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.38); }
.footer-bottom a { color: var(--green); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,.38); }
.footer-bottom-links a:hover { color: var(--green); }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
    background: linear-gradient(135deg, var(--black) 0%, #0a1a10 50%, var(--dark) 100%);
    padding: 136px 0 58px; position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 60%, rgba(34,197,94,.1) 0%, transparent 55%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.5rem; color: var(--white); margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.breadcrumb a { color: var(--green); }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* =========================================
   SINGLE SERVICE
   ========================================= */
.service-single { padding: 78px 0; }
.service-single-grid { display: grid; grid-template-columns: 1fr 330px; gap: 38px; align-items: start; }
.service-single-content p { color: var(--gray); margin-bottom: 15px; }
.service-single-img { border-radius: 14px; overflow: hidden; margin-bottom: 28px; box-shadow: var(--shadow); }
.service-single-img img { width: 100%; height: 340px; object-fit: cover; }
.service-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0; }
.service-feature-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 15px; background: var(--light); border-radius: 8px;
    font-size: .88rem; font-weight: 600; border: 1px solid var(--border);
}
.service-feature-item::before { content: '✓'; color: var(--green); font-weight: 800; }

.sidebar-widget {
    background: var(--white); border-radius: 14px; padding: 22px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08); margin-bottom: 22px;
    border: 1px solid var(--border);
}
.sidebar-widget h4 {
    font-size: .95rem;
    border-bottom: 2px solid var(--green);
    padding-bottom: 9px; margin-bottom: 16px;
    display: inline-block;
}
.sidebar-nav { display: flex; flex-direction: column; gap: 5px; }
.sidebar-nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 9px 13px; border-radius: 6px;
    color: var(--text); font-size: .87rem; transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: var(--green); color: var(--white);
}
.sidebar-nav a::after { content: '→'; font-size: .76rem; }

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-page { padding: 78px 0; }
.blog-page-grid { display: grid; grid-template-columns: 1fr 310px; gap: 38px; align-items: start; }
.blog-list { display: flex; flex-direction: column; gap: 28px; }
.blog-list-card {
    background: var(--white); border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    display: grid; grid-template-columns: 270px 1fr;
    transition: var(--transition); border: 1px solid transparent;
}
.blog-list-card:hover { box-shadow: 0 12px 36px rgba(34,197,94,.13); border-color: var(--green); }
.blog-list-img { overflow: hidden; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-list-body { padding: 26px; }
.blog-list-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-list-body h3 a { color: var(--dark); }
.blog-list-body h3 a:hover { color: var(--green-dk); }
.blog-list-body p { font-size: .88rem; color: var(--gray); margin-bottom: 16px; }

/* =========================================
   BACK TO TOP
   ========================================= */
#back-to-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--green); color: var(--white);
    border: none; border-radius: 10px; font-size: 1.15rem;
    cursor: pointer; display: none; align-items: center; justify-content: center;
    z-index: 999; box-shadow: 0 4px 16px rgba(34,197,94,.4); transition: var(--transition);
}
#back-to-top:hover { background: var(--green-dk); transform: translateY(-3px); }
#back-to-top.visible { display: flex; }

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
    position: fixed; inset: 0;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999; transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { font-size: 1.8rem; font-weight: 800; color: var(--white); margin-bottom: 20px; text-align: center; }
.preloader-logo span { color: var(--green); }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.preloader-progress {
    height: 100%; background: linear-gradient(90deg, var(--green-dk), var(--green));
    border-radius: 2px; animation: preloaderAnim 1.5s ease forwards;
}
@keyframes preloaderAnim { from { width: 0; } to { width: 100%; } }

/* =========================================
   MOBILE NAV
   ========================================= */
/* =========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================= */
@media (max-width: 1024px) {
    /* Mobile nav */
    .main-nav {
        display: none; position: fixed; top: 72px; left: 0; right: 0;
        background: var(--black); padding: 18px;
        z-index: 999; border-top: 1px solid rgba(34,197,94,.2);
        max-height: calc(100vh - 72px); overflow-y: auto;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 2px; }
    .main-nav ul li a { display: block; padding: 12px 16px; border-radius: 8px; }
    .hamburger { display: flex; }
    .header-cta .btn { display: none; }

    /* Hero */
    .hero-container { grid-template-columns: 1fr; gap: 30px; padding-bottom: 60px; }
    .hero-cards { display: none; }
    .hero h1 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .hero { background-attachment: scroll; }

    /* Trust bar */
    .trust-sep { display: none; }
    .trust-bar-inner { gap: 12px; }

    /* Page layouts */
    .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-images { margin-bottom: 50px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item.wide { grid-column: span 1; }
    .service-single-grid { grid-template-columns: 1fr; }
    .blog-page-grid { grid-template-columns: 1fr; }
    .blog-list-card { grid-template-columns: 1fr; }
    .blog-list-img { height: 220px; }
    .cta-inner { flex-direction: column; text-align: center; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================= */
@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .service-features-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    .hero-btns .btn,.hero-btns .btn-hero-outline { width: 100%; text-align: center; }
    .trust-item span:last-child { font-size: .78rem; }
}

/* =========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ========================================= */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .section-title { font-size: 1.55rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .stat-number { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-item.wide,.portfolio-item.tall { grid-column: span 1; grid-row: span 1; }
    .portfolio-grid { grid-auto-rows: 180px; }
    .page-hero h1 { font-size: 1.7rem; }
    .contact-form-wrap { padding: 24px 18px; }
    .hero p { font-size: .95rem; }
    .hero .hero-badge { font-size: .7rem; padding: 7px 14px; }
    .cta-text h2 { font-size: 1.55rem; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { width: 100%; text-align: center; }
    .experience-badge { right: 0; bottom: -16px; }
    .trust-bar-inner { flex-direction: column; gap: 8px; }
    .trust-sep { display: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }
[data-animate="left"] { transform: translateX(-30px); }
[data-animate="left"].animated { transform: translateX(0); }
[data-animate="right"] { transform: translateX(30px); }
[data-animate="right"].animated { transform: translateX(0); }

/* =========================================
   CITY TAGS (About page)
   ========================================= */
.city-tag {
    padding: 9px 18px;
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 50px;
    font-weight: 600;
    font-size: .86rem;
    color: var(--dark);
    display: inline-block;
}

/* =========================================
   TABLE STYLES (Loader for Sale)
   ========================================= */
.post-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.post-content table thead { background: var(--dark); color: var(--white); }
.post-content table th { padding: 12px 16px; text-align: left; }
.post-content table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.post-content table tr:nth-child(even) td { background: var(--light); }
.post-content h2 { margin: 28px 0 12px; color: var(--dark); }
.post-content h3 { margin: 22px 0 10px; color: var(--green-deep); }
.post-content h4 { margin: 18px 0 8px; color: var(--dark); }
.post-content ul { margin: 12px 0 16px 20px; list-style: disc; }
.post-content ul li { color: var(--gray); margin-bottom: 6px; }
.post-content strong { color: var(--dark); }

/* =========================================
   BLOG TAGS & TAG CLOUD
   ========================================= */
.post-tags-wrap {
    margin: 36px 0 0;
    padding: 20px 24px;
    background: var(--light);
    border: 1px solid var(--green-light, #bbf7d0);
    border-radius: 12px;
}
.post-tags-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: .88rem;
    color: var(--gray);
}
.post-tags-icon { font-size: 1.1rem; }
.post-tags-list { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag {
    display: inline-block;
    padding: 5px 13px;
    background: var(--white);
    border: 1.5px solid var(--green);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.post-tag:hover { background: var(--green); color: var(--white); }

/* Mini tags on blog list cards */
.post-tags-mini { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.post-tag-mini {
    display: inline-block;
    padding: 3px 10px;
    background: var(--light2, #dcfce7);
    border: 1px solid var(--green);
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--green-deep);
    text-decoration: none;
    transition: background .2s, color .2s;
}
.post-tag-mini:hover { background: var(--green); color: var(--white); }

/* Blog category inline badge */
.blog-cat-inline {
    background: var(--green);
    color: var(--black);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
}

/* Tag cloud sidebar widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(34,197,94,.08);
    border: 1px solid rgba(34,197,94,.3);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
}
.tag-cloud-tag:hover,
.tag-cloud-tag.tag-active {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
}
.tag-count {
    background: rgba(0,0,0,.18);
    border-radius: 50px;
    padding: 1px 6px;
    font-size: .68rem;
}
.tag-cloud-tag:hover .tag-count,
.tag-cloud-tag.tag-active .tag-count { background: rgba(0,0,0,.25); }

/* Post footer bar (share + back) */
.post-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.post-share { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.share-btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white);
}
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-btn:hover { opacity: .88; color: var(--white); }
.back-to-blog {
    font-size: .88rem;
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
}
.back-to-blog:hover { text-decoration: underline; }

/* Sidebar widget base */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
    margin-bottom: 26px;
}
.sidebar-widget h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--green);
}
.sidebar-nav { display: flex; flex-direction: column; gap: 6px; }
.sidebar-nav a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: .88rem;
    color: var(--dark);
    text-decoration: none;
    transition: background .2s;
}
.sidebar-nav a:hover { background: var(--light); color: var(--green-deep); }

/* Blog page grid */
.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
@media(max-width:1024px) { .blog-page-grid { grid-template-columns: 1fr 280px; gap: 24px; } }
@media(max-width:768px)  { .blog-page-grid { grid-template-columns: 1fr; } }

/* Blog list cards */
.blog-list { display: flex; flex-direction: column; gap: 28px; }
.blog-list-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .2s;
}
.blog-list-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.blog-list-img { overflow: hidden; }
.blog-list-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.blog-list-card:hover .blog-list-img img { transform: scale(1.04); }
.blog-list-body { padding: 24px 26px; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-size: .8rem; color: var(--gray); margin-bottom: 10px; }
.blog-list-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-list-body h3 a { color: var(--dark); text-decoration: none; }
.blog-list-body h3 a:hover { color: var(--green); }
.blog-list-body p { font-size: .9rem; color: var(--gray); line-height: 1.65; flex: 1; }
@media(max-width:680px) {
    .blog-list-card { grid-template-columns: 1fr; }
    .blog-list-img { height: 200px; }
}

/* Page hero for blog/tag pages */
.blog-page { padding: 60px 0 80px; }
