/* ==========================================================================
   URBANNEST INTERIORS - PREMIUM CUSTOM THEME STYLES
   ========================================================================== */

/* 1. Brand Tokens & Variables */
:root {
    --primary: #17365D;
    --primary-dark: #0F2542;
    --primary-light: #21487A;
    --secondary: #C8A046;
    --secondary-dark: #B28830;
    --secondary-light: #E5C374;
    --background: #F8F8F8;
    --white: #FFFFFF;
    --dark: #222222;
    --muted: #777777;
    --light-gray: #EDEDED;
    --success: #2E7D32;
    --error: #C62828;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-btn: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* 2. Typography & Core Overrides */
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Screen reader text for accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: var(--white);
    border-radius: 3px;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px;
    position: absolute;
    top: 5px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
}

/* 3. Base Buttons & Utilities */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-narrow {
    max-width: 800px;
}

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

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-btn);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--muted);
    font-size: 18px;
}

.urban-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-btn);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 160, 70, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-gold {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--primary);
}

.urban-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.urban-btn i:first-child {
    margin-right: 10px;
    margin-left: 0;
}

.urban-btn i:last-child {
    margin-left: 10px;
    margin-right: 0;
}

.urban-btn:hover i {
    transform: translateX(4px);
}

.full-width {
    width: 100%;
}

/* Scroll reveal items */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* 4. Top Bar & Navigation Header */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-contact a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

.top-bar-contact a i {
    color: var(--secondary);
    margin-right: 6px;
}

.top-bar-contact a:hover {
    color: var(--white);
}

/* Header sticky glassmorphism style */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(244, 237, 231, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    background: rgba(244, 237, 231, 0.95);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 20px;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-container {
    padding: 6px 20px;
}

.site-branding {
    display: flex;
    align-items: center;
}

/* Header branding styles */
.site-logo-link {
    display: flex;
    align-items: center;
}

.site-branding img.custom-logo {
    max-height: 68px;
    width: auto;
    display: block;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: brightness(1.08) contrast(1.08);
    transition: max-height 0.3s ease;
}

.site-header.scrolled .site-branding img.custom-logo {
    max-height: 48px;
}

.brand-logo-graphics {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 18px;
    margin-right: 12px;
    border: 2px solid var(--secondary);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.brand-tagline {
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-top: 2px;
}

/* Primary menu navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
    margin: 0 15px;
}

.main-navigation a {
    color: var(--primary);
    font-family: var(--font-btn);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.main-navigation li.current-menu-item a::after,
.main-navigation a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 15px;
}

.hamburger-box {
    width: 24px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    border-radius: 4px;
    transition: transform 0.15s ease;
}

.hamburger-inner {
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner::before {
    content: '';
    top: -6px;
}

.hamburger-inner::after {
    content: '';
    bottom: -6px;
}

/* Mobile drawer style */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-drawer.open {
    right: 0;
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--primary);
}

.drawer-content {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.drawer-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.drawer-content li {
    margin-bottom: 15px;
}

.drawer-content a {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    display: block;
    padding: 8px 0;
}

/* 5. Luxury Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(11, 23, 38, 0.9) 0%, rgba(23, 54, 93, 0.6) 50%, rgba(15, 37, 66, 0.8) 100%);
    z-index: 2;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 750px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-btn);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.15;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(25px);
}

.hero-description {
    font-size: clamp(16px, 2vw, 19px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(25px);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.hero-section .reveal-item {
    animation: heroReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-section .hero-subtitle { animation-delay: 0.2s; }
.hero-section .hero-title { animation-delay: 0.4s; }
.hero-section .hero-description { animation-delay: 0.6s; }
.hero-section .hero-actions { animation-delay: 0.8s; }

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 18px; opacity: 0; }
}

/* Claims Trust Bar */
.trust-claims-section {
    background: var(--white);
    padding: 30px 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 10;
}

.claims-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.claim-item {
    display: flex;
    align-items: center;
}

.claim-icon {
    font-size: 32px;
    color: var(--secondary);
    margin-right: 20px;
}

.claim-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.claim-info p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

/* 6. Featured Services Showcase */
.services-section {
    padding: 100px 0;
}

.urban-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(23, 54, 93, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary);
    color: var(--secondary);
}

.service-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.service-card-desc {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.service-link {
    font-family: var(--font-btn);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    color: var(--primary);
}

.service-link i {
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: var(--secondary);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* 7. About Preview & Stats Section */
.about-preview-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.accent-box-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 5;
    border-bottom: 4px solid var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary);
    margin-bottom: 4px;
}

.badge-txt {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.image-reveal-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.luxury-placeholder-image {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-overlay {
    text-align: center;
    padding: 20px;
}

.placeholder-overlay i {
    font-size: 64px;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
}

.placeholder-overlay span {
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--white);
}

.about-lead {
    font-size: 20px;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text {
    color: var(--muted);
    margin-bottom: 40px;
}

/* Stats Counter CSS */
.urban-stats-counter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-box {
    border-left: 2px solid var(--secondary);
    padding-left: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 8. Portfolio Showcase & Cards */
.projects-section {
    padding: 100px 0;
}

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-thumbnail-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.project-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-thumbnail-wrapper img {
    transform: scale(1.08);
}

.project-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.project-img-fallback i {
    font-size: 48px;
    color: var(--secondary);
}

/* Glassmorphic Overlay Details on Cards */
.project-card-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(23, 54, 93, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 5;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-card-meta {
    max-width: 80%;
}

.project-card-style-tag {
    display: inline-block;
    background: rgba(200, 160, 70, 0.2);
    color: var(--secondary-light);
    border: 1px solid rgba(200, 160, 70, 0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.project-card-title {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-card-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.project-card-location i {
    margin-right: 6px;
    font-size: 11px;
    color: var(--secondary);
}

.action-circle {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.project-card:hover .action-circle {
    background: var(--white);
    color: var(--primary);
}

/* Portfolio Filters on Archive Page */
.portfolio-filters-wrapper {
    margin-bottom: 40px;
}

.portfolio-filter-tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    font-family: var(--font-btn);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--primary);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 9. Execution Journey Process Timeline */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.urban-process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Vertical Timeline Line */
.urban-process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--light-gray);
}

.timeline-step {
    position: relative;
    display: flex;
    margin-bottom: 50px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-num-wrapper {
    width: 82px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.timeline-number {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-step:hover .timeline-number {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 160, 70, 0.35);
}

.timeline-content {
    background: var(--background);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-left: 20px;
    width: 100%;
}

.timeline-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-desc {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

/* 10. Testimonials Slider & FAQ Accordion */
.testimonials-section {
    padding: 100px 0;
}

.urban-testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-rating {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
    color: var(--primary);
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary);
}

.testimonial-client-info {
    text-align: left;
}

.client-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.client-location {
    font-size: 13px;
    color: var(--muted);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* FAQ Accordion Styling */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-layout-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.urban-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--background);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--secondary);
    background: var(--white);
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.faq-icon {
    font-size: 14px;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 24px 24px 24px;
    font-size: 14px;
    color: var(--muted);
    border-top: 1px solid transparent;
}

.faq-item.active .faq-content {
    border-top-color: rgba(0, 0, 0, 0.05);
}

/* 11. Consultation Interactive Form Section */
.consultation-form-section {
    padding: 100px 0;
    background: var(--primary-dark);
    color: var(--white);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    box-shadow: var(--shadow-lg);
}

.promo-tag {
    display: inline-block;
    color: var(--secondary);
    font-family: var(--font-btn);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.promo-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 20px;
}

.promo-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 35px;
}

.promo-bullets {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bullet-item {
    display: flex;
    align-items: center;
}

.bullet-item i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 18px;
}

.bullet-item span {
    font-size: 14px;
    font-weight: 500;
}

.form-interactive-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary);
}

/* Fields Styling */
.form-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }

.form-group label {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
    background: var(--background);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 160, 70, 0.15);
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* AJAX Form Status */
.form-status-msg {
    font-size: 13px;
    font-weight: 500;
}

.form-status-msg.loading {
    color: var(--primary);
}

.form-status-msg.success {
    color: var(--success);
}

.form-status-msg.error {
    color: var(--error);
}

/* 12. Single Project Specifications & Before/After Comparison */
.project-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    color: var(--white);
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 37, 66, 0.9) 0%, rgba(23, 54, 93, 0.4) 100%);
    z-index: 1;
}

.project-hero-container {
    position: relative;
    z-index: 2;
}

.project-meta-style {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.project-single-main .project-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 15px;
}

.project-quick-tags {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.project-quick-tags span {
    display: inline-flex;
    align-items: center;
}

.project-quick-tags i {
    color: var(--secondary);
    margin-right: 8px;
}

.project-details-section {
    padding: 80px 0;
}

.project-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.sub-section-title {
    font-size: 28px;
    margin-bottom: 25px;
}

.project-specs-panel {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.specs-panel-title {
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 11px;
    font-family: var(--font-btn);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 15px;
    color: var(--primary);
    font-weight: 500;
}

/* Before / After Slide Controller */
.before-after-section {
    padding: 80px 0;
    background: var(--white);
}

.before-after-slider-container {
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
}

.before-after-slider .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-after-slider .background-img {
    z-index: 1;
}

.before-after-slider .foreground-img {
    z-index: 2;
    width: 50%; /* starting comparison split */
    border-right: 3px solid var(--secondary);
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(23, 54, 93, 0.85);
    backdrop-filter: blur(5px);
    color: var(--white);
    font-size: 11px;
    font-family: var(--font-btn);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

.label-before {
    left: 20px;
    z-index: 10;
}

.label-after {
    right: 20px;
    z-index: 10;
}

/* Interactive Slider Controls */
.slider-bar {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 30;
    cursor: col-resize;
}

/* Hide default slider track/thumb */
.slider-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 44px;
    height: 44px;
    background: transparent;
}
.slider-bar::-moz-range-thumb {
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
}

.slider-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 40;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
}

.slider-button::before {
    content: '\f07e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
}

.project-testimonial-section {
    padding: 80px 0;
    background: var(--background);
}

.project-testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.project-testimonial-box .quote-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.project-quote {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-client-name strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
}

.project-client-name span {
    font-size: 13px;
    color: var(--muted);
}

.project-inquiry-cta {
    padding: 80px 0;
    background: var(--white);
}

.inquiry-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 65px;
    border-radius: var(--border-radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.inquiry-cta-box h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
}

.inquiry-cta-box p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
}

/* 13. Blog List & Single Blog Post Page */
.blog-layout-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 50px;
    margin: 80px 0;
}

.posts-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.blog-card-category a {
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-btn);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    border-top: 1px solid var(--light-gray);
    padding-top: 15px;
}

.blog-read-more-link {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
}

.blog-read-more-link i {
    margin-left: 6px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more-link i {
    transform: translateX(5px);
}

/* Single Blog Post Design */
.blog-single-header {
    background: var(--white);
    padding: 80px 0 50px 0;
    border-bottom: 1px solid var(--light-gray);
}

.entry-categories {
    margin-bottom: 15px;
}

.entry-categories a {
    background: rgba(23, 54, 93, 0.05);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

.blog-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary);
    margin-bottom: 20px;
}

.blog-meta-details {
    display: flex;
    gap: 25px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
}

.blog-meta-details i {
    color: var(--secondary);
    margin-right: 6px;
}

.entry-featured-image-wrapper {
    margin-top: 40px;
}

.featured-img-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-image-tag {
    width: 100%;
    max-height: 550px;
    object-fit: cover;
}

.blog-body-content {
    padding: 60px 0;
    background: var(--white);
}

.article-text-wrapper {
    font-size: 17px;
    line-height: 1.8;
}

.article-text-wrapper p {
    margin-bottom: 30px;
}

.article-text-wrapper h2 {
    font-size: 26px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.article-text-wrapper h3 {
    font-size: 20px;
    margin-top: 40px;
    margin-bottom: 15px;
}

.article-text-wrapper blockquote {
    border-left: 4px solid var(--secondary);
    padding: 10px 30px;
    margin: 40px 0;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 22px;
    color: var(--primary);
}

.entry-tags-wrapper {
    margin-top: 40px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 25px;
}

.tag-title {
    font-weight: 700;
    color: var(--primary);
    margin-right: 8px;
}

.entry-tags-wrapper a {
    display: inline-block;
    background: var(--background);
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 4px;
    color: var(--muted);
    margin-right: 6px;
    margin-bottom: 6px;
}

/* Sharing Box */
.article-social-share-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 40px;
}

.share-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.fb-share { background-color: #3b5998; }
.tw-share { background-color: #1da1f2; }
.ln-share { background-color: #0077b5; }
.wa-share { background-color: #25d366; }

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Author Box */
.author-bio-section {
    display: flex;
    background: var(--background);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    gap: 30px;
    margin-bottom: 60px;
}

.author-avatar-box {
    flex-shrink: 0;
}

.author-avatar-box img {
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.author-bio-text {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.article-newsletter-signup {
    padding: 60px 0;
    background: var(--background);
}

.newsletter-signup-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.newsletter-signup-box h3 {
    font-size: 24px;
}

.newsletter-signup-box p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.article-newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.article-newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
}

.related-posts-section {
    padding: 80px 0;
    background: var(--white);
}

.related-section-title {
    font-size: 24px;
    margin-bottom: 35px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* 14. Widgets & Sidebar Styling */
.widget {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-family: var(--font-body);
    font-weight: 700;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
}

.widget li:last-child {
    border-bottom: none;
}

.widget li a {
    color: var(--primary);
}

.widget li a:hover {
    color: var(--secondary);
}

.newsletter-widget-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 15px;
}

.sidebar-newsletter-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

/* 15. 404, Search page, and Generic fallbacks */
.error-404-section {
    padding: 120px 0;
}

.error-graphics {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary);
}

.error-line {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin-top: 15px;
}

.error-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.error-description {
    color: var(--muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.error-search-box {
    max-width: 450px;
    margin: 0 auto 40px auto;
}

.error-search-box form {
    display: flex;
}

.error-search-box input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-top-left-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
}

.error-search-box button {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 0 20px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    cursor: pointer;
}

.error-actions-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* WhatsApp Float Bubble Styling */
.whatsapp-sticky-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-sticky-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.bubble-hover-label {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-sticky-bubble:hover .bubble-hover-label {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
}

.scroll-to-top.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Search Form General styling */
.search-form {
    display: flex;
    width: 100%;
}

.search-field {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid var(--light-gray);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: var(--background);
}

.search-submit {
    background: var(--primary);
    border: none;
    color: var(--white);
    padding: 0 15px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    cursor: pointer;
}

/* comments template */
.comments-area {
    padding: 50px 0;
    border-top: 1px solid var(--light-gray);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.comment-body {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.comment-meta {
    flex-shrink: 0;
}

.comment-meta img {
    border-radius: 50%;
}

.comment-content {
    font-size: 15px;
}

.comment-reply-link {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
}

.urban-comment-form textarea,
.urban-comment-form input {
    width: 100%;
    padding: 12px;
    background: var(--background);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    margin-bottom: 15px;
}

/* 17. Premium Footer Styling */
.site-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 80px 0 0 0;
    border-top: 4px solid var(--secondary);
    font-family: var(--font-body);
}

.footer-top {
    padding-bottom: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 200px;
}

.brand-col {
    flex: 1.5 1 300px;
    min-width: 260px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img.footer-logo-img {
    max-height: 55px;
    width: auto;
    display: block;
    object-fit: contain;
    background: #f9f6f0;
    padding: 6px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-monogram {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--white);
    font-weight: 700;
}

.brand-bio {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links-wrapper {
    display: flex;
    gap: 12px;
}

.social-links-wrapper a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.social-links-wrapper a:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-links li {
    margin-bottom: 12px;
}

.footer-menu-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-menu-links a:hover {
    color: var(--secondary-light);
    padding-left: 5px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 16px;
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-light);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.footer-legal-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition);
}

.footer-legal-menu a:hover {
    color: var(--secondary);
}

/* 16. Responsiveness Breakpoints */
@media (max-width: 1024px) {
    .about-grid,
    .project-details-grid,
    .blog-layout-grid,
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .portfolio-grid,
    .posts-cards-grid,
    .urban-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-img-box {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .accent-box-badge {
        right: 0;
    }
}

@media (max-width: 768px) {
    .top-bar,
    .main-navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .portfolio-grid,
    .posts-cards-grid,
    .urban-services-grid,
    .claims-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        margin-bottom: 40px;
    }
    
    .timeline-content {
        margin-left: 10px;
        padding: 20px;
    }
    
    .slider-controls {
        display: none; /* Hide arrow controls and rely on swipes/clicks on mobile */
    }
    
    .consultation-grid {
        padding: 30px;
    }
    
    .form-interactive-box {
        padding: 20px;
    }
    
    .col-6 {
        grid-column: span 12;
    }
    
    .before-after-slider {
        height: 350px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .comment-body {
        flex-direction: column;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .brand-name {
        font-size: 18px;
    }
    
    .btn-nav {
        display: none; /* Hide call to action inside nav, rely on drawer button */
    }
    
    .hero-section {
        height: 75vh;
        min-height: 500px;
    }
}

/* 4K and High-Res Displays Optimization */
@media (min-width: 2560px) {
    .container {
        max-width: 1800px;
    }
    
    body {
        font-size: 18px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .brand-logo-graphics {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    .main-navigation a {
        font-size: 17px;
    }
}

/* 18. Service CPT Detail Page Styles */
.service-breadcrumbs-bar {
    background-color: var(--background);
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 13px;
}

.service-hero-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    color: var(--white);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-subtitle-tag {
    font-family: var(--font-btn);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-light);
    display: inline-block;
    margin-bottom: 15px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.service-excerpt-lead {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.service-body-content {
    padding: 80px 0;
    background: var(--background);
}

.service-details-grid {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-main-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
}

.service-main-text p {
    margin-bottom: 25px;
}

.service-main-text p:last-child {
    margin-bottom: 0;
}

.service-cta-block {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

.service-cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 160, 70, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-badge {
    font-family: var(--font-btn);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

.service-cta-block h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-cta-block p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.6;
}

.service-cta-block .cta-btn-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.related-services-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.related-title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-service-card {
    background-color: var(--background);
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.related-service-card:hover {
    background-color: var(--white);
    border-color: rgba(200, 160, 70, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.related-service-card .card-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.related-service-card .card-arrow {
    color: var(--muted);
    font-size: 12px;
    transition: var(--transition);
}

.related-service-card:hover .card-arrow {
    color: var(--secondary);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .service-title {
        font-size: 36px;
    }
    .service-hero-banner {
        padding: 80px 0;
    }
    .service-details-grid {
        padding: 30px;
    }
    .service-cta-block {
        padding: 40px 20px;
    }
    .service-cta-block h3 {
        font-size: 26px;
    }
    .related-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* SEO Breadcrumbs Styling */
.urban-breadcrumbs {
    padding: 15px 0;
    font-size: 13px;
    font-family: var(--font-body);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs-list li {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
}

.breadcrumbs-list li a {
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.breadcrumbs-list li a:hover {
    color: var(--secondary);
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    color: var(--light-gray);
    font-size: 10px;
}

/* 19. Gutenberg Content Block Spacing */
.entry-content p,
.page-content p {
    margin-bottom: 1.6rem;
    line-height: 1.8;
}

.entry-content h2,
.page-content h2 {
    margin-top: 3.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.entry-content h3,
.page-content h3 {
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.entry-content h4,
.page-content h4 {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
}

.entry-content .wp-block-columns,
.page-content .wp-block-columns {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem;
    gap: 40px;
}

.entry-content .wp-block-column,
.page-content .wp-block-column {
    margin-bottom: 1.6rem;
}

@media (max-width: 768px) {
    .entry-content h2,
    .page-content h2 {
        margin-top: 2.4rem;
    }
    .entry-content h3,
    .page-content h3 {
        margin-top: 2rem;
    }
    .entry-content .wp-block-columns,
    .page-content .wp-block-columns {
        gap: 20px;
    }
}

/* 20. Mobile Responsive Layout Fixes & Safeties */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Bulletproof shield against horizontal page overflow */
}

@media (max-width: 768px) {
    /* Header side margin gaps */
    .header-container {
        padding: 12px 20px !important;
    }
    
    .mobile-toggle {
        margin-left: 10px;
        padding: 8px;
    }
    
    /* Hero button stacks and overlap prevention */
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }
    
    .hero-actions .urban-btn {
        width: 100% !important;
        justify-content: center;
    }
    
    /* Form container padding and submit button stacking */
    .consultation-grid {
        padding: 30px 20px !important;
    }
    
    .form-interactive-box {
        padding: 25px 20px !important;
    }
    
    .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .form-footer .urban-btn {
        width: 100% !important;
        justify-content: center;
    }
    
    .form-status-msg {
        text-align: center;
    }
    
    /* Article share block clashing */
    .article-social-share-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .share-buttons {
        width: 100%;
        flex-wrap: wrap;
    }
    
    /* Author Bio card clashing */
    .author-bio-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .author-avatar-box {
        margin-bottom: 5px;
    }
    
    /* Scroll-to-top floating bubble alignment overrides */
    .scroll-to-top {
        bottom: 110px !important;
        right: 20px !important;
    }
    
    .whatsapp-sticky-bubble {
        bottom: 25px !important;
        right: 20px !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 16px !important;
    }
    
    .urban-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Mobile drawer CTA spacing resets */
.drawer-cta-wrapper {
    margin-top: 30px;
    padding-bottom: 20px;
    width: 100%;
}

.drawer-cta-wrapper .urban-btn {
    display: flex;
    width: 100% !important;
    box-sizing: border-box;
    justify-content: center;
}
