/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF9500;
    --dark-bg: #071033;
    --text-dark: #313741;
    --text-gray: #696E76;
    --bg-light: #F8F9FA;
    --bg-cream: #EEEFEB;
    --white: #FFFFFF;
}
/* Navbar styles extracted from your stylesheet (scope: header + nav + dropdown + mobile) */

/* MAIN HEADER */
.main-header {
    background: #FFFFFF;
    width: 100%;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #EEEEEE;
}

/* Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

/* LOGO */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: auto;
}

.header-logo .logo-icon {
    width: 48px;
    height: 48px;
    background: #113768;
    border-radius: 16px;
    border: 2px solid rgba(17, 55, 104, 0.15);
    box-shadow: 0 4px 16px rgba(21, 57, 106, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.header-logo .logo-icon:hover {
    transform: scale(1.05);
}

.header-logo .h-letter {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.header-logo .logo-text {
    display: flex;
    flex-direction: column;
    color: #113768;
}

.header-logo .company-main {
    font-size: 1rem;
    font-weight: 700;
    color: #113768;
    letter-spacing: 0.5px;
}

.header-logo .company-sub {
    font-size: 0.7rem;
    color: #7C7C7C;
    letter-spacing: 0.5px;
}

/* NAVIGATION */
.header-nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.header-nav-left .nav-link,
.header-nav-right .nav-link {
    color: #222222;
    font-weight: 300;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.header-nav-left .nav-link:hover,
.header-nav-right .nav-link:hover {
    color: #3A68B8;
}

.header-nav-left .nav-link.active,
.header-nav-right .nav-link.active {
    color: #3A68B8;
}

.header-nav-left .nav-link.active::after,
.header-nav-right .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #3A68B8;
}

/* CTA BUTTON */
.header-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #3A68B8;
    border-radius: 999px;
    color: #3A68B8;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    background: #3A68B8;
    color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.header-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 28px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 40px;
}

.header-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header-menu.active span:nth-child(2) {
    opacity: 0;
}

.header-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* DROPDOWN */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 1px solid #EEEEEE;
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown .dropdown-menu li a {
    color: #222222;
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: #F7F7F7;
    color: #3A68B8;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 1024px) {
    .header-menu {
        display: flex;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        z-index: 999;
    }

    .header-nav-right {
        transform: translateX(100%);
    }

    .header-nav-left.active,
    .header-nav-right.active {
        transform: translateX(0);
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #F8F9FA;
        margin-top: 8px;
        border-radius: 8px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-construction {
    background: #EEF4FA;
    padding: 120px 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .hero-construction {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .hero-construction {
        padding: 80px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero-construction {
        padding: 60px 0 40px;
    }
}

.hero-content-minimal {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .hero-content-minimal {
        padding: 0 20px;
    }
}

.hero-content-minimal h1 {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: clamp(2px, 0.5vw, 8px);
    color: #1a2951;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .hero-content-minimal h1 {
        margin-bottom: 24px;
    }
}

.hero-content-minimal p {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 400;
    color: #696E76;
    line-height: 2;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Category Strip - Mobile First */
.service-categories {
    padding: 60px 0;
    background: #F5F7FA;
}

@media (max-width: 768px) {
    .service-categories {
        padding: 40px 0;
    }
}

.categories-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .categories-strip {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .categories-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.category-box {
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    width: 100%;
    max-width: 140px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 480px) {
    .category-box {
        padding: 20px 12px;
        max-width: none;
    }
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #E8F0FE 0%, #F0E8FE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .category-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 8px;
    }
}

.category-box:hover .category-icon {
    background: linear-gradient(135deg, #D0E4FF 0%, #E0D0FF 100%);
    transform: scale(1.1);
}

.category-icon i {
    font-size: clamp(18px, 2vw, 26px);
    color: #7B8FB8;
}

.category-box h3 {
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: #1a2951;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Office Renovation Section */
.office-renovation {
    padding: 80px 0;
    background: #FAFBFC;
}

.renovation-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1000px;
    margin: 0 auto;
}

.renovation-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.renovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.renovation-card:hover .renovation-image img {
    transform: scale(1.05);
}

.renovation-content {
    padding: 50px 60px;
    text-align: center;
}

.renovation-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.renovation-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.renovation-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.renovation-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.renovation-features i {
    color: #A8C5E8;
    font-size: 18px;
    flex-shrink: 0;
}

/* Villa Renovation Section */
.villa-renovation {
    padding: 80px 0;
    background: #FAF7F2;
}

.villa-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.villa-content {
    padding: 60px 50px;
}

.villa-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.villa-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
}

.villa-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.villa-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.villa-features i {
    color: #D4B896;
    font-size: 18px;
    flex-shrink: 0;
}

.villa-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.villa-card:hover .villa-image img {
    transform: scale(1.05);
}

/* Café & Restaurant Fit-Out Section */
.cafe-fitout {
    padding: 80px 0;
    background: #FAFBFC;
}

.cafe-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 0;
}

.cafe-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    padding: 30px;
}

.cafe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.cafe-card:hover .cafe-image img {
    transform: scale(1.05);
}

.cafe-content {
    padding: 50px 60px 50px 40px;
}

.cafe-content h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 5px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cafe-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cafe-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cafe-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.cafe-features i {
    color: #B8A898;
    font-size: 18px;
    flex-shrink: 0;
}

/* Toilet Upgrade Section */
.toilet-upgrade {
    padding: 80px 0;
    background: #F7F7F7;
}

.toilet-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.toilet-content {
    padding: 60px 50px;
}

.toilet-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.toilet-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
}

.toilet-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toilet-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.toilet-features i {
    color: #A0C4E0;
    font-size: 18px;
    flex-shrink: 0;
}

.toilet-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.toilet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.toilet-card:hover .toilet-image img {
    transform: scale(1.05);
}

/* Design & 3D Rendering Section */
.design-rendering {
    padding: 80px 0;
    background: #FAFBFC;
}

.design-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1000px;
    margin: 0 auto;
}

.design-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.design-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
    z-index: 1;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.design-card:hover .design-image img {
    transform: scale(1.05);
}

.design-content {
    padding: 50px 60px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #F0F7FF 100%);
}

.design-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.design-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.design-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.design-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.design-features i {
    color: #89B4E8;
    font-size: 18px;
    flex-shrink: 0;
}

/* Safety & Compliance Section */
.safety-compliance {
    padding: 80px 0;
    background: #FAFBFC;
}

.safety-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.safety-content {
    padding: 60px 50px;
}

.safety-content h2 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.safety-description {
    font-size: 16px;
    color: #696E76;
    line-height: 1.8;
    margin-bottom: 35px;
}

.safety-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.safety-features li {
    font-size: 15px;
    color: #313741;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
}

.safety-features li:last-child {
    border-bottom: none;
}

.safety-features i {
    color: #2C3E50;
    font-size: 16px;
    flex-shrink: 0;
    font-weight: 300;
}

.safety-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.safety-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.safety-card:hover .safety-image img {
    transform: scale(1.05);
}

/* Why Clients Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #F0F7FF;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-header p {
    font-size: 16px;
    color: #696E76;
    font-weight: 400;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-item {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #E8F0FE 0%, #D0E4FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, #D0E4FF 0%, #B8D8FF 100%);
    transform: scale(1.1);
}

.why-icon i {
    font-size: 32px;
    color: #89B4E8;
    font-weight: 300;
}

.why-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2951;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 15px;
    color: #696E76;
    line-height: 1.8;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #1a2951;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.portfolio-header p {
    font-size: 16px;
    color: #696E76;
    font-weight: 400;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-button {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1a2951;
    border: 2px solid #E0E4E8;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.view-more-btn:hover {
    background: #1a2951;
    color: white;
    border-color: #1a2951;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 41, 81, 0.15);
}

.view-more-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(4px);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-gray);
    font-size: 16px;
}

/* Mobile Navigation Fixed Positioning */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 20px;
    }

    .header-nav-left,
    .header-nav-right {
        position: fixed;
        top: 85px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px 20px;
        gap: 24px;
        margin: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        z-index: 999;
    }

    .header-nav-right {
        transform: translateX(100%);
    }

    .header-nav-left.active,
    .header-nav-right.active {
        transform: translateX(0);
    }

    .header-nav-left .nav-link,
    .header-nav-right .nav-link {
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #F0F0F0;
    }

    .header-cta-btn {
        margin-top: 12px;
        justify-self: center;
        min-height: 48px;
        padding: 14px 28px;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #F8F9FA;
        margin-top: 8px;
        border-radius: 8px;
        padding: 8px 0;
    }

    .nav-dropdown .dropdown-menu li a {
        padding: 8px 16px;
        font-size: 1rem;
    }
}

/* Enhanced Responsive Breakpoints */
@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
        height: 70px;
    }

    .header-menu {
        right: 16px;
        width: 32px;
        height: 32px;
    }

    .header-nav-left,
    .header-nav-right {
        top: 70px;
        max-height: calc(100vh - 70px);
        padding: 24px 16px;
    }

    .header-logo .logo-icon {
        width: 40px;
        height: 40px;
    }

    .header-logo .h-letter {
        font-size: 1.5rem;
    }

    .header-logo .company-main {
        font-size: 0.9rem;
    }

    .header-logo .company-sub {
        font-size: 0.65rem;
    }
}

/* ========================================
   ENHANCED MEDIA QUERIES - COMPREHENSIVE
   ======================================== */

/* Extra Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .hero-content-minimal h1 {
        font-size: 56px;
    }

    .categories-strip {
        max-width: 1400px;
        gap: 24px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .container {
        max-width: 1400px;
    }

    .renovation-card,
    .design-card {
        max-width: 1200px;
    }

    .villa-card,
    .cafe-card,
    .toilet-card,
    .safety-card {
        max-width: 1300px;
    }
}

/* Desktop (1025px - 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    .hero-construction {
        padding: 100px 0;
    }

    .renovation-content,
    .design-content {
        padding: 45px 50px;
    }

    .villa-content,
    .cafe-content,
    .toilet-content,
    .safety-content {
        padding: 50px 40px;
    }

    .why-grid {
        gap: 35px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
    .hero-construction {
        padding: 90px 0;
    }

    .hero-content-minimal {
        padding: 0 30px;
    }

    .service-categories {
        padding: 50px 0;
    }

    .categories-strip {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 14px;
        max-width: 900px;
    }

    .office-renovation,
    .villa-renovation,
    .cafe-fitout,
    .toilet-upgrade,
    .design-rendering,
    .safety-compliance {
        padding: 70px 0;
    }

    .villa-card,
    .cafe-card,
    .toilet-card,
    .safety-card {
        margin: 0 20px;
    }

    .villa-content,
    .cafe-content,
    .toilet-content,
    .safety-content {
        padding: 40px 32px;
    }

    .renovation-features,
    .design-features {
        gap: 16px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin: 0 20px;
    }

    .portfolio-section {
        padding: 60px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 0 20px;
    }

    .contact-cta {
        padding: 80px 0;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-content-minimal h1 {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .categories-strip {
        grid-template-columns: repeat(4, 1fr);
    }

    .renovation-image,
    .design-image {
        height: 380px;
    }

    .villa-image,
    .cafe-image,
    .toilet-image,
    .safety-image {
        min-height: 420px;
    }

    .portfolio-item img {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 0 30px 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
        border-bottom: 1px solid rgba(58, 104, 184, 0.2);
        padding-bottom: 20px;
    }
}

/* Mobile Large (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-construction {
        padding: 70px 0 50px;
    }

    .hero-content-minimal h1 {
        font-size: 28px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-content-minimal p {
        font-size: 15px;
    }

    .service-categories {
        padding: 40px 0;
    }

    .categories-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .category-box {
        padding: 20px 12px;
    }

    .category-icon {
        width: 46px;
        height: 46px;
    }

    .category-box h3 {
        font-size: 13px;
    }

    .office-renovation,
    .villa-renovation,
    .cafe-fitout,
    .toilet-upgrade,
    .design-rendering,
    .safety-compliance {
        padding: 50px 0;
    }

    .renovation-card,
    .design-card {
        margin: 0 16px;
        border-radius: 16px;
    }

    .villa-card,
    .cafe-card,
    .toilet-card,
    .safety-card {
        grid-template-columns: 1fr;
        margin: 0 16px;
        border-radius: 16px;
    }

    .villa-image,
    .cafe-image,
    .toilet-image,
    .safety-image {
        min-height: 300px;
        order: -1;
    }

    .villa-content,
    .cafe-content,
    .toilet-content,
    .safety-content,
    .renovation-content,
    .design-content {
        padding: 32px 24px;
        text-align: center;
    }

    .renovation-features,
    .design-features,
    .villa-features,
    .cafe-features,
    .toilet-features,
    .safety-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 16px;
    }

    .why-item {
        padding: 36px 24px;
    }

    .portfolio-section {
        padding: 50px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 0 16px;
    }

    .portfolio-item img {
        height: 220px;
    }

    .contact-cta {
        padding: 60px 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 0 20px 40px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}

/* Mobile Medium (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
    .hero-construction {
        padding: 60px 0 40px;
    }

    .hero-content-minimal {
        padding: 0 16px;
    }

    .hero-content-minimal h1 {
        font-size: 24px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .hero-content-minimal p {
        font-size: 14px;
        line-height: 1.7;
    }

    .categories-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .category-box {
        padding: 18px 12px;
        max-width: none;
    }

    .renovation-image,
    .design-image {
        height: 250px;
    }

    .villa-image,
    .cafe-image,
    .toilet-image,
    .safety-image {
        min-height: 260px;
    }

    .villa-content h2,
    .cafe-content h2,
    .toilet-content h2,
    .safety-content h2,
    .renovation-content h2,
    .design-content h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-item img {
        height: 200px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 14px;
    }
}

/* Mobile Small (max-width: 375px) */
@media (max-width: 375px) {
    .hero-construction {
        padding: 50px 0 35px;
    }

    .hero-content-minimal h1 {
        font-size: 22px;
        letter-spacing: 1.5px;
    }

    .service-categories {
        padding: 35px 0;
    }

    .categories-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-box {
        padding: 16px 10px;
    }

    .category-icon {
        width: 42px;
        height: 42px;
    }

    .category-box h3 {
        font-size: 11px;
    }

    .office-renovation,
    .villa-renovation,
    .cafe-fitout,
    .toilet-upgrade,
    .design-rendering,
    .safety-compliance {
        padding: 40px 0;
    }

    .villa-content,
    .cafe-content,
    .toilet-content,
    .safety-content,
    .renovation-content,
    .design-content {
        padding: 24px 16px;
    }

    .renovation-image,
    .design-image {
        height: 220px;
    }

    .villa-image,
    .cafe-image,
    .toilet-image,
    .safety-image {
        min-height: 240px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 28px;
    }

    .portfolio-header h2,
    .why-header h2 {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .view-more-btn {
        padding: 14px 28px;
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 13px;
    }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-construction {
        padding: 60px 0;
    }

    .service-categories {
        padding: 40px 0;
    }

    .office-renovation,
    .villa-renovation,
    .cafe-fitout,
    .toilet-upgrade,
    .design-rendering,
    .safety-compliance {
        padding: 50px 0;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .contact-cta {
        padding: 60px 0;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .category-icon,
    .why-icon {
        border: 0.5px solid rgba(255, 255, 255, 0.1);
    }

    .portfolio-item {
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .renovation-image img,
    .villa-image img,
    .cafe-image img,
    .toilet-image img,
    .design-image img,
    .safety-image img {
        transition: none !important;
    }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #E8E8E8;
        --text-gray: #B0B0B0;
        --bg-light: #1A1A1A;
        --dark-bg: #0A0A0A;
    }

    body {
        background: #111;
        color: #E8E8E8;
    }

    .hero-construction {
        background: #1A1A1A;
    }

    .service-categories {
        background: #151515;
    }

    .category-box,
    .renovation-card,
    .villa-card,
    .cafe-card,
    .toilet-card,
    .design-card,
    .safety-card,
    .why-item,
    .portfolio-item {
        background: #1E1E1E;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

/* Print Styles */
@media print {
    .main-header,
    .header-container,
    .contact-cta,
    .portfolio-button,
    .view-more-btn,
    .cta-button {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }

    .renovation-card,
    .villa-card,
    .cafe-card,
    .toilet-card,
    .design-card,
    .safety-card {
        break-inside: avoid;
        page-break-inside: avoid;
        margin-bottom: 2rem;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000 !important;
        page-break-after: avoid;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .category-box,
    .why-item,
    .portfolio-item {
        cursor: default;
    }

    .category-box:hover,
    .why-item:hover,
    .portfolio-item:hover {
        transform: none;
    }

    .category-box:active,
    .why-item:active,
    .portfolio-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .view-more-btn:active,
    .cta-button:active {
        transform: scale(0.97);
    }

    /* Increase tap target sizes */
    .nav-link,
    .mobile-nav-link,
    .dropdown-item,
    .cta-button,
    .view-more-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Accessibility - High Contrast Mode */
@media (prefers-contrast: high) {
    .category-box,
    .renovation-card,
    .villa-card,
    .cafe-card,
    .toilet-card,
    .design-card,
    .safety-card {
        border: 2px solid currentColor;
    }

    .cta-button,
    .view-more-btn {
        border: 2px solid currentColor;
    }
}

/* Touch Active States */
.touch-device .touch-active {
    opacity: 0.8;
    transform: scale(0.98);
}

.touch-device .category-box.touch-active,
.touch-device .why-item.touch-active,
.touch-device .portfolio-item.touch-active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Active States */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #F0F0F0;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: #222222;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #3A68B8;
}

.mobile-dropdown-menu {
    display: none;
    padding: 10px 0 10px 20px;
    background: #F8F9FA;
    border-radius: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: #222222;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.mobile-dropdown-item:hover {
    background: #FFFFFF;
    color: #3A68B8;
}

.mobile-nav-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #F0F0F0;
}

.mobile-contact-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    background: #3A68B8;
    color: #FFFFFF;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-contact-btn:hover {
    background: #2E5499;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    justify-content: center;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFB 0%, #F0F4F8 100%);
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 0;
    }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 1px;
    color: #1a2951;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cta-content p {
    font-size: 16px;
    color: #696E76;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3A68B8;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 104, 184, 0.3);
    letter-spacing: 0.5px;
    min-height: 44px;
}

@media (max-width: 480px) {
    .cta-button {
        padding: 16px 32px;
        font-size: 15px;
    }
}

.cta-button:hover {
    background: #2E5499;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(58, 104, 184, 0.4);
}

.cta-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Navigation Fix */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        top: 56px;
        max-height: calc(100vh - 56px);
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
        gap: 4px;
    }
}

/* ========================================
   MOBILE SEO ENHANCEMENTS
   ======================================== */

/* Ensure minimum touch target sizes (48x48px) */
@media (max-width: 768px) {
    .category-box {
        min-height: 48px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: inherit;
    }
    
    .mobile-nav-link,
    .mobile-contact-btn,
    .cta-button,
    .view-more-btn {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve text readability on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Prevent text size adjustment after orientation change */
    html {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Improve button tap areas */
    button,
    a {
        -webkit-tap-highlight-color: rgba(58, 104, 184, 0.1);
    }
}

/* Better mobile font sizes for SEO */
@media (max-width: 480px) {
    html {
        font-size: 13px !important;
    }
    body {
        font-size: 0.95rem !important;
    }
    .container {
        padding: 0 6px !important;
        max-width: 100vw !important;
    }
    .hero-content-minimal h1,
    .why-header h2,
    .portfolio-header h2,
    .cta-content h2 {
        font-size: 1.2rem !important;
    }
    .hero-content-minimal p,
    .why-header p,
    .portfolio-header p,
    .cta-content p {
        font-size: 0.85rem !important;
    }
    .category-box h3,
    .renovation-content h2,
    .villa-content h2,
    .cafe-content h2,
    .toilet-content h2,
    .design-content h2,
    .safety-content h2 {
        font-size: 1rem !important;
    }
    .renovation-description,
    .villa-description,
    .cafe-description,
    .toilet-description,
    .design-description,
    .safety-description {
        font-size: 0.85rem !important;
    }
    .renovation-features li,
    .villa-features li,
    .cafe-features li,
    .toilet-features li,
    .design-features li,
    .safety-features li {
        font-size: 0.8rem !important;
        padding: 8px 0 !important;
        min-height: 36px !important;
    }
    .why-item h3 {
        font-size: 0.95rem !important;
    }
    .why-item p {
        font-size: 0.8rem !important;
    }
    .portfolio-item img {
        height: 120px !important;
    }
    .category-box, .renovation-card, .villa-card, .cafe-card, .toilet-card, .design-card, .safety-card, .why-item, .portfolio-item {
        padding: 10px 4px !important;
    }
    .categories-strip, .why-grid, .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .category-icon, .why-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.2rem !important;
    }
    .menu-toggle, .header-menu {
        width: 32px !important;
        height: 32px !important;
    }
    .mobile-menu, .mobile-nav-menu {
        font-size: 0.95rem !important;
    }
    .cta-button, .view-more-btn {
        font-size: 0.85rem !important;
        padding: 10px 16px !important;
    }
}

/* Mobile-specific spacing improvements */
@media (max-width: 768px) {
    /* Improved container padding */
    .container {
        padding: 0 15px;
    }
    
    /* Better spacing for mobile sections - reduced padding */
    .office-renovation,
    .villa-renovation,
    .cafe-fitout,
    .toilet-upgrade,
    .design-rendering,
    .safety-compliance,
    .why-choose-us,
    .portfolio-section {
        padding: 40px 0;
    }
    
    /* Service category tabs - improved spacing */
    .service-categories {
        padding: 30px 0;
    }
    
    .categories-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 5px;
    }
    
    .category-box {
        padding: 16px 10px;
        border-radius: 12px;
        gap: 8px;
    }
    
    /* Remove hover effects on mobile for better touch UX */
    .category-box:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }
    .category-box:active {
        background: #f5f5f5;
    }
    .category-box:hover .category-icon {
        transform: none !important;
    }
    
    /* ========================================
       HORIZONTAL SCROLL-SNAP FOR SERVICE CARDS
       ======================================== */
    
    /* Service sections - horizontal scroll container */
    .office-renovation .container,
    .villa-renovation .container,
    .cafe-fitout .container,
    .toilet-upgrade .container,
    .design-rendering .container,
    .safety-compliance .container {
        padding: 0;
        max-width: 100%;
    }
    
    /* Service cards - horizontal scroll with snap */
    .renovation-card,
    .villa-card,
    .cafe-card,
    .toilet-card,
    .design-card,
    .safety-card {
        margin: 0 15px;
        border-radius: 16px;
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-width: calc(100vw - 30px);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .renovation-card::-webkit-scrollbar,
    .villa-card::-webkit-scrollbar,
    .cafe-card::-webkit-scrollbar,
    .toilet-card::-webkit-scrollbar,
    .design-card::-webkit-scrollbar,
    .safety-card::-webkit-scrollbar {
        display: none;
    }
    
    /* Card panels as scroll-snap children */
    .renovation-image,
    .renovation-content,
    .villa-image,
    .villa-content,
    .cafe-image,
    .cafe-content,
    .toilet-image,
    .toilet-content,
    .design-image,
    .design-content,
    .safety-image,
    .safety-content {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    /* Image sizing */
    .renovation-image,
    .villa-image,
    .cafe-image,
    .toilet-image,
    .design-image,
    .safety-image {
        min-height: 280px;
        height: 280px;
    }
    
    .renovation-image img,
    .villa-image img,
    .cafe-image img,
    .toilet-image img,
    .design-image img,
    .safety-image img {
        height: 100%;
        object-fit: cover;
    }
    
    /* Content padding */
    .villa-content,
    .cafe-content,
    .toilet-content,
    .safety-content,
    .renovation-content,
    .design-content {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    /* Section headings - better readability */
    .renovation-content h2,
    .villa-content h2,
    .cafe-content h2,
    .toilet-content h2,
    .design-content h2,
    .safety-content h2 {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .renovation-description,
    .villa-description,
    .cafe-description,
    .toilet-description,
    .design-description,
    .safety-description {
        font-size: 0.85rem;
        margin-bottom: 16px;
        line-height: 1.6;
    }
    
    /* Features list */
    .renovation-features,
    .design-features,
    .villa-features,
    .cafe-features,
    .toilet-features,
    .safety-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .renovation-features li,
    .villa-features li,
    .cafe-features li,
    .toilet-features li,
    .design-features li,
    .safety-features li {
        font-size: 0.8rem;
        padding: 6px 0;
        gap: 8px;
    }
    
    /* Remove hover transforms on cards */
    .renovation-card:hover .renovation-image img,
    .villa-card:hover .villa-image img,
    .cafe-card:hover .cafe-image img,
    .toilet-card:hover .toilet-image img,
    .design-card:hover .design-image img,
    .safety-card:hover .safety-image img {
        transform: none !important;
    }
    
    /* Why Choose Us section */
    .why-header h2 {
        font-size: 1.15rem;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }
    
    .why-header p {
        font-size: 0.9rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin: 0;
    }
    
    .why-item {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    /* Remove hover on why items */
    .why-item:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }
    
    .why-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .why-item h3 {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .why-item p {
        font-size: 0.75rem;
    }
    
    /* ========================================
       HORIZONTAL SCROLL-SNAP FOR PORTFOLIO
       ======================================== */
    
    .portfolio-section .container {
        padding: 0;
        max-width: 100%;
    }
    
    .portfolio-header {
        padding: 0 15px;
    }
    
    .portfolio-header h2 {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }
    
    .portfolio-header p {
        font-size: 0.9rem;
    }
    
    .portfolio-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 15px 15px;
        margin: 0;
        scrollbar-width: none;
    }
    
    .portfolio-grid::-webkit-scrollbar {
        display: none;
    }
    
    .portfolio-item {
        flex: 0 0 auto;
        width: 200px;
        scroll-snap-align: start;
        border-radius: 12px;
    }
    
    .portfolio-item img {
        height: 150px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Remove hover on portfolio items */
    .portfolio-item:hover {
        transform: none !important;
    }
    .portfolio-item:hover img {
        transform: none !important;
    }
    
    .portfolio-button {
        padding: 0 15px;
    }
    
    /* CTA section */
    .contact-cta {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .cta-button:hover {
        transform: none !important;
    }
    
    .view-more-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .view-more-btn:hover {
        transform: none !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .hero-content-minimal h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .categories-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-box {
        padding: 14px 8px;
    }
    
    .container {
        padding: 0 15px;
    }
}
