/* ===================================
   KAZIMIR HOME SERVICES - STYLESHEET
   Color Scheme: Black, Red (#E63946), White
   =================================== */

/* === CSS Variables === */
:root {
    --primary-red: #E63946;
    --primary-black: #0A0A0A;
    --secondary-black: #1A1A1A;
    --dark-gray: #2A2A2A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-gray: #666666;
    --border-gray: #DDDDDD;

    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* === Global Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-black);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.98);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all var(--transition-speed) ease;
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:not(.btn-primary):hover,
.nav-menu a.active {
    color: var(--primary-red);
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width var(--transition-speed) ease;
}

.nav-menu a:not(.btn-primary):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-primary,
.nav-menu .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 0.7rem 2rem !important;
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.btn-primary:hover,
.nav-menu .btn-primary:hover {
    background: #d32f3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 57, 70, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all var(--transition-speed) ease;
    border-radius: 3px;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    display: inline-block;
}

.btn-hero-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-hero-primary:hover {
    background: #d32f3d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
    0%, 100% { transform: rotate(-45deg) translate(0, 0); opacity: 0; }
    50% { transform: rotate(-45deg) translate(5px, 5px); opacity: 1; }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Data-AOS attribute styles */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* === Section Styles === */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* === Services Preview Section === */
.services-preview {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-speed) ease;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-red);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all var(--transition-speed) ease;
}

.service-card:hover .service-icon {
    background: var(--primary-red);
    color: var(--white);
    transform: rotate(360deg);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-black);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.btn-secondary:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

/* === Why Choose Us Section === */
.why-choose-us {
    background: var(--primary-black);
    color: var(--white);
}

.why-choose-us .section-header h2,
.why-choose-us .section-header p {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-speed) ease;
}

.feature-item:hover {
    background: rgba(230, 57, 70, 0.1);
    transform: scale(1.05);
}

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.feature-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* === Transformations Section (Home Page) === */
.transformations-section {
    background: var(--white);
    padding: 5rem 0;
}

.slider-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.slider-instruction svg {
    width: 24px;
    height: 24px;
    color: var(--primary-red);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.transformation-item {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.transformation-item .before-after-slider {
    height: 500px;
}

.transformation-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.transformation-info {
    padding: 2rem;
    background: var(--white);
}

.transformation-info h3 {
    color: var(--primary-black);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.transformation-info p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Before/After Labels */
.before-after-labels {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.label-before,
.label-after {
    background: rgba(10, 10, 10, 0.8);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.label-after {
    background: rgba(230, 57, 70, 0.9);
}

/* === Gallery Section (Our Work Page) === */
.gallery-section {
    background: var(--white);
    padding: 5rem 0;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 2rem;
    background: var(--light-gray);
    color: var(--primary-black);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-family: var(--font-primary);
}

.filter-btn:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Gallery Grid - Masonry Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

/* Different sized items for variety */
.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-tall {
    grid-row: span 2;
}

/* Gallery Images */
.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

/* Placeholder Images */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .placeholder-image {
    transform: scale(1.1);
}

.placeholder-text {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    opacity: 0.3;
    font-family: var(--font-heading);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.gallery-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    animation: lightboxZoom 0.3s ease;
}

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

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    border-radius: 5px;
}

.lightbox-caption {
    background: var(--primary-black);
    padding: 1.5rem;
    border-radius: 0 0 5px 5px;
    color: var(--white);
}

.lightbox-caption h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    transition: all var(--transition-speed) ease;
    border-radius: 5px;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
    padding: 0.5rem 1rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #d32f3d;
    transform: scale(1.1);
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Gallery Item Fade Effect for Filtering */
.gallery-item.hide {
    display: none;
    animation: fadeOut 0.3s ease;
}

.gallery-item.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* === Before/After Slider === */
.before-after-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.before-after-before,
.before-after-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-before {
    z-index: 1;
}

.before-after-after {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.before-after-before img,
.before-after-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Before/After Handle */
.before-after-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    transition: background 0.3s ease;
}

.before-after-item:hover .before-after-handle {
    background: var(--primary-red);
}

.handle-line {
    flex: 1;
    width: 4px;
    background: inherit;
}

.handle-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    gap: 2px;
    transition: all 0.3s ease;
}

.before-after-item:hover .handle-circle {
    background: var(--primary-red);
    transform: scale(1.1);
}

.handle-circle svg {
    width: 16px;
    height: 16px;
    color: var(--primary-black);
}

.before-after-item:hover .handle-circle svg {
    color: var(--white);
}

/* Before/After Badge */
.before-after-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--white);
    color: var(--primary-black);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Prevent hover zoom on before/after items */
.before-after-item:hover .before-after-slider .placeholder-image {
    transform: scale(1);
}

.before-after-item:hover .before-after-slider img {
    transform: scale(1);
}

/* === Customer Reviews Section === */
.reviews-section {
    background: var(--primary-black);
    padding: 4rem 0;
    overflow: hidden;
}

.reviews-section .section-header h2,
.reviews-section .section-header p {
    color: var(--white);
}

.reviews-section .section-header {
    margin-bottom: 2.5rem;
}

.five-star-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.five-star-header svg {
    width: 32px;
    height: 32px;
    color: #FFD700;
}

.reviews-carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0 1.5rem;
}

.reviews-carousel {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-reviews 30s linear infinite;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 300px;
    flex-shrink: 0;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--primary-red);
    opacity: 0.15;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 0.75rem;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    color: #FFD700;
}

.review-text {
    flex: 1;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-gray);
}

.author-avatar {
    width: 38px;
    height: 38px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.author-name {
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.95rem;
}

/* === Recent Projects Showcase === */
.recent-projects-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.projects-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 1.5rem;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.showcase-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-tall {
    grid-row: span 2;
}

.showcase-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.showcase-item:hover .showcase-image img,
.showcase-item:hover .showcase-image .placeholder-image {
    transform: scale(1.1);
}

.showcase-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 70%, transparent 100%);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.showcase-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.showcase-featured .showcase-content h3 {
    font-size: 2rem;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-content p {
    opacity: 1;
    transform: translateY(0);
}

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, #d32f3d 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-section .btn-hero-primary {
    background: var(--primary-black);
    color: var(--white);
}

.cta-section .btn-hero-primary:hover {
    background: rgba(10, 10, 10, 0.85);
    transform: translateY(-2px);
}

/* === Page Header === */
.page-header {
    background: var(--primary-black);
    color: var(--white);
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* === Services Detail Section (Legacy) === */
.services-detail {
    background: var(--light-gray);
}

.service-detail-card {
    background: var(--white);
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

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

.service-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
}

.service-detail-icon svg {
    width: 60px;
    height: 60px;
}

.service-detail-card h2 {
    color: var(--primary-black);
}

.service-detail-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 24px;
    height: 24px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* === Services Accordion Section === */
.services-accordion-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.service-accordion {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

.service-accordion:hover {
    box-shadow: var(--box-shadow-hover);
}

.service-accordion.active {
    box-shadow: var(--box-shadow-hover);
}

.service-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-speed) ease;
}

.service-accordion-header:hover {
    background: var(--light-gray);
}

.service-accordion.active .service-accordion-header {
    background: var(--primary-black);
}

.service-accordion.active .service-accordion-header h2 {
    color: var(--white);
}

.service-accordion-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-black);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: all var(--transition-speed) ease;
}

.service-accordion.active .service-accordion-icon {
    background: var(--primary-red);
    color: var(--white);
}

.service-accordion-icon svg {
    width: 32px;
    height: 32px;
}

.service-accordion-header h2 {
    flex: 1;
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-black);
    transition: color var(--transition-speed) ease;
}

.accordion-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all var(--transition-speed) ease;
}

.service-accordion.active .accordion-arrow {
    color: var(--white);
    transform: rotate(180deg);
}

.accordion-arrow svg {
    width: 24px;
    height: 24px;
}

.service-accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: all 0.4s ease;
}

.service-accordion.active .service-accordion-content {
    max-height: 600px;
    padding: 2rem;
    border-top: 1px solid var(--border-gray);
}

.service-accordion-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-accordion-content .service-features {
    margin-bottom: 1.5rem;
}

.service-accordion-content .btn-secondary {
    margin-top: 0.5rem;
}

/* === About Page Styles === */
.about-content {
    padding: 4rem 0;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-intro h2 {
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card,
.vision-card {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-card p,
.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === Values Section === */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
}

/* === Why Choose About Section === */
.why-choose-about {
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.why-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-red);
    background: var(--light-gray);
    border-radius: 5px;
    transition: all var(--transition-speed) ease;
}

.why-item:hover {
    background: var(--white);
    box-shadow: var(--box-shadow);
    transform: translateX(10px);
}

.why-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.why-item h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.why-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* === Contact Page Styles === */
.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #d32f3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    display: none;
    margin-top: 1rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.service-area-card,
.emergency-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info-card h3,
.service-area-card h3,
.emergency-card h3 {
    color: var(--primary-black);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.service-area-card p,
.emergency-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.btn-emergency {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.btn-emergency:hover {
    background: #d32f3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

/* === Map Section === */
.map-section {
    padding: 0;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.map-overlay h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.map-overlay p {
    color: rgba(255, 255, 255, 0.9);
}

/* === Footer === */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col:first-child {
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto 1rem;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.footer-col h4 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-speed) ease;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item-wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .transformation-item .before-after-slider {
        height: 450px;
    }

    .projects-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }

    .showcase-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .showcase-tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    /* Navigation */
    .navbar {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 50px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-black);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left var(--transition-speed) ease;
        gap: 1rem;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }

    .nav-menu .btn-primary {
        text-align: center;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 6rem 2rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .service-icon svg {
        width: 28px;
        height: 28px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-number {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    /* Transformations Section */
    .transformations-section {
        padding: 3rem 0;
    }

    .transformations-section .section-header {
        margin-bottom: 2rem;
    }

    .transformations-section .section-header h2 {
        font-size: 1.75rem;
    }

    .transformations-section .section-header p {
        font-size: 0.95rem;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-item .before-after-slider {
        height: 300px;
    }

    .before-after-labels {
        font-size: 0.7rem;
        padding: 0.5rem;
    }

    .slider-instruction {
        font-size: 0.85rem;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .slider-instruction svg {
        width: 16px;
        height: 16px;
    }

    .transformation-info {
        padding: 1rem;
    }

    .transformation-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .transformation-info p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Our Craftsmanship Showcase */
    .recent-projects-section {
        padding: 3rem 0;
    }

    .recent-projects-section .section-header h2 {
        font-size: 1.75rem;
    }

    .projects-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 1.5rem;
    }

    .showcase-item {
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        overflow: visible;
        box-shadow: var(--box-shadow);
    }

    .showcase-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .showcase-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .showcase-image {
        height: 200px;
        border-radius: 10px 10px 0 0;
    }

    .showcase-overlay {
        position: relative;
        background: var(--white);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }

    .showcase-category {
        padding: 0.3rem 0.75rem;
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    .showcase-content h3 {
        font-size: 1rem;
        color: var(--primary-black);
        margin-bottom: 0.5rem;
    }

    .showcase-featured .showcase-content h3 {
        font-size: 1.1rem;
    }

    .showcase-content p {
        font-size: 0.85rem;
        color: var(--text-gray);
        display: block;
        opacity: 1;
        transform: translateY(0);
        line-height: 1.4;
    }

    /* Gallery - 2 column mobile layout */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 0.75rem;
    }

    .gallery-item-large,
    .gallery-item-wide,
    .gallery-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Make first item span both columns as featured */
    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }

    .gallery-overlay h3 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .gallery-overlay p {
        font-size: 0.75rem;
        display: none;
    }

    .gallery-category {
        padding: 0.25rem 0.6rem;
        font-size: 0.7rem;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Page Header */
    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Services Accordion Mobile */
    .services-accordion-section {
        padding: 3rem 0;
    }

    .service-accordion-header {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .service-accordion-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .service-accordion-icon svg {
        width: 26px;
        height: 26px;
    }

    .service-accordion-header h2 {
        font-size: 1.1rem;
    }

    .service-accordion-content {
        padding: 0 1.25rem;
    }

    .service-accordion.active .service-accordion-content {
        padding: 1.5rem 1.25rem;
    }

    .service-accordion-content p {
        font-size: 1rem;
    }

    .service-accordion-content .service-features {
        grid-template-columns: 1fr;
    }

    /* Why Choose Grid */
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews Section */
    .reviews-section {
        padding: 2.5rem 0;
    }

    .five-star-header svg {
        width: 24px;
        height: 24px;
    }

    .reviews-carousel {
        gap: 1rem;
    }

    .review-card {
        min-width: 260px;
        max-width: 260px;
        padding: 1.25rem;
    }

    /* Section padding */
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .services-grid {
        gap: 0.5rem;
    }

    .service-card {
        padding: 1rem 0.5rem;
    }

    .service-card h3 {
        font-size: 0.85rem;
    }

    .service-card p {
        font-size: 0.7rem;
    }

    .projects-showcase-grid {
        gap: 1rem;
    }

    .showcase-image {
        height: 180px;
    }

    .showcase-overlay {
        padding: 0.75rem;
    }

    .showcase-content h3 {
        font-size: 0.9rem;
    }

    .showcase-featured .showcase-content h3 {
        font-size: 1rem;
    }

    .showcase-content p {
        font-size: 0.8rem;
    }

    .showcase-category {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Gallery - smaller on very small screens */
    .gallery-grid {
        grid-auto-rows: 130px;
        gap: 0.5rem;
    }

    .gallery-item-large {
        grid-row: span 1;
    }

    .gallery-overlay h3 {
        font-size: 0.8rem;
    }

    .filter-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* === Utility Classes === */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }