/* NJ Services Stylesheet */

/* --- CSS Variables & Design System --- */
:root {
    --color-primary: #072247;
    --color-secondary: #f18c1c;
    --color-text-dark: #0c264c;
    --color-text-muted: #5a6e85;
    --color-bg-light: #f8fafc;
    --color-bg-dark: #072247;
    --color-white: #ffffff;
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-quick: all 0.2s ease;
    --max-width: 1440px;
    --header-height: 100px;
}

/* --- Reset & Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-dark);
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
    background: #c1cbd6;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-muted);
}

/* --- Header & Navigation --- */
.header {
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(7, 34, 71, 0.05);
    transition: var(--transition-smooth);
}

.header.scrolled {
    height: 80px;
    box-shadow: 0 4px 30px rgba(7, 34, 71, 0.08);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 108px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 86px;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown styling */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.chevron-icon {
    transition: transform 0.3s ease;
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(7, 34, 71, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-secondary);
}

/* Header Contact Info */
.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(241, 140, 28, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.phone-link:hover .phone-icon-wrapper {
    background-color: var(--color-secondary);
    transform: rotate(15deg);
}

.phone-link:hover .phone-icon-wrapper svg path {
    stroke: var(--color-white);
}

.phone-text-container {
    display: flex;
    flex-direction: column;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
    transition: var(--transition-quick);
}

.phone-link:hover .phone-number {
    color: var(--color-secondary);
}

.phone-location {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: var(--header-height);
    background-color: var(--color-white);
    min-height: 680px;
    height: calc(100vh - var(--header-height));
    max-height: 850px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 43% 57%;
    height: 100%;
    width: 100%;
}

/* Hero Left Content */
.hero-content {
    display: flex;
    align-items: center;
    padding: 0 60px 0 80px;
    background-color: var(--color-white);
    position: relative;
    z-index: 10;
}

.hero-text-wrapper {
    max-width: 540px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.text-blue {
    color: var(--color-primary);
}

.text-orange {
    color: var(--color-secondary);
}

.font-medium {
    font-weight: 700;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 480px;
}

/* Actions & Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(241, 140, 28, 0.2);
}

.btn-primary:hover {
    background-color: #d97810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 140, 28, 0.35);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(7, 34, 71, 0.15);
}

.btn-secondary:hover {
    background-color: #0c2f5d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(7, 34, 71, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
    transform: rotate(15deg) scale(1.1);
}

/* Hero Right Visual (Slanted Double Images) */
.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-white); /* shows as diagonal separator */
}

.hero-clip-part {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Diagonal Layout Math:
   - Line connects point (70% width, 0% height) to (50% width, 100% height).
   - Bathroom (Left Image) uses this line as its right edge.
   - House (Right Image) uses this line as its left edge.
   - Separate them by offseting the clip boundary slightly left/right.
*/
.clip-bathroom {
    left: 0;
    clip-path: polygon(0 0, calc(70% - 6px) 0, calc(50% - 6px) 100%, 0 100%);
    z-index: 2;
}

.clip-house {
    left: 0;
    clip-path: polygon(calc(70% + 6px) 0, 100% 0, 100% 100%, calc(50% + 6px) 100%);
    z-index: 1;
}

/* Custom separator line element for smooth load/hover transitions */
.clip-separator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    clip-path: polygon(calc(70% - 6px) 0, calc(70% + 6px) 0, calc(50% + 6px) 100%, calc(50% - 6px) 100%);
    z-index: 3;
    pointer-events: none;
}

.clip-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image Backgrounds */
.bg-bathroom {
    background-image: url('hero1.png');
    background-color: #e2e8f0;
}

.bg-house {
    background-image: url('hero2.png');
    background-color: #e2e8f0;
}

/* Subtle image overlay for depth */
.clip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 34, 71, 0.2) 0%, rgba(7, 34, 71, 0) 100%);
    pointer-events: none;
    z-index: 4;
}

/* Image Interactivity / Hover states */
.hero-clip-part:hover .clip-image-bg {
    transform: scale(1.06);
}

/* Dynamic Expand/Contract Hover effect
   When one section is hovered, we shift the clip paths slightly to expand that section's field of view!
*/
.hero-visual.hover-bathroom .clip-bathroom {
    clip-path: polygon(0 0, calc(73% - 6px) 0, calc(53% - 6px) 100%, 0 100%);
}
.hero-visual.hover-bathroom .clip-house {
    clip-path: polygon(calc(73% + 6px) 0, 100% 0, 100% 100%, calc(53% + 6px) 100%);
}
.hero-visual.hover-bathroom .clip-separator {
    clip-path: polygon(calc(73% - 6px) 0, calc(73% + 6px) 0, calc(53% + 6px) 100%, calc(53% - 6px) 100%);
}

.hero-visual.hover-house .clip-bathroom {
    clip-path: polygon(0 0, calc(67% - 6px) 0, calc(47% - 6px) 100%, 0 100%);
}
.hero-visual.hover-house .clip-house {
    clip-path: polygon(calc(67% + 6px) 0, 100% 0, 100% 100%, calc(47% + 6px) 100%);
}
.hero-visual.hover-house .clip-separator {
    clip-path: polygon(calc(67% - 6px) 0, calc(67% + 6px) 0, calc(47% + 6px) 100%, calc(47% - 6px) 100%);
}


/* --- Bottom Features Bar --- */
.features-bar {
    width: 100%;
    background-color: var(--color-bg-dark);
    padding: 30px 40px;
    position: relative;
    z-index: 20;
}

.features-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
    background-color: rgba(241, 140, 28, 0.1);
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(241, 140, 28, 0.15);
}

.feature-svg {
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-svg {
    transform: scale(1.1);
}

.feature-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #a3b8cc;
    font-weight: 400;
    line-height: 1.5;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
}


/* --- Entrance Animations --- */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle.animate-fade-in-up { animation-delay: 0.1s; }
.hero-title.animate-fade-in-up { animation-delay: 0.25s; }
.hero-description.animate-fade-in-up { animation-delay: 0.4s; }
.hero-actions.animate-fade-in-up { animation-delay: 0.55s; }

.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    animation: slideLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    animation: slideRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.45s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.7s;
}

.animate-fade-in-up-delay {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.features-container .feature-item:nth-child(1) { animation-delay: 0.7s; }
.features-container .feature-item:nth-child(3) { animation-delay: 0.85s; }
.features-container .feature-item:nth-child(5) { animation-delay: 1.0s; }

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

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* --- Services Section --- */
.services-section {
    width: 100%;
    background-color: var(--color-bg-light);
    padding: 80px 40px;
}

.services-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.services-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

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

.service-card {
    position: relative;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 34, 71, 0.05);
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 34, 71, 0.12);
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image {
    transform: scale(1.08);
}

/* Fallback colors matching images */
.bg-waterproofing {
    background-image: url('1.png');
    background-color: #cbd5e1;
}

.bg-painting {
    background-image: url('2.jpg');
    background-color: #fed7aa;
}

.bg-tiling {
    background-image: url('3.jpg');
    background-color: #e2e8f0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 34, 71, 0.85) 0%, rgba(7, 34, 71, 0.25) 50%, rgba(7, 34, 71, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.service-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 34, 71, 0.95) 0%, rgba(7, 34, 71, 0.5) 60%, rgba(7, 34, 71, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.service-card:hover .service-overlay::after {
    opacity: 1;
}

/* Transparent Content overlay inside Service Card */
.service-content-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 3;
    transition: var(--transition-smooth);
}

.service-card:hover .service-content-card {
    transform: translateY(-5px);
}

.service-icon-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}

.badge-blue {
    background-color: var(--color-primary);
}

.badge-orange {
    background-color: var(--color-secondary);
}

.service-card:hover .badge-blue {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 15px rgba(7, 34, 71, 0.5);
}

.service-card:hover .badge-orange {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 15px rgba(241, 140, 28, 0.5);
}

.service-content-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(7, 34, 71, 0.3);
}

.service-content-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(7, 34, 71, 0.3);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
    transition: var(--transition-quick);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    color: #ffffff;
}

.service-card:hover .arrow-icon {
    transform: translateX(6px);
}

/* --- About Section --- */
.about-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 0;
    overflow: hidden;
}

.about-container {
    display: flex;
    width: 100%;
    min-height: 520px;
}

/* Left + Middle: Background Bathroom Image + Text Overlay */
.about-main-wrapper {
    position: relative;
    width: 75%;
    display: flex;
    align-items: center;
    background-image: url('hero1.png');
    background-size: cover;
    background-position: center;
    padding: 80px;
    z-index: 1;
}

.about-main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.95) 70%, 
        rgba(255,255,255,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.about-text-content {
    position: relative;
    z-index: 3;
    max-width: 540px;
}

.about-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.about-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-paragraph {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

/* Right Column: Mission navy block */
.about-mission-block {
    width: 25%;
    background-color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mission-content {
    max-width: 280px;
}

.mission-icon-wrapper {
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.about-mission-block:hover .mission-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.mission-title {
    color: var(--color-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.mission-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* --- Why Choose Us Section --- */
.why-section {
    width: 100%;
    background-color: #f1f6fa;
    padding: 80px 40px;
    border-top: 1px solid rgba(7, 34, 71, 0.05);
}

.why-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.why-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.why-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
}

.why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateY(-8px);
}

.why-icon-wrapper {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
}

.why-svg {
    filter: drop-shadow(0 4px 6px rgba(241, 140, 28, 0.15));
}

.why-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 14px;
    line-height: 1.3;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.why-divider {
    width: 1px;
    background-color: rgba(7, 34, 71, 0.08);
    align-self: stretch;
}


/* --- Projects Section --- */
.projects-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 80px 40px;
}

.projects-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 40px;
}

.projects-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.projects-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.projects-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* Filter tabs styling */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    color: var(--color-secondary);
}

.filter-btn.active {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(241, 140, 28, 0.2);
}

/* Projects grid styling */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.project-card {
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    opacity: 1;
    transform: scale(1);
}

/* For JS filtering animation classes */
.project-card.fade-out {
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.project-card.fade-in {
    animation: scaleUpIn 0.4s ease forwards;
}

@keyframes scaleUpIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.project-image-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(7, 34, 71, 0.05);
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
    transform: scale(1.06);
}

/* Image background classes mapped to local assets */
.bg-project1 {
    background-image: url('p1.jpg');
    background-color: #cbd5e1;
}

.bg-project2 {
    background-image: url('p2.jpg');
    background-color: #cbd5e1;
}

.bg-project3 {
    background-image: url('p3.jpg');
    background-color: #fed7aa;
}

.bg-project4 {
    background-image: url('p4.jpg');
    background-color: #fed7aa;
}

.bg-project5 {
    background-image: url('p5.jpg');
    background-color: #e2e8f0;
}

.bg-project6 {
    background-image: url('p6.jpg');
    background-color: #cbd5e1;
}

/* Project Info caption below image */
.project-info {
    text-align: center;
}

.project-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
    line-height: 1.4;
}

.project-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.projects-actions {
    display: flex;
    justify-content: center;
}


/* --- Testimonials Section --- */
.testimonials-section {
    width: 100%;
    /* Gradient backdrop overlaying a background image for deep contrast */
    background: linear-gradient(90deg, 
        rgba(7, 34, 71, 1) 0%, 
        rgba(7, 34, 71, 0.95) 50%, 
        rgba(7, 34, 71, 0.75) 100%), 
        url('hero1.png');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.testimonials-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-white);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.testimonials-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}

/* Slider Track Layout */
.testimonials-slider-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stars-row {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star-svg {
    filter: drop-shadow(0 2px 4px rgba(241, 140, 28, 0.15));
}

.testimonial-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes profile to bottom */
    font-style: italic;
}

/* Client Profile at Card Bottom */
.client-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(7, 34, 71, 0.05);
    padding-top: 20px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
    box-shadow: 0 4px 10px rgba(7, 34, 71, 0.08);
}

.bg-avatar1 {
    background-image: url('avatar1.png');
}

.bg-avatar2 {
    background-image: url('avatar2.png');
}

.bg-avatar3 {
    background-image: url('avatar3.png');
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
}

.client-location {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Dots Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-quick);
}

.dot.active {
    background-color: var(--color-secondary);
    transform: scale(1.2);
}

/* --- Contact Section --- */
.contact-section {
    width: 100%;
    background-color: var(--color-white);
    padding: 0;
    overflow: hidden;
}

.contact-container {
    display: flex;
    width: 100%;
    min-height: 580px;
}

/* Left + Middle: Background Exterior Image + Text Overlay */
.contact-main-wrapper {
    position: relative;
    width: 65%;
    display: flex;
    align-items: center;
    background-image: url('hero2.png');
    background-size: cover;
    background-position: center;
    padding: 80px;
    z-index: 1;
}

.contact-main-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,0.95) 70%, 
        rgba(255,255,255,0) 100%);
    z-index: 2;
    pointer-events: none;
}

.contact-text-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 500px;
}

.contact-subtitle {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.contact-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    color: var(--color-primary);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.contact-underline {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: 24px;
    border-radius: 2px;
}

.contact-paragraph {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(241, 140, 28, 0.2);
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(7, 34, 71, 0.2);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
}

.contact-info-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

.contact-info-value {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition-quick);
}

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

/* Right Column: Message form navy block */
.contact-form-block {
    width: 35%;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 45px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title {
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: var(--transition-quick);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8fa0b5;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(241, 140, 28, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-color: var(--color-white);
}

.select-wrapper {
    position: relative;
}

.select-chevron {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: var(--transition-quick);
}

.form-group select:focus ~ .select-chevron {
    transform: translateY(-50%) rotate(180deg);
}

.form-group textarea {
    resize: none;
}

.btn-submit {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(241, 140, 28, 0.2);
    transition: var(--transition-smooth);
    margin-top: 8px;
    width: 100%;
}

.btn-submit:hover {
    background-color: #d97810;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 140, 28, 0.35);
}

/* --- Footer Section --- */
.footer-section {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: 80px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-column {
    position: relative;
    padding-right: 20px;
}

/* Vertical separator lines */
.footer-column:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    height: 80%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.brand-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: visible;
}

.footer-logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transform: translateY(-10px);
}

.footer-desc {
    font-size: 0.88rem;
    color: #a3b8cc;
    line-height: 1.6;
}

.footer-column h3 {
    color: var(--color-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #d1dfed;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.link-chevron {
    font-size: 0.8rem;
    opacity: 0.5;
    transition: var(--transition-quick);
    transform: translateX(0);
}

.footer-column ul li a:hover {
    color: var(--color-secondary);
}

.footer-column ul li a:hover .link-chevron {
    opacity: 1;
    transform: translateX(4px);
    color: var(--color-secondary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-contact-value {
    font-size: 0.92rem;
    color: #d1dfed;
    transition: var(--transition-quick);
}

a.footer-contact-value:hover {
    color: var(--color-secondary);
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.social-btn:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(241, 140, 28, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: #a3b8cc;
}


/* --- Responsive Media Queries --- */

/* Ultra Wide Desktops */
@media (min-width: 1440px) {
    .header-container {
        padding: 0 80px;
    }
    .hero-content {
        padding: 0 80px 0 120px;
    }
}

/* Medium Desktops & Laptops */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 30px;
    }
    .nav-menu ul {
        gap: 20px;
    }
    .hero-content {
        padding: 0 40px;
    }
    .features-container {
        gap: 20px;
    }
    .feature-item {
        gap: 16px;
    }
    .feature-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    .feature-text h3 {
        font-size: 1.05rem;
    }

    .about-main-wrapper {
        padding: 50px 40px;
        width: 70%;
    }
    .about-mission-block {
        width: 30%;
        padding: 50px 30px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .why-divider {
        display: none;
    }
    
    .why-item {
        padding: 20px;
        background-color: var(--color-white);
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(7, 34, 71, 0.02);
    }

    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact-main-wrapper {
        padding: 50px 40px;
        width: 65%;
    }
    .contact-form-block {
        width: 35%;
        padding: 50px 30px;
    }

    .footer-grid {
        gap: 30px;
    }
    .footer-column {
        padding-right: 10px;
    }
}

/* Small Desktops & Large Tablets */
@media (max-width: 992px) {
    :root {
        --header-height: 80px;
    }

    /* Mobile Menu Drawer */
    .mobile-nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-white);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(7, 34, 71, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 8px 0 0 16px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* Hero section turns into single column stacked layout for responsive ease */
    .hero-section {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 100%;
        gap: 40px;
    }

    .hero-content {
        padding: 40px 30px 0 30px;
        justify-content: center;
    }

    .hero-text-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
        width: calc(100% - 60px);
        margin: 0 auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(7, 34, 71, 0.08);
    }

    .features-container {
        flex-direction: column;
        gap: 30px;
    }

    .feature-divider {
        display: none;
    }

    .feature-item {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-container {
        flex-direction: column;
    }
    
    .about-main-wrapper {
        width: 100%;
        min-height: auto;
        padding: 60px 30px;
    }
    
    .about-text-content {
        max-width: 100%;
        background: rgba(255, 255, 255, 0.96);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(7, 34, 71, 0.05);
    }
    
    .about-mission-block {
        width: 100%;
        padding: 60px 30px;
    }
    
    .mission-content {
        max-width: 500px;
    }

    .services-section {
        padding: 60px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-image-wrapper {
        height: 180px;
    }

    .testimonials-slider {
        display: flex;
        width: 300%;
        gap: 0;
    }
    
    .testimonial-card {
        width: 33.333%;
        flex-shrink: 0;
        margin: 0;
        padding: 40px 30px;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .testimonials-slider-wrapper {
        padding: 0 10px;
    }

    .contact-container {
        flex-direction: column;
    }
    .contact-main-wrapper {
        width: 100%;
        min-height: auto;
        padding: 60px 30px;
    }
    .contact-text-content {
        max-width: 100%;
        background: rgba(255, 255, 255, 0.96);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(7, 34, 71, 0.05);
    }
    .contact-form-block {
        width: 100%;
        padding: 60px 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .footer-column {
        padding-right: 0;
    }
    .footer-column:not(:last-child)::after {
        display: none;
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .header-container {
        padding: 0 20px;
    }

    .header-contact {
        display: none; /* Hide top phone text on small mobile, rely on hero CTA */
    }

    .hero-content {
        padding: 30px 20px 0 20px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        height: 300px;
        width: calc(100% - 40px);
    }

    /* Make slants slightly less steep on small screens for visual layout */
    .clip-bathroom {
        clip-path: polygon(0 0, calc(65% - 4px) 0, calc(45% - 4px) 100%, 0 100%);
    }

    .clip-house {
        clip-path: polygon(calc(65% + 4px) 0, 100% 0, 100% 100%, calc(45% + 4px) 100%);
    }

    .clip-separator {
        clip-path: polygon(calc(65% - 4px) 0, calc(65% + 4px) 0, calc(45% + 4px) 100%, calc(45% - 4px) 100%);
    }

    /* Reset Hover Shift effects on mobile touch screens to avoid layout jumps */
    .hero-visual.hover-bathroom .clip-bathroom,
    .hero-visual.hover-bathroom .clip-house,
    .hero-visual.hover-bathroom .clip-separator,
    .hero-visual.hover-house .clip-bathroom,
    .hero-visual.hover-house .clip-house,
    .hero-visual.hover-house .clip-separator {
        clip-path: inherit;
    }

    .features-bar {
        padding: 40px 20px;
    }

    .about-main-wrapper {
        background-image: none;
        background-color: var(--color-bg-light);
        padding: 40px 20px;
    }
    
    .about-text-content {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .about-mission-block {
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .services-section {
        padding: 50px 20px;
    }

    .service-content-card {
        padding: 20px;
    }

    .why-section {
        padding: 50px 20px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-item h3 {
        min-height: auto;
    }

    .projects-section {
        padding: 50px 20px;
    }
    
    .projects-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto 40px auto;
    }
    
    .project-image-wrapper {
        height: 200px;
    }

    .testimonials-section {
        padding: 50px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card h3 {
        font-size: 1.05rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }

    .contact-main-wrapper {
        background-image: none;
        background-color: var(--color-bg-light);
        padding: 40px 20px;
    }
    .contact-text-content {
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    .contact-form-block {
        padding: 50px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .footer-section {
        padding: 40px 20px 20px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-logo {
        height: 60px;
    }
    .footer-logo-img {
        height: 90px;
        transform: translateY(-15px);
    }
    .brand-column {
        gap: 12px;
    }
    .footer-desc {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    .footer-column h3 {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }
    .footer-column ul {
        gap: 8px;
    }
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    .footer-contact-info {
        gap: 10px;
        margin-bottom: 15px;
    }
    .footer-contact-value {
        font-size: 0.85rem;
    }
    .footer-bottom {
        padding-top: 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Mobile Menu Active burger animations */
.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
