/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #212121;
    background: #fff;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}
.text-white {
    color: #fff;
}

/* ===== Container ===== */
.container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.header-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-urban {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

.logo-company {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    background: #fff;
    min-width: 200px;
    transition: border-color 0.2s;
}

.location-selector:hover {
    border-color: #bbb;
}

.location-selector i:first-child {
    color: #333;
    font-size: 16px;
}

.location-selector .fa-chevron-down {
    font-size: 11px;
    margin-left: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    min-width: 260px;
    background: #fff;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: #999;
}

.search-bar i {
    color: #666;
    font-size: 16px;
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    width: 100%;
    background: transparent;
}

.search-bar input::placeholder {
    color: #999;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* ===== Hero Section ===== */
.hero-section {
    padding: 50px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.services-box {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
}

.services-box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.service-item:hover {
    transform: translateY(-2px);
}

.service-icon-wrap {
    width: 100px;
    height: 80px;
    background: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.service-icon-wrap img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.badge-green {
    position: absolute;
    bottom: -4px;
    right: 50%;
    transform: translateX(50%);
    background: #fff;
    color: #0a7e5c;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid #0a7e5c;
    white-space: nowrap;
}

.service-label {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

/* Hero Image Grid */
.hero-right {
    position: relative;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 560px;
}

.hero-img {
    overflow: hidden;
    border-radius: 16px;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-large {
    grid-row: 1 / 3;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 40px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.stats-grid {
    display: flex;
    gap: 80px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    font-size: 28px;
    color: #333;
}

.stat-icon-svg {
    width: 40px;
    height: 40px;
    color: #333;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 10px;
    color: #666;
}

/* ===== Section Common ===== */
.section {
    padding: 50px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: #888;
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-header .section-title {
    margin-bottom: 4px;
}

/* ===== Spotlight Section ===== */
.spotlight-section {
    background: #fff;
}

.spotlight-section .section-title {
    margin-bottom: 28px;
}

.spotlight-carousel-wrapper {
    position: relative;
}

.spotlight-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}

.spotlight-carousel::-webkit-scrollbar {
    display: none;
}

.spotlight-card {
    min-width: 460px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.spotlight-revamp {
    background: linear-gradient(135deg, #e8d5c4 0%, #d4b896 100%);
}

.spotlight-instahelp {
    background: linear-gradient(135deg, #6a1b9a 0%, #4a148c 100%);
    color: #fff;
}

.spotlight-luxe {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.spotlight-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.badge-green-bg {
    background: #0a7e5c;
    color: #fff;
}

.badge-red-bg {
    background: #d32f2f;
    color: #fff;
}

.spotlight-content {
    display: flex;
    align-items: stretch;
    height: 280px;
}

.spotlight-text {
    padding: 48px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-brand {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
    display: block;
    color: #555;
}

.spotlight-brand-white {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.spotlight-brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.badge-green-sm {
    background: #0a7e5c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}

.spotlight-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 12px;
    display: block;
}

.spotlight-text h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.spotlight-text p {
    font-size: 14px;
    margin-bottom: 16px;
    color: #555;
}

.spotlight-text p s {
    color: #999;
}

.spotlight-image {
    width: 200px;
    flex-shrink: 0;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-white {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
    width: fit-content;
}

.btn-white:hover {
    background: #f5f5f5;
}

/* ===== Carousel Button ===== */
.carousel-wrapper {
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all 0.2s;
}

.carousel-btn:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn-right {
    right: -22px;
}

.carousel-btn-left {
    left: -22px;
}

/* ===== Noteworthy Section ===== */
.noteworthy-section .section-title {
    margin-bottom: 28px;
}

.noteworthy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.noteworthy-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s;
}

.noteworthy-card:hover {
    transform: translateY(-4px);
}

.noteworthy-img {
    position: relative;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.noteworthy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #c2185b;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    z-index: 2;
}

.badge-new-red {
    background: #d32f2f;
    font-size: 12px;
    padding: 3px 10px;
}

.noteworthy-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ===== Service Cards Carousel ===== */
.services-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    min-width: 250px;
    max-width: 250px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
    margin-bottom: 12px;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-ac {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #880e4f;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    z-index: 2;
}


.service-card-info h4 {
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.rating {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating .fa-star {
    color: #1a1a1a;
    font-size: 13px;
}

.price {
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
}

.price s {
    font-weight: 400;
    color: #999;
    font-size: 14px;
    margin-left: 4px;
}

/* ===== See All Button ===== */
.btn-see-all {
    padding: 10px 24px;
    background: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-see-all:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ===== Banners ===== */
.banner {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-text {
    padding: 60px;
    flex: 1;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.banner-title-large {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.banner-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.banner-image {
    flex: 1;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Wall Panels Banner */
.wall-panels-banner {
    background: #faf0e6;
    min-height: 400px;
}

.wall-panels-banner .banner-image img {
    border-radius: 16px;
}

.btn-dark-brown {
    display: inline-block;
    padding: 14px 28px;
    background: #4e342e;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-dark-brown:hover {
    background: #3e2723;
}

/* Smart Locks Banner */
.smart-locks-banner {
    background: linear-gradient(135deg, #0d0d1a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    min-height: 440px;
    position: relative;
}

.smart-locks-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #0a7e5c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    z-index: 2;
}

.smart-locks-banner .banner-subtitle {
    color: rgba(255,255,255,0.6);
}

.native-brand {
    font-size: 18px;
    letter-spacing: 8px;
    font-weight: 300;
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.9);
}

.btn-white-large {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-white-large:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

/* Home Painting Banner */
.painting-banner {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f40 100%);
    min-height: 400px;
}

.painting-banner .banner-subtitle {
    font-size: 22px;
    color: #555;
}

.btn-black {
    display: inline-block;
    padding: 16px 32px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-black:hover {
    background: #333;
}

/* ===== Footer ===== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    background: #fff;
    color: #1a1a1a;
}

.footer-logo .logo-urban,
.footer-logo .logo-company {
    color: #fff;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: background 0.2s;
}

.social-links a:hover {
    background: #555;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badge img {
    height: 40px;
    width: auto;
}

.badge-store {
    display: inline-block;
    padding: 8px 16px;
    background: #333;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .header-container {
        padding: 0 24px;
    }

    .noteworthy-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .spotlight-card {
        min-width: 400px;
    }

    .footer-top {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image-grid {
        height: 400px;
    }

    .hero-title {
        font-size: 34px;
    }

    .location-selector {
        min-width: 160px;
    }

    .search-bar {
        min-width: 200px;
    }

    .noteworthy-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-grid {
        gap: 40px;
    }

    .banner {
        flex-direction: column;
    }

    .banner-text {
        padding: 40px;
    }

    .banner-image {
        width: 100%;
        height: 300px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 12px 16px;
        gap: 12px;
    }

    .header-left {
        width: 100%;
        justify-content: space-between;
    }

    .header-right {
        width: 100%;
        flex-wrap: wrap;
    }

    .location-selector, .search-bar {
        flex: 1;
        min-width: 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .hero-image-grid {
        height: 300px;
    }

    .noteworthy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 26px;
    }

    .spotlight-card {
        min-width: 320px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-title-large {
        font-size: 26px;
    }

    .container {
        padding: 0 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-width: 200px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image-grid {
        grid-template-columns: 1fr 1fr;
        height: 250px;
    }

    .hero-img-large {
        grid-row: auto;
    }

    .spotlight-card {
        min-width: 280px;
    }

    .noteworthy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .section {
        padding: 30px 0;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Search Placeholder Animation ===== */
.search-bar input {
    transition: all 0.3s;
}