/* ============================================
   CHILTERN ASSOCIATES - MODERN HOMEPAGE CSS
   Color Palette:
   Primary: #1F7A63
   Secondary: #145A4A
   Accent BG: #E8F5F1
   CTA: #FF7A00
   Text: #1A1A1A
   Background: #F8FBFA
============================================ */

:root {
    --primary: #1F7A63;
    --primary-dark: #145A4A;
    --accent-bg: #E8F5F1;
    --cta: #FF7A00;
    --cta-hover: #E56E00;
    --text-dark: #1A1A1A;
    --text-body: #4A4A4A;
    --bg-light: #F8FBFA;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---- HERO SECTION ---- */
.hp-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 92vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,50,42,0.95) 0%, rgba(31,122,99,0.85) 60%, rgba(20,90,74,0.75) 100%);
    z-index: 1;
}
.hp-hero-content {
    padding-right: 30px;
}
.hp-hero-label {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
.hp-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}
.hp-hero-highlight {
    color: var(--cta);
    position: relative;
}
.hp-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 480px;
    font-weight: 300;
}
.hp-hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero stats bar */
.hp-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hp-hero-stat {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
}
.hp-hero-stat:first-child { padding-left: 0; }
.hp-hero-stat strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hp-hero-stat span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* Hero visual (right column) */
.hp-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 20px;
}
.hp-hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 480px;
    width: 100%;
}
.hp-hero-img-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
    pointer-events: none;
}
.hp-hero-img-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Floating trust card */
.hp-hero-float-card {
    position: absolute;
    bottom: 10px;
    left: -10px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: heroFloat 3s ease-in-out infinite;
}
.hp-hero-float-card i {
    font-size: 28px;
    color: var(--primary);
}
.hp-hero-float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}
.hp-hero-float-card span {
    font-size: 12px;
    color: var(--text-body);
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.hp-btn-cta {
    display: inline-block;
    background: var(--cta);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.hp-btn-cta:hover { background: var(--cta-hover); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,122,0,0.35); }
.hp-btn-outline {
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.hp-btn-outline:hover { background: var(--white); color: var(--primary); }
.hp-btn-green {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}
.hp-btn-green:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); }

/* ---- TRUST BAR ---- */
.hp-trust-bar {
    background: var(--white);
    padding: 48px 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 3;
    margin-top: -60px;
    border-radius: var(--radius-lg);
}
.hp-trust-bar .row {
    align-items: center;
}
.hp-trust-bar .row > [class*="col-"]:not(:last-child) .hp-trust-item {
    border-right: 1px solid #E8ECF0;
}
.hp-trust-item {
    text-align: center;
    padding: 16px 20px;
}
.hp-trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}
.hp-trust-item:hover .hp-trust-icon {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31,122,99,0.25);
}
.hp-trust-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.hp-trust-item:hover .hp-trust-icon i {
    color: var(--white);
}
.hp-trust-item h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
}
.hp-trust-item p {
    font-size: 13px;
    color: var(--text-body);
    margin: 0;
    letter-spacing: 0.3px;
}

/* ---- SECTION COMMON ---- */
.hp-section {
    padding: 80px 0;
}
.hp-section-light { background: var(--bg-light); }
.hp-section-accent { background: var(--accent-bg); }
.hp-section-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}
.hp-section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}
.hp-section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    line-height: 1.6;
}
.hp-section-green .hp-section-title { color: var(--white); }
.hp-section-green .hp-section-subtitle { color: rgba(255,255,255,0.85); }
.hp-label {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ---- SERVICE CARDS ---- */
.hp-service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hp-service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.hp-service-card-img {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.hp-service-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.hp-service-card-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.hp-service-card:hover .hp-service-card-img img { transform: scale(1.05); }
.hp-service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp-service-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-service-card-body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.hp-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.hp-card-link:hover { color: var(--primary-dark); gap: 10px; }

/* ---- ABOUT / EXPERTISE ---- */
.hp-about-section {
    background: var(--white);
    overflow: hidden;
}
.hp-about-visual {
    position: relative;
    padding: 20px;
}
.hp-about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.hp-about-img-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.hp-about-accent-shape {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-lg);
    background: var(--accent-bg);
    z-index: -1;
}
.hp-about-exp-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(31,122,99,0.35);
    z-index: 2;
}
.hp-about-exp-num {
    font-size: 44px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hp-about-exp-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    opacity: 0.9;
}
.hp-about-content {
    padding-left: 20px;
}
.hp-about-content .hp-section-title {
    font-size: 36px;
    margin-bottom: 8px;
}
.hp-about-bar {
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 24px;
}
.hp-about-desc {
    margin-bottom: 32px;
}
.hp-about-desc p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 14px;
}
.hp-about-desc p:last-child {
    margin-bottom: 0;
}
.hp-about-desc ul {
    padding-left: 0;
    list-style: none;
}
.hp-about-desc ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-body);
    font-size: 15px;
}
.hp-about-desc ul li::before {
    content: "\F272";
    font-family: bootstrap-icons;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 16px;
}
.hp-about-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}
.hp-about-hl {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius);
    flex: 1;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.hp-about-hl:hover {
    background: var(--white);
    border-color: rgba(31,122,99,0.15);
    box-shadow: 0 4px 16px rgba(31,122,99,0.08);
    transform: translateY(-2px);
}
.hp-about-hl-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.hp-about-hl:hover .hp-about-hl-icon {
    background: var(--primary);
}
.hp-about-hl-icon i {
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.hp-about-hl:hover .hp-about-hl-icon i {
    color: var(--white);
}
.hp-about-hl-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2px;
}
.hp-about-hl-text span {
    font-size: 12px;
    color: var(--text-body);
}

/* ---- WHAT WE DO ---- */
.hp-wwd-section {
    background: var(--white);
    overflow: hidden;
    padding: 100px 0;
}
.hp-wwd-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
}
.hp-wwd-img img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.hp-wwd-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(31,122,99,0.35);
    z-index: 2;
    letter-spacing: 0.3px;
}
.hp-wwd-img-badge i {
    font-size: 16px;
}
.hp-wwd-right {
    padding-left: 40px;
}
.hp-wwd-right .hp-label {
    margin-bottom: 12px;
}
.hp-wwd-right .hp-section-title {
    font-size: 36px;
    margin-bottom: 8px;
    position: relative;
}
.hp-wwd-title-bar {
    width: 48px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 24px;
}
.hp-wwd-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 36px;
}
.hp-wwd-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}
.hp-wwd-feat {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.hp-wwd-feat:hover {
    background: var(--white);
    border-color: rgba(31,122,99,0.15);
    box-shadow: 0 4px 20px rgba(31,122,99,0.08);
    transform: translateX(4px);
}
.hp-wwd-feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.hp-wwd-feat:hover .hp-wwd-feat-icon {
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(31,122,99,0.3);
}
.hp-wwd-feat-icon i {
    font-size: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}
.hp-wwd-feat:hover .hp-wwd-feat-icon i {
    color: var(--white);
}
.hp-wwd-feat-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
}
.hp-wwd-feat-text span {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

/* ---- RICS HIGHLIGHT ---- */
.hp-rics {
    background: var(--accent-bg);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.hp-rics::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(31,122,99,0.05);
    pointer-events: none;
}
.hp-rics h3 {
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 16px;
    line-height: 1.3;
}
.hp-rics p { font-size: 16px; color: var(--text-body); line-height: 1.8; }
.hp-rics-logo {
    max-width: 90px;
    margin-bottom: 24px;
    padding: 12px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: block;
}
.hp-rics-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 380px;
}
.hp-rics-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- AREAS COVERED ---- */
.hp-areas-section {
    background: var(--bg-light);
    overflow: hidden;
}
.hp-areas-intro .hp-section-title {
    font-size: 36px;
    margin-bottom: 8px;
}
.hp-areas-desc {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
}
.hp-areas-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}
.hp-areas-stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.hp-areas-stat-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}
.hp-areas-stat-text span {
    font-size: 13px;
    color: var(--text-body);
}
.hp-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.hp-area-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}
.hp-area-card:hover {
    box-shadow: 0 6px 24px rgba(31,122,99,0.1);
    transform: translateY(-2px);
    border-color: rgba(31,122,99,0.12);
}
.hp-area-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.hp-area-card:hover .hp-area-check {
    background: var(--primary);
}
.hp-area-check i {
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
}
.hp-area-card:hover .hp-area-check i {
    color: var(--white);
}
.hp-area-step {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}
.hp-area-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* ---- PROJECT CARDS ---- */
.hp-project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hp-project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.hp-project-card-img {
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}
.hp-project-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.hp-project-card-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.hp-project-card:hover .hp-project-card-img img { transform: scale(1.05); }
.hp-project-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}
.hp-project-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}
.hp-project-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.hp-project-card .hp-card-link { margin-top: auto; }

/* ---- TESTIMONIALS ---- */
.hp-testimonial-section { overflow: hidden; }
.hp-testimonial-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hp-tcard {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.hp-tcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.hp-tcard-quote {
    margin-bottom: 16px;
}
.hp-tcard-quote i {
    font-size: 32px;
    color: var(--primary);
    opacity: 0.3;
}
.hp-tcard-text {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}
.hp-tcard-footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}
.hp-tcard-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}
.hp-tcard-name {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}
.hp-tcard-role {
    font-size: 12px;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-tcard-stars {
    display: flex;
    gap: 3px;
}
.hp-tcard-stars i {
    font-size: 14px;
    color: #F5A623;
}

/* ---- WHY CHOOSE US ---- */
.hp-why-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}
.hp-why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-bottom-color: var(--primary); }
.hp-why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(31,122,99,0.25);
}
.hp-why-card:hover .hp-why-icon { background: var(--primary-dark); transform: scale(1.1) rotate(5deg); }
.hp-why-icon i { font-size: 30px; color: var(--white); transition: all 0.3s ease; }
.hp-why-icon img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}
.hp-why-card:hover .hp-why-icon img { filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
.hp-why-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.hp-why-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* ---- BLOG CARDS ---- */
.hp-blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hp-blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.hp-blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.hp-blog-card-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.hp-blog-card-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}
.hp-blog-card:hover .hp-blog-card-img img { transform: scale(1.05); }
.hp-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.hp-blog-card-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-blog-card-body p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.hp-blog-card .hp-card-link {
    margin-top: auto;
}

/* ---- CTA BANNER ---- */
.hp-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hp-cta-banner::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hp-cta-banner::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.hp-cta-banner h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}
.hp-cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.hp-cta-banner .hp-btn-cta,
.hp-cta-banner .hp-btn-outline { position: relative; z-index: 1; }

/* ---- GLOBAL POLISH ---- */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
::selection { background: var(--primary); color: var(--white); }
img { max-width: 100%; height: auto; }

/* ====== ANIMATION SYSTEM ====== */

/* Base animate class */
.hp-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hp-animate.hp-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Directional variants */
.hp-animate-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hp-animate-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hp-animate-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hp-animate-left.hp-visible,
.hp-animate-right.hp-visible,
.hp-animate-scale.hp-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Stagger delays for grid children */
.hp-delay-1 { transition-delay: 0.1s !important; }
.hp-delay-2 { transition-delay: 0.2s !important; }
.hp-delay-3 { transition-delay: 0.3s !important; }
.hp-delay-4 { transition-delay: 0.4s !important; }
.hp-delay-5 { transition-delay: 0.5s !important; }
.hp-delay-6 { transition-delay: 0.6s !important; }

/* ====== HOVER EFFECTS ON CARDS ====== */

/* Service cards lift & shadow */
.hp-service-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hp-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(31,122,99,0.15);
}
.hp-service-card:hover .hp-service-card-img img {
    transform: scale(1.05);
}
.hp-service-card-img img {
    transition: transform 0.5s ease;
}

/* Project cards hover lift */
.hp-project-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hp-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(31,122,99,0.12);
}

/* Testimonial cards hover glow */
.hp-tcard {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hp-tcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31,122,99,0.18);
}

/* Blog cards hover lift & image zoom */
.hp-blog-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hp-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.hp-blog-card:hover .hp-blog-card-img img {
    transform: scale(1.05);
}
.hp-blog-card-img img {
    transition: transform 0.5s ease;
}
.hp-blog-card-img {
    overflow: hidden;
}

/* Why Choose Us card hover */
.hp-why-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.hp-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(31,122,99,0.12);
    border-color: var(--primary);
}
.hp-why-card:hover .hp-why-icon {
    transform: scale(1.1) rotate(5deg);
}
.hp-why-icon {
    transition: transform 0.35s ease;
}

/* Area card hover */
.hp-area-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ====== BUTTON EFFECTS ====== */
.hp-btn-cta,
.hp-btn-green,
.hp-btn-outline {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hp-btn-cta:hover,
.hp-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31,122,99,0.3);
}
.hp-btn-outline:hover {
    transform: translateY(-2px);
}

/* Button shine sweep */
.hp-btn-cta::after,
.hp-btn-green::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.hp-btn-cta:hover::after,
.hp-btn-green:hover::after {
    left: 120%;
}

/* ====== CARD LINK ARROW SLIDE ====== */
.hp-card-link i {
    transition: transform 0.3s ease;
}
.hp-card-link:hover i {
    transform: translateX(5px);
}

/* ====== HERO ANIMATIONS ====== */
.hp-hero-content {
    animation: heroSlideUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hp-hero-visual {
    animation: heroSlideRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
.hp-hero-stats {
    animation: heroFadeUp 0.8s ease 0.6s both;
}
.hp-hero-label {
    animation: heroLabelPop 0.6s ease 0.2s both;
}
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes heroLabelPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Hero image card hover tilt */
.hp-hero-img-card {
    transition: transform 0.4s ease;
}
.hp-hero-img-card:hover {
    transform: translateY(-6px) rotate(-1deg);
}

/* ====== FLOATING / PULSE EFFECTS ====== */

/* Soft pulse on trust bar icons */
.hp-trust-item i {
    transition: transform 0.3s ease, color 0.3s ease;
}
.hp-trust-item:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

/* RICS logo gentle pulse */
.hp-rics-logo {
    animation: gentlePulse 3s ease-in-out infinite;
}
@keyframes gentlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* What-We-Do feature icon hover */
.hp-wwd-feat {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hp-wwd-feat:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(31,122,99,0.1);
}
.hp-wwd-feat-icon {
    transition: transform 0.3s ease, background 0.3s ease;
}
.hp-wwd-feat:hover .hp-wwd-feat-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--primary);
    color: #fff;
}
.hp-wwd-feat:hover .hp-wwd-feat-icon i {
    color: #fff;
}

/* Experience card float */
.hp-about-exp-card {
    animation: aboutExpFloat 3s ease-in-out infinite;
}
@keyframes aboutExpFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ====== TESTIMONIAL STARS SHIMMER ====== */
.hp-tcard-stars i {
    transition: transform 0.3s ease;
}
.hp-tcard:hover .hp-tcard-stars i:nth-child(1) { animation: starPop 0.3s ease 0s both; }
.hp-tcard:hover .hp-tcard-stars i:nth-child(2) { animation: starPop 0.3s ease 0.06s both; }
.hp-tcard:hover .hp-tcard-stars i:nth-child(3) { animation: starPop 0.3s ease 0.12s both; }
.hp-tcard:hover .hp-tcard-stars i:nth-child(4) { animation: starPop 0.3s ease 0.18s both; }
.hp-tcard:hover .hp-tcard-stars i:nth-child(5) { animation: starPop 0.3s ease 0.24s both; }
@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

/* ====== SECTION DIVIDER LINES ====== */
.hp-section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin-top: 14px;
    border-radius: 2px;
    transition: width 0.4s ease;
}
.text-center .hp-section-title::after,
.hp-section-title.text-center::after {
    margin-left: auto;
    margin-right: auto;
}
.hp-animate.hp-visible .hp-section-title::after,
.hp-animate-left.hp-visible .hp-section-title::after,
.hp-animate-right.hp-visible .hp-section-title::after {
    width: 60px;
}

/* ====== QUOTE ICON ROTATE ON HOVER ====== */
.hp-tcard-quote i {
    transition: transform 0.4s ease, color 0.4s ease;
}
.hp-tcard:hover .hp-tcard-quote i {
    transform: rotate(10deg) scale(1.15);
}

/* ====== SMOOTH SCROLL SECTIONS ====== */
html {
    scroll-behavior: smooth;
}

/* ====== WE DO IMAGE PARALLAX-LIKE ====== */
.hp-wwd-img img {
    transition: transform 0.5s ease;
}
.hp-wwd-img:hover img {
    transform: scale(1.03);
}
.hp-wwd-img-badge {
    transition: transform 0.3s ease;
}
.hp-wwd-img:hover .hp-wwd-img-badge {
    transform: translateY(-4px);
}

/* ====== RICS IMAGE ZOOM ====== */
.hp-rics-img-wrap img {
    transition: transform 0.6s ease;
}
.hp-rics-img-wrap:hover img {
    transform: scale(1.04);
}

/* ====== ABOUT IMAGE HOVER ====== */
.hp-about-img-wrapper img {
    transition: transform 0.5s ease;
}
.hp-about-img-wrapper:hover img {
    transform: scale(1.03);
}

/* ====== LABEL POP ON VISIBLE ====== */
.hp-label {
    transition: transform 0.3s ease;
}
.hp-animate.hp-visible .hp-label,
.hp-animate-left.hp-visible .hp-label,
.hp-animate-right.hp-visible .hp-label {
    animation: labelSlideIn 0.5s ease 0.2s both;
}
@keyframes labelSlideIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ====== REDUCE MOTION FOR ACCESSIBILITY ====== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hp-animate, .hp-animate-left, .hp-animate-right, .hp-animate-scale {
        opacity: 1;
        transform: none;
    }
}

/* Trust bar dividers */
.hp-trust-item { position: relative; }
.hp-trust-bar .col-lg-3:not(:last-child) .hp-trust-item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 1px;
    background: #e0e0e0;
}

/* Section title centered variant */
.hp-section-title.text-center,
.text-center .hp-section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Section subtitle */
.hp-section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

/* Service card image consistent height */
.hp-service-card-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.03));
    pointer-events: none;
    z-index: 1;
}

/* Area card cursor */
.hp-area-card { cursor: default; }

/* Project card - no icon needed (has images now) */

/* Blog card date badge */
.hp-blog-date {
    display: inline-block;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* CTA banner outline button for dark bg */
.hp-cta-banner .hp-btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}
.hp-cta-banner .hp-btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Hide Elementor content output */
.hp-elementor-content { display: none; }

/* ============================================
   RESPONSIVE STYLES
============================================ */

/* ---- TABLET (max 991px) ---- */
@media (max-width: 991px) {
    /* Hero */
    .hp-hero { min-height: 0; padding: 90px 0 60px; }
    .hp-hero-content h1 { font-size: 34px; }
    .hp-hero-content { padding-right: 0; text-align: center; }
    .hp-hero-content p { font-size: 16px; max-width: 100%; margin-left: auto; margin-right: auto; }
    .hp-hero-btns { justify-content: center; }
    .hp-hero-stats { justify-content: center; }
    .hp-hero-visual { margin-top: 40px; }
    .hp-hero-img-card img { height: 340px; }
    .hp-hero-float-card { left: 10px; bottom: 0; }

    /* Sections */
    .hp-section { padding: 60px 0; }
    .hp-section-title { font-size: 30px; }

    /* Trust Bar */
    .hp-trust-bar { margin-top: 0; border-radius: var(--radius); padding: 32px 20px; }
    .hp-trust-bar .col-lg-3:not(:last-child) .hp-trust-item::after { display: none; }
    .hp-trust-bar .row > [class*="col-"]:not(:last-child) .hp-trust-item { border-right: none; }

    /* About */
    .hp-about-content { padding-left: 0; margin-top: 36px; }
    .hp-about-img-wrapper img { height: 380px; }
    .hp-about-exp-card { padding: 18px 22px; }
    .hp-about-exp-num { font-size: 36px; }

    /* What We Do */
    .hp-wwd-section { padding: 60px 0; }
    .hp-wwd-right { padding-left: 0; margin-top: 36px; }

    /* RICS */
    .hp-rics { padding: 32px 24px; }
    .hp-rics-img-wrap { min-height: 300px; margin-top: 24px; }

    /* Cards */
    .hp-service-card-img { height: 200px; }
    .hp-blog-card-img { height: 200px; }
    .hp-project-card-img { height: 200px; }

    /* Testimonials */
    .hp-testimonial-slider { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .hp-tcard:nth-child(n+5) { display: none; }

    /* CTA */
    .hp-cta-banner h2 { font-size: 30px; }
}

/* ---- MOBILE (max 767px) ---- */
@media (max-width: 767px) {
    /* Hero */
    .hp-hero { padding: 80px 0 40px; min-height: 0; }
    .hp-hero-content { text-align: center; padding-right: 0; }
    .hp-hero-content h1 { font-size: 26px; line-height: 1.25; margin-bottom: 16px; }
    .hp-hero-content p { font-size: 14px; margin-left: auto; margin-right: auto; margin-bottom: 28px; line-height: 1.6; max-width: 100%; }
    .hp-hero-label { font-size: 11px; padding: 6px 14px; margin-bottom: 20px; }
    .hp-hero-btns { 
        flex-direction: column; 
        align-items: stretch; 
        gap: 12px;
    }
    .hp-btn-cta, .hp-btn-outline, .hp-btn-green {
        display: block;
        text-align: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 14px;
    }
    .hp-hero-stats { 
        justify-content: center; 
        margin-top: 32px; 
        padding-top: 24px;
        gap: 0;
    }
    .hp-hero-stat { padding: 0 16px; }
    .hp-hero-stat:first-child { padding-left: 16px; }
    .hp-hero-stat strong { font-size: 20px; }
    .hp-hero-stat span { font-size: 11px; }

    /* Hero Visual */
    .hp-hero-visual { 
        margin-top: 32px; 
        padding: 0 16px; 
        flex-direction: column;
        align-items: center;
    }
    .hp-hero-img-card { max-width: 100%; }
    .hp-hero-img-card img { height: 220px; }
    .hp-hero-float-card { 
        position: relative; 
        left: auto; 
        bottom: auto; 
        margin: -20px auto 0; 
        width: fit-content;
        animation: none;
        box-shadow: var(--shadow-md);
        padding: 14px 20px;
        z-index: 4;
    }
    .hp-hero-float-card i { font-size: 22px; }
    .hp-hero-float-card strong { font-size: 13px; }
    .hp-hero-float-card span { font-size: 11px; }

    /* Sections */
    .hp-section { padding: 48px 0; }
    .hp-section-title { font-size: 24px; margin-bottom: 12px; }
    .hp-section-subtitle { font-size: 15px; }
    .hp-label { font-size: 11px; padding: 5px 14px; letter-spacing: 0.8px; margin-bottom: 10px; }

    /* Trust Bar */
    .hp-trust-bar { 
        padding: 20px 16px; 
        margin-top: 0; 
        border-radius: var(--radius); 
        box-shadow: var(--shadow-sm);
    }
    .hp-trust-bar .row { row-gap: 0; }
    .hp-trust-bar .row > [class*="col-"]:not(:last-child) .hp-trust-item { border-right: none; }
    .hp-trust-item { 
        text-align: left; 
        padding: 10px 8px; 
        display: flex; 
        align-items: center; 
        gap: 12px; 
    }
    .hp-trust-icon { 
        width: 40px; 
        height: 40px; 
        border-radius: 10px; 
        margin: 0; 
        flex-shrink: 0; 
    }
    .hp-trust-icon i { font-size: 18px; }
    .hp-trust-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 1px; }
    .hp-trust-item p { font-size: 11px; line-height: 1.3; }

    /* About */
    .hp-about-visual { padding: 10px; }
    .hp-about-content { padding-left: 0; margin-top: 28px; }
    .hp-about-content .hp-section-title { font-size: 24px; }
    .hp-about-img-wrapper img { height: 280px; }
    .hp-about-accent-shape { width: 100px; height: 100px; bottom: -10px; right: -10px; }
    .hp-about-exp-card { padding: 16px 20px; gap: 10px; }
    .hp-about-exp-num { font-size: 32px; }
    .hp-about-exp-label { font-size: 11px; }
    .hp-about-desc p { font-size: 14px; }
    .hp-about-bar { margin-bottom: 18px; }
    .hp-about-highlights { flex-direction: column; gap: 12px; margin-bottom: 24px; }
    .hp-about-hl { padding: 14px 16px; gap: 12px; }
    .hp-about-hl-icon { width: 38px; height: 38px; }
    .hp-about-hl-icon i { font-size: 18px; }
    .hp-about-hl-text strong { font-size: 13px; }
    .hp-about-hl-text span { font-size: 11px; }

    /* What We Do */
    .hp-wwd-section { padding: 48px 0; }
    .hp-wwd-img img { height: 280px; min-height: 0; }
    .hp-wwd-right { padding-left: 0; margin-top: 28px; }
    .hp-wwd-right .hp-section-title { font-size: 24px; }
    .hp-wwd-desc { font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
    .hp-wwd-title-bar { margin-bottom: 18px; }
    .hp-wwd-features { gap: 12px; margin-bottom: 24px; }
    .hp-wwd-feat { padding: 16px; gap: 14px; }
    .hp-wwd-feat-icon { width: 44px; height: 44px; }
    .hp-wwd-feat-icon i { font-size: 18px; }
    .hp-wwd-feat-text strong { font-size: 14px; }
    .hp-wwd-feat-text span { font-size: 12px; }
    .hp-wwd-img-badge { padding: 10px 16px; font-size: 12px; bottom: 16px; right: 16px; }
    .hp-wwd-img-badge i { font-size: 14px; }

    /* RICS */
    .hp-rics { padding: 24px 20px; }
    .hp-rics h3 { font-size: 22px; }
    .hp-rics p { font-size: 14px; }
    .hp-rics-img-wrap { min-height: 220px; margin-top: 20px; }
    .hp-rics-logo { max-width: 70px; margin-bottom: 16px; }

    /* Areas */
    .hp-areas-grid { grid-template-columns: 1fr; gap: 10px; }
    .hp-area-card { padding: 14px 16px; gap: 12px; }
    .hp-area-check { width: 28px; height: 28px; }
    .hp-area-check i { font-size: 14px; }
    .hp-area-step { font-size: 10px; }
    .hp-area-name { font-size: 13px; }
    .hp-areas-desc { font-size: 13px; margin-bottom: 24px; }
    .hp-areas-stat { padding: 16px 20px; }
    .hp-areas-stat-num { font-size: 32px; }
    .hp-areas-intro .hp-section-title { font-size: 24px; }

    /* Service Cards */
    .hp-service-card-img { height: 180px; }
    .hp-service-card-body { padding: 18px; }
    .hp-service-card-body h4 { font-size: 16px; min-height: 0; }
    .hp-service-card-body p { font-size: 13px; }

    /* Project Cards */
    .hp-project-card-img { height: 180px; }
    .hp-project-card-body { padding: 18px; }
    .hp-project-card h4 { font-size: 17px; }
    .hp-project-card p { font-size: 13px; }

    /* Testimonials */
    .hp-testimonial-slider { grid-template-columns: 1fr; gap: 16px; }
    .hp-tcard:nth-child(n+4) { display: none; }
    .hp-tcard { padding: 24px; }
    .hp-tcard-text { font-size: 14px; margin-bottom: 18px; }
    .hp-tcard-quote i { font-size: 26px; }

    /* Why Choose Us */
    .hp-why-card { padding: 24px 16px; }
    .hp-why-icon { width: 60px; height: 60px; }
    .hp-why-icon i { font-size: 24px; }
    .hp-why-icon img { width: 28px !important; height: 28px !important; }
    .hp-why-card h5 { font-size: 15px; }
    .hp-why-card p { font-size: 13px; }

    /* Blog Cards */
    .hp-blog-card-img { height: 180px; }
    .hp-blog-card-body { padding: 18px; }
    .hp-blog-card-body h4 { font-size: 16px; }
    .hp-blog-card-body p { font-size: 13px; }
    .hp-blog-header { flex-direction: column; align-items: flex-start !important; }

    /* CTA Banner */
    .hp-cta-banner { padding: 48px 0; }
    .hp-cta-banner h2 { font-size: 24px; }
    .hp-cta-banner p { font-size: 14px; margin-bottom: 24px; }

    /* Card links */
    .hp-card-link { font-size: 14px; }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {
    /* Hero */
    .hp-hero { padding: 70px 0 32px; }
    .hp-hero-content h1 { font-size: 22px; }
    .hp-hero-content p { font-size: 13px; margin-bottom: 24px; }
    .hp-hero-label { font-size: 10px; padding: 5px 12px; }
    .hp-hero-stats { flex-wrap: wrap; gap: 12px; margin-top: 24px; padding-top: 20px; }
    .hp-hero-stat-divider { display: none; }
    .hp-hero-stat { padding: 0; text-align: center; flex: 0 0 auto; }
    .hp-hero-stat strong { font-size: 18px; }
    .hp-hero-stat span { font-size: 10px; }
    .hp-hero-img-card img { height: 180px; }
    .hp-hero-float-card { padding: 12px 16px; gap: 10px; margin-top: -18px; }
    .hp-hero-float-card i { font-size: 20px; }
    .hp-hero-float-card strong { font-size: 12px; }
    .hp-hero-float-card span { font-size: 10px; }
    .hp-hero-visual { padding: 0 8px; }

    /* Sections */
    .hp-section { padding: 36px 0; }
    .hp-section-title { font-size: 21px; }

    /* Trust Bar */
    .hp-trust-bar { padding: 14px 10px; }
    .hp-trust-bar .row { row-gap: 0; }
    .hp-trust-item { padding: 8px 6px; gap: 10px; }
    .hp-trust-icon { width: 34px; height: 34px; border-radius: 8px; }
    .hp-trust-icon i { font-size: 15px; }
    .hp-trust-item h4 { font-size: 12px; margin-bottom: 0; }
    .hp-trust-item p { font-size: 9px; }

    /* About */
    .hp-about-visual { padding: 0; }
    .hp-about-img-wrapper img { height: 220px; }
    .hp-about-accent-shape { display: none; }
    .hp-about-exp-card { padding: 14px 16px; gap: 8px; }
    .hp-about-exp-num { font-size: 26px; }
    .hp-about-exp-label { font-size: 10px; }
    .hp-about-content .hp-section-title { font-size: 21px; }
    .hp-about-desc p { font-size: 13px; }

    /* What We Do */
    .hp-wwd-section { padding: 36px 0; }
    .hp-wwd-img img { height: 220px; }
    .hp-wwd-right .hp-section-title { font-size: 21px; }
    .hp-wwd-desc { font-size: 13px; }
    .hp-wwd-feat { padding: 14px; gap: 12px; }
    .hp-wwd-feat-icon { width: 40px; height: 40px; }
    .hp-wwd-feat-icon i { font-size: 16px; }
    .hp-wwd-feat-text strong { font-size: 13px; }
    .hp-wwd-feat-text span { font-size: 11px; }

    /* RICS */
    .hp-rics { padding: 20px 16px; }
    .hp-rics h3 { font-size: 20px; }
    .hp-rics p { font-size: 13px; }
    .hp-rics-logo { max-width: 60px; }
    .hp-rics-img-wrap { min-height: 180px; }

    /* Areas */
    .hp-areas-grid { gap: 8px; }
    .hp-area-card { padding: 12px 14px; }
    .hp-area-check { width: 26px; height: 26px; }
    .hp-area-check i { font-size: 13px; }
    .hp-area-name { font-size: 12px; }
    .hp-areas-stat-num { font-size: 28px; }
    .hp-areas-intro .hp-section-title { font-size: 21px; }

    /* Cards */
    .hp-service-card-img { height: 160px; }
    .hp-blog-card-img { height: 160px; }
    .hp-project-card-img { height: 150px; }

    /* CTA */
    .hp-cta-banner { padding: 36px 0; }
    .hp-cta-banner h2 { font-size: 20px; }
    .hp-cta-banner p { font-size: 13px; }

    /* Buttons full width */
    .hp-btn-cta, .hp-btn-outline, .hp-btn-green {
        padding: 13px 20px;
        font-size: 13px;
    }
}
