/**
 * Studio Inserto - Modern Enhancements
 * Elegantni, premium stil
 */

/* ==========================================================================
   Enhanced Typography & Spacing
   ========================================================================== */

body {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.03em;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

/* ==========================================================================
   Premium Hero Section - Cascade Drop Animation
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    overflow: hidden;
    perspective: 1200px;
}

.hero-background {
    transform-origin: top center;
    opacity: 0;
    animation: bgUnfold 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s;
}

.hero-background img,
.hero-background video {
    opacity: 0.5;
    filter: saturate(0.8);
    transition: transform 20s ease, opacity 1s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
}

.hero:hover .hero-background img {
    transform: scale(1.05);
}

.hero:hover .hero-background video {
    transform: translate(-50%, -50%) scale(1.05);
}

@keyframes bgUnfold {
    0% {
        opacity: 0;
        transform: perspective(1200px) rotateX(-15deg) translateY(-100px) scale(0.9);
    }
    60% {
        opacity: 0.7;
        transform: perspective(1200px) rotateX(3deg) translateY(10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
    }
}

.hero-content {
    transform-style: preserve-3d;
}

/* Cascade Drop Animations */
.hero-cascade .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    margin-bottom: 2rem;
    opacity: 0;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: cascadeDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.5s;
}

.hero-cascade .hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    white-space: nowrap;
}

/* Title words in one line */
.hero-cascade .hero-title .title-word {
    display: inline;
    opacity: 0;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: titleDrop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-cascade .hero-title .title-word:first-child {
    animation-delay: 0.7s;
    margin-right: 0.3em;
}

.hero-cascade .hero-title .title-word:last-child {
    animation-delay: 0.9s;
}

.hero-cascade .hero-title .title-green {
    color: #00D26A;
    text-shadow: 0 4px 30px rgba(0, 210, 106, 0.5);
}

@keyframes titleDrop {
    0% {
        opacity: 0;
        transform: translateY(-120px) rotateX(-30deg) scale(0.8);
        filter: blur(10px);
    }
    50% {
        opacity: 0.8;
        filter: blur(2px);
    }
    75% {
        transform: translateY(8px) rotateX(5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}

.hero-cascade .hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    line-height: 1.8;
    opacity: 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: cascadeDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.1s;
    max-width: 600px;
}

.hero-cascade .hero-buttons {
    opacity: 0;
    animation: cascadeDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.3s;
    gap: 1.25rem;
}

/* Individual button bounce on landing */
.hero-cascade .hero-buttons .btn {
    opacity: 0;
    animation: btnDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-cascade .hero-buttons .btn:first-child {
    animation-delay: 1.4s;
}

.hero-cascade .hero-buttons .btn:last-child {
    animation-delay: 1.55s;
}

/* White outline button - more visible */
.hero-cascade .btn-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-cascade .btn-outline-white:hover {
    background: #ffffff;
    color: #121212;
}

@keyframes btnDrop {
    0% {
        opacity: 0;
        transform: translateY(-60px) scale(0.9);
    }
    70% {
        transform: translateY(5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Main cascade drop keyframe */
@keyframes cascadeDrop {
    0% {
        opacity: 0;
        transform: translateY(-80px) rotateX(-15deg);
        filter: blur(5px);
    }
    60% {
        opacity: 0.9;
        filter: blur(1px);
    }
    80% {
        transform: translateY(5px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0);
    }
}

/* Legacy fadeInUp for other sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll indicator for cascade hero */
.hero-cascade .scroll-indicator {
    opacity: 0;
    animation: scrollIndicatorDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.8s;
}

/* Scroll mouse indicator */
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #00D26A;
    border-radius: 15px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #00D26A;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.3;
    }
}

@keyframes scrollIndicatorDrop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Hero overlay - darker for better text visibility */
.hero-cascade .hero-overlay-clean {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0;
    animation: overlayFade 1s ease forwards 0.1s;
}

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

/* Hero content positioning */
.hero-cascade .hero-content {
    text-align: center;
    z-index: 5;
    position: relative;
}

/* ==========================================================================
   Premium Buttons
   ========================================================================== */

.btn {
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 210, 106, 0.4);
}

.btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}

.btn-lg {
    padding: 1.15rem 2.5rem;
    font-size: 0.85rem;
}

/* ==========================================================================
   Section Headers - Refined
   ========================================================================== */

.section-header {
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #00D26A;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00D26A, transparent);
}

.section-header.text-center .section-label::after {
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    background: linear-gradient(90deg, transparent, #00D26A, transparent);
}

.section-title {
    font-weight: 600;
    line-height: 1.2;
    color: #E5E5E5;
}

.section-description {
    font-size: 1.15rem;
    color: #A3A3A3;
    font-weight: 400;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Service Cards - Glass Morphism Style
   ========================================================================== */

.services-grid {
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00D26A, #33E088);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.1) 0%, rgba(0, 210, 106, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 1.75rem;
}

.service-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #E5E5E5;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #A3A3A3;
}

/* ==========================================================================
   Portfolio Cards - Elegant Hover
   ========================================================================== */

.portfolio-grid {
    gap: 1.5rem;
}

.project-card {
    border-radius: 16px;
    aspect-ratio: 16/9;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.project-card-image img {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.project-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 20, 0.95) 0%,
        rgba(10, 10, 20, 0.6) 40%,
        transparent 100%
    );
    opacity: 0.7;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-content {
    padding: 2rem;
    transform: translateY(10px);
}

.project-card:hover .project-card-content {
    transform: translateY(0);
}

.project-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    padding: 0.35rem 0.75rem;
    background: rgba(0, 210, 106, 0.2);
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.project-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.project-card-meta {
    font-size: 0.85rem;
    color: #ffffff !important;
    opacity: 1 !important;
    font-weight: 500;
}

/* Filter Toggle Button & Dropdown */
.filter-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.875rem 1.5rem;
    background: #1A1A1A;
    border: 1.5px solid #2D2D2D;
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-mobile-toggle svg {
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.filter-mobile-toggle:hover {
    border-color: #3D3D3D;
    background: #1E1E1E;
}

.filter-mobile-toggle.open {
    border-color: #00D26A;
    border-radius: 12px 12px 0 0;
    border-bottom-color: transparent;
}

.filter-mobile-toggle.open svg {
    transform: rotate(180deg);
    opacity: 1;
    color: #00D26A;
}

/* Filter Dropdown */
.filter-mobile-dropdown {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #1A1A1A;
    border: 1.5px solid #2D2D2D;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-width: 400px;
    margin: -1px auto 0;
}

.filter-mobile-dropdown.open {
    max-height: 500px;
    border-color: #00D26A;
    border-top: none;
}

.filter-mobile-dropdown-inner {
    padding: 0.5rem;
}

.filter-mobile-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #A3A3A3;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-mobile-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.filter-mobile-item.active {
    background: rgba(0, 210, 106, 0.15);
    color: #00D26A;
    font-weight: 600;
}

/* Hide old desktop filter buttons - replaced by dropdown */
.portfolio-filters {
    display: none !important;
}

/* Portfolio Filters - New Design */
.portfolio-filters-wrapper {
    margin-bottom: 3rem;
    position: relative;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: flex-start;
}

/* Main Category Buttons - UPPERCASE, Bold */
.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 6px;
    border: 2px solid #3D3D3D;
    background: transparent;
    color: #E5E5E5;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn.filter-main {
    background: #1E1E1E;
}

.filter-btn.filter-main:hover {
    background: #00D26A;
    border-color: #00D26A;
    color: #fff;
}

.filter-btn.filter-main.active {
    background: #00D26A;
    border-color: #00D26A;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.3);
}

/* Subcategory Buttons - Normal case, Lighter */
.filter-btn.filter-sub {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    border: 1.5px solid #3D3D3D;
    color: #A3A3A3;
    background: #1A1A1A;
}

.filter-btn.filter-sub:hover {
    border-color: #00D26A;
    color: #00D26A;
    background: #1E1E1E;
}

.filter-btn.filter-sub.active {
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    border-color: transparent;
    color: #fff;
}

/* Filter Group with Dropdown */
.filter-group {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.filter-btn.has-children {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn .dropdown-arrow {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.filter-group:hover .dropdown-arrow,
.filter-group.open .dropdown-arrow {
    transform: rotate(180deg);
}

/* Submenu */
.filter-submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #1E1E1E;
    border: 1px solid #3D3D3D;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    padding: 0.75rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filter-submenu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1E1E1E;
}

.filter-group:hover .filter-submenu {
    opacity: 1;
    visibility: visible;
}

.filter-submenu .filter-btn {
    width: 100%;
    text-align: center;
    border-radius: 8px;
}

/* Active state indicator line for main categories */
.filter-btn.filter-main.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #00D26A;
    border-radius: 2px;
}

.filter-btn.filter-main {
    position: relative;
}

/* ==========================================================================
   Process Steps - Modern Timeline
   ========================================================================== */

.process-steps {
    position: relative;
    gap: 2rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
    display: none;
}

@media (min-width: 969px) {
    .process-steps::before {
        display: block;
    }
}

.process-step {
    padding: 2rem;
    background: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.process-number {
    width: 56px;
    height: 56px;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 210, 106, 0.3);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Benefits - Clean Design
   ========================================================================== */

.benefits-grid {
    gap: 3rem 4rem;
}

.benefit-item {
    gap: 1.25rem;
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    box-shadow: 0 8px 25px rgba(0, 210, 106, 0.25);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #A3A3A3;
}

/* ==========================================================================
   Testimonials - Elegant Cards
   ========================================================================== */

.testimonials-section {
    background: linear-gradient(180deg, #1A1A1A 0%, #121212 100%);
}

.testimonial-card {
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 1px solid #2D2D2D;
    background: #1E1E1E;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.9;
    font-style: normal;
    color: #A3A3A3;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid #00D26A;
}

.testimonial-quote::before {
    display: none;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
}

.testimonial-info h5 {
    font-size: 1rem;
    font-weight: 600;
}

/* ==========================================================================
   CTA Section - Gradient Background
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 106, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section .section-description {
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   Footer - Refined
   ========================================================================== */

.site-footer {
    background: linear-gradient(180deg, #0d0d1a 0%, #050508 100%);
}

.footer-logo {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.footer-column h4 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #00D26A;
}

.footer-menu a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    width: 0;
    height: 1px;
    background: #00D26A;
    transition: width 0.3s ease;
}

.footer-menu a:hover::before {
    width: 10px;
}

.footer-menu a:hover {
    padding-left: 5px;
}

.social-link {
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* ==========================================================================
   Page Headers - Elegant
   ========================================================================== */

.page-header {
    padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 8vw, 6rem);
    background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322C7C7' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    position: relative;
}

/* ==========================================================================
   Scroll Animations - Cascade Drop Style
   ========================================================================== */

.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Cascade drop variant for scroll reveal */
.cascade-in {
    animation: scrollCascade 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

@keyframes scrollCascade {
    0% {
        opacity: 0;
        transform: translateY(-50px) rotateX(-10deg) scale(0.95);
    }
    60% {
        opacity: 0.9;
    }
    80% {
        transform: translateY(3px) rotateX(2deg) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

/* Staggered animations for grids - with cascade effect */
/* Initial hidden state is set via JS (initScrollAnimations) so cards are visible without JS */

.services-grid .service-card.fade-in,
.portfolio-grid .project-card.fade-in,
.testimonials-grid .testimonial-card.fade-in,
.process-steps .process-step.fade-in {
    animation: cardDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes cardDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    70% {
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Section headers cascade */
.section-header {
    opacity: 0;
    transform: translateY(-30px);
}

.section-header.fade-in {
    animation: headerDrop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes headerDrop {
    0% {
        opacity: 0;
        transform: translateY(-40px) rotateX(-8deg);
    }
    75% {
        transform: translateY(4px) rotateX(1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* ==========================================================================
   Smooth Scrollbar
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #141414;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00D26A, #00B85C);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33E088, #00D26A);
}

/* ==========================================================================
   Loading Animation - Modern House Building
   ========================================================================== */

.loading {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.house-loader {
    width: 500px;
    height: 380px;
    position: relative;
}

.house-loader svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(0, 210, 106, 0.2));
}

/* ===== GROUND ===== */
.build-ground {
    stroke: #3a3a5c;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: drawLine 0.6s ease forwards 0.1s;
}

/* ===== FOUNDATION ===== */
.build-foundation {
    fill: #4a4a6a;
    opacity: 0;
    transform-origin: center bottom;
    animation: buildUp 0.4s ease forwards 0.5s;
}

/* ===== MAIN BUILDING FLOORS ===== */
.build-floor1 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 404;
    stroke-dashoffset: 404;
    animation: drawLine 0.7s ease forwards 0.8s;
}

.build-floor2 {
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-dasharray: 404;
    stroke-dashoffset: 404;
    animation: drawLine 0.7s ease forwards 1.3s;
}

/* ===== GARAGE ===== */
.build-garage {
    fill: none;
    stroke: #cccccc;
    stroke-width: 2;
    stroke-dasharray: 224;
    stroke-dashoffset: 224;
    animation: drawLine 0.5s ease forwards 1.1s;
}

/* ===== ROOFS ===== */
.build-roof-main {
    fill: #00D26A;
    opacity: 0;
    transform-origin: center;
    animation: buildUp 0.4s ease forwards 1.8s;
}

.build-roof-line {
    stroke: #00D26A;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
    animation: drawLine 0.4s ease forwards 1.9s;
}

.build-roof-garage {
    fill: #00B85C;
    opacity: 0;
    animation: buildUp 0.3s ease forwards 1.5s;
}

/* ===== WINDOWS ===== */
.build-window-large1,
.build-window-large2 {
    fill: rgba(0, 210, 106, 0.3);
    stroke: #33E088;
    stroke-width: 1.5;
    opacity: 0;
    animation: windowAppear 0.4s ease forwards 2.2s;
}

.build-window-large2 {
    animation-delay: 2.3s;
}

.build-window-top1,
.build-window-top2,
.build-window-top3 {
    fill: rgba(0, 210, 106, 0.25);
    stroke: #33E088;
    stroke-width: 1.5;
    opacity: 0;
    animation: windowAppear 0.3s ease forwards 2.4s;
}

.build-window-top2 { animation-delay: 2.5s; }
.build-window-top3 { animation-delay: 2.6s; }

/* Window reflections */
.build-glass-line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawLine 0.3s ease forwards 2.7s;
}

/* ===== DOOR ===== */
.build-door {
    fill: #2a2a4a;
    stroke: #ffffff;
    stroke-width: 1.5;
    opacity: 0;
    animation: fadeInElement 0.4s ease forwards 2s;
}

.build-door-glass {
    fill: rgba(0, 210, 106, 0.4);
    stroke: #33E088;
    stroke-width: 1;
    opacity: 0;
    animation: fadeInElement 0.3s ease forwards 2.1s;
}

.build-door-handle {
    fill: #00D26A;
    opacity: 0;
    animation: fadeInElement 0.2s ease forwards 2.2s;
}

/* ===== GARAGE DOOR ===== */
.build-garage-door {
    fill: #3a3a5a;
    stroke: #888;
    stroke-width: 1.5;
    opacity: 0;
    animation: fadeInElement 0.4s ease forwards 2s;
}

.build-garage-line1,
.build-garage-line2,
.build-garage-line3 {
    stroke: #666;
    stroke-width: 1;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: drawLine 0.2s ease forwards 2.2s;
}

.build-garage-line2 { animation-delay: 2.3s; }
.build-garage-line3 { animation-delay: 2.4s; }

/* ===== BALCONY ===== */
.build-balcony {
    fill: #00D26A;
    opacity: 0;
    animation: fadeInElement 0.3s ease forwards 2.6s;
}

.build-balcony-rail {
    stroke: #ffffff;
    stroke-width: 1.5;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawLine 0.3s ease forwards 2.7s;
}

/* ===== CHIMNEY ===== */
.build-chimney {
    fill: #4a4a6a;
    stroke: #666;
    stroke-width: 1;
    opacity: 0;
    animation: buildUp 0.3s ease forwards 2s;
}

/* ===== SOLAR PANELS ===== */
.build-solar1,
.build-solar2 {
    fill: #1a3a5a;
    stroke: #00D26A;
    stroke-width: 1;
    opacity: 0;
    animation: fadeInElement 0.3s ease forwards 2.8s;
}

.build-solar2 { animation-delay: 2.9s; }

.build-solar-line {
    stroke: #00D26A;
    stroke-width: 0.5;
    stroke-dasharray: 10;
    stroke-dashoffset: 10;
    animation: drawLine 0.2s ease forwards 3s;
}

/* ===== GARDEN ===== */
.build-bush1,
.build-bush2 {
    fill: #2a5a4a;
    opacity: 0;
    animation: bushGrow 0.5s ease forwards 3.1s;
}

.build-bush2 { animation-delay: 3.2s; }

.build-tree-trunk {
    stroke: #5a4a3a;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawLine 0.3s ease forwards 3.2s;
}

.build-tree-top {
    fill: #3a6a5a;
    opacity: 0;
    transform-origin: center;
    animation: bushGrow 0.4s ease forwards 3.4s;
}

/* ===== PATH ===== */
.build-path {
    stroke: #5a5a7a;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: drawLine 0.3s ease forwards 2.9s;
}

/* ===== PERSON/ARCHITECT ===== */
.build-person {
    opacity: 0;
    animation: personWalk 0.8s ease forwards 3.5s;
}

.build-person circle {
    fill: #00D26A;
}

.build-person line {
    stroke: #00D26A;
    stroke-width: 1.5;
    stroke-linecap: round;
}

/* ===== LOADING TEXT ===== */
.loading-text {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInElement 0.5s ease forwards 2.5s;
}

.loading-text span {
    color: #00D26A;
    font-weight: 600;
}

/* ===== PROGRESS BAR ===== */
.loading-progress {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
    opacity: 0;
    animation: fadeInElement 0.3s ease forwards 0.2s;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00D26A, #33E088);
    border-radius: 3px;
    width: 0%;
    animation: progressFill 3.5s ease-out forwards 0.3s;
}

/* ===== KEYFRAMES ===== */
@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInElement {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes buildUp {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

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

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

@keyframes personWalk {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressFill {
    0% { width: 0%; }
    15% { width: 10%; }
    30% { width: 25%; }
    50% { width: 45%; }
    70% { width: 65%; }
    85% { width: 85%; }
    100% { width: 100%; }
}

/* ==========================================================================
   Mobile Refinements
   ========================================================================== */

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .service-card,
    .process-step,
    .testimonial-card {
        padding: 2rem;
    }

    .benefits-grid {
        gap: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */

/* Services Hero */
.services-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    overflow: hidden;
    padding-top: 100px;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,210,106,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.services-hero .hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #00D26A;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 30px;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero h1 span {
    color: #00D26A;
}

.services-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 600px;
}

/* Services Main */
.services-main {
    background: #121212;
}

/* Service Block */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #2D2D2D;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block-reverse {
    direction: rtl;
}

.service-block-reverse > * {
    direction: ltr;
}

.service-block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.service-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-block-image img {
    transform: scale(1.05);
}

.service-block-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.service-block-reverse .service-block-number {
    left: auto;
    right: 20px;
}

.service-block-content {
    padding: 2rem 0;
}

.service-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00D26A;
    margin-bottom: 1rem;
}

.service-block-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #E5E5E5;
    margin-bottom: 1.25rem;
}

.service-block-content > p {
    font-size: 1.05rem;
    color: #A3A3A3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: #D4D4D4;
}

.service-features li svg {
    color: #00D26A;
    flex-shrink: 0;
}

/* Process Timeline */
.services-process {
    background: #1A1A1A;
}

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

.process-timeline-item {
    text-align: center;
    position: relative;
}

.process-timeline-item::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: calc(100% - 70px);
    height: 2px;
    background: linear-gradient(90deg, #00D26A, rgba(0,210,106,0.2));
}

.process-timeline-item:last-child::after {
    display: none;
}

.process-timeline-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 210, 106, 0.3);
    position: relative;
    z-index: 2;
}

.process-timeline-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.75rem;
}

.process-timeline-content p {
    font-size: 0.9rem;
    color: #A3A3A3;
    line-height: 1.7;
}

/* Stats Section */
.services-stats {
    background: linear-gradient(135deg, #141414 0%, #0A0A0A 100%);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00D26A;
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .service-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-block-reverse {
        direction: ltr;
    }

    .service-block-image img {
        height: 300px;
    }

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

    .process-timeline-item::after {
        display: none;
    }

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

@media (max-width: 640px) {
    .services-hero {
        min-height: 40vh;
        padding-top: 80px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

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

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    padding-top: 100px;
}

.contact-hero-content {
    max-width: 700px;
}

.contact-hero .hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #00D26A;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border-radius: 30px;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero h1 span {
    color: #00D26A;
}

.contact-hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: #121212;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.75rem;
    color: #E5E5E5;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #A3A3A3;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2D2D2D;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    border-radius: 12px;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    color: #A3A3A3;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-info-content a {
    color: #E5E5E5;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: #00D26A;
}

.contact-link {
    font-size: 0.9rem;
    color: #00D26A !important;
    font-weight: 500;
}

/* Contact Buttons (Call, Viber, WhatsApp) */
.contact-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-btn-call {
    background: #141414;
    color: #fff;
}

.contact-btn-call:hover {
    background: #2a2a4e;
    color: #fff;
    transform: translateY(-2px);
}

.contact-btn-viber {
    background: #7360f2;
    color: #fff;
}

.contact-btn-viber:hover {
    background: #5a48d1;
    color: #fff;
    transform: translateY(-2px);
}

.contact-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.contact-btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

/* Contact Social */
.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-size: 1rem;
    color: #E5E5E5;
    margin-bottom: 1rem;
}

.contact-social .social-links {
    margin-top: 0;
}

/* Contact Form */
.contact-form-wrapper {
    background: #1E1E1E;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 1px solid #2D2D2D;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: #E5E5E5;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 2px solid #3D3D3D;
    border-radius: 10px;
    background: #1A1A1A;
    color: #E5E5E5;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #00D26A;
    background: #1E1E1E;
    box-shadow: 0 0 0 4px rgba(0, 210, 106, 0.15);
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #A3A3A3;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #00D26A;
}

.form-checkbox a {
    color: #00D26A;
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn svg {
    flex-shrink: 0;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.form-message svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.form-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

.form-message p {
    margin: 0;
    font-size: 0.9rem;
}

.form-success {
    background: rgba(0, 210, 106, 0.1);
    color: #1a7a3a;
}

.form-success svg {
    color: #00D26A;
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    color: #9a2a2a;
}

.form-error svg {
    color: #dc3545;
}

/* Map Section */
.contact-map-section {
    background: #141414;
    padding: 0;
}

.contact-map {
    height: 450px;
    border-radius: 0;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 640px) {
    .contact-hero {
        min-height: 35vh;
    }

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

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        justify-content: center;
    }
}


/* ==========================================================================
   Footer Quick Contact Buttons
   ========================================================================== */

.footer-quick-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer-btn,
.footer-btn:link,
.footer-btn:visited,
.footer-btn span {
    color: #ffffff !important;
}

.footer-btn svg {
    flex-shrink: 0;
    fill: #ffffff !important;
}

.footer-btn span {
    white-space: nowrap;
}

.footer-btn-whatsapp {
    background: #25D366;
}

.footer-btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-btn-viber {
    background: #7360F2;
}

.footer-btn-viber:hover {
    background: #6350e0;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 96, 242, 0.4);
}

.footer-contact-item a {
    color: inherit;
}

.footer-contact-item a:hover {
    color: #00D26A;
}

/* ==========================================================================
   House Planner Page
   ========================================================================== */

.planner-hero {
    background: linear-gradient(135deg, #0A0A0A 0%, #141414 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.planner-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.planner-hero-content h1 span {
    color: #00D26A;
}

.planner-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.planner-section {
    background: #121212;
    padding: 3rem 0;
}

.planner-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Controls Panel */
.planner-controls {
    background: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: sticky;
    top: 100px;
}

.planner-controls h3 {
    font-size: 1.25rem;
    color: #E5E5E5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #2D2D2D;
}

.control-group {
    margin-bottom: 1.25rem;
}

.control-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E5E5E5;
    margin-bottom: 0.5rem;
}

.control-group input,
.control-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #3D3D3D;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #1A1A1A;
    color: #E5E5E5;
    transition: all 0.3s ease;
}

.control-group input:focus,
.control-group select:focus {
    outline: none;
    border-color: #00D26A;
    box-shadow: 0 0 0 3px rgba(0, 210, 106, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #D4D4D4;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    accent-color: #00D26A;
}

#generatePlan {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.plan-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #1A1A1A;
    border-radius: 10px;
    border: 1px solid #2D2D2D;
}

.plan-info h4 {
    font-size: 0.9rem;
    color: #E5E5E5;
    margin-bottom: 0.75rem;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.info-label {
    color: #A3A3A3;
}

.info-value {
    font-weight: 600;
    color: #E5E5E5;
}

.cta-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 210, 106, 0.15) 0%, rgba(0, 210, 106, 0.05) 100%);
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(0, 210, 106, 0.3);
}

.cta-box p {
    font-size: 0.9rem;
    color: #E5E5E5;
    margin-bottom: 0.75rem;
}

/* Canvas Panel */
.planner-canvas-wrapper {
    background: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.canvas-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #1A1A1A;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.toolbar-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2D2D2D;
    border: 1px solid #3D3D3D;
    border-radius: 8px;
    cursor: pointer;
    color: #E5E5E5;
    transition: all 0.2s ease;
}

.toolbar-btn:hover {
    background: #00D26A;
    border-color: #00D26A;
    color: #fff;
}

.floor-indicator {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E5E5E5;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.2);
    border-radius: 20px;
}

.floor-toggle {
    display: flex;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

.floor-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    background: #2D2D2D;
    color: #E5E5E5;
    border: 1px solid #3D3D3D;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.floor-btn.active {
    background: #00D26A;
    border-color: #00D26A;
    color: #fff;
}

#floorPlanCanvas {
    width: 100%;
    height: auto;
    border: 2px solid #3D3D3D;
    border-radius: 10px;
    background: #1A1A1A;
}

.canvas-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    background: #1A1A1A;
    border-radius: 10px;
    border: 1px solid #2D2D2D;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #A3A3A3;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: #1E1E1E;
    border: 1px solid #2D2D2D;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    border-radius: 50%;
}

.step-card h3 {
    font-size: 1.15rem;
    color: #E5E5E5;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #A3A3A3;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .planner-wrapper {
        grid-template-columns: 1fr;
    }

    .planner-controls {
        position: static;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    #floorPlanCanvas {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .control-row,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .canvas-legend {
        justify-content: center;
    }
}

/* ==========================================================================
   Floating Contact Buttons
   ========================================================================== */

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scale(1);
}

.floating-contact-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.floating-contact-btn:active {
    transform: scale(0.95);
}

/* Phone Button - Primary Green */
.floating-contact-phone {
    background: linear-gradient(135deg, #00D26A 0%, #00B85C 100%);
    box-shadow: 0 4px 20px rgba(0, 210, 106, 0.4);
}

.floating-contact-phone:hover {
    box-shadow: 0 8px 30px rgba(0, 210, 106, 0.5);
}

/* Pulse animation for phone */
.floating-contact-phone::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 210, 106, 0.4);
    animation: phonePulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* WhatsApp Button */
.floating-contact-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.floating-contact-whatsapp:hover {
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Viber Button */
.floating-contact-viber {
    background: linear-gradient(135deg, #7360f2 0%, #5a48d1 100%);
    box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4);
}

.floating-contact-viber:hover {
    box-shadow: 0 8px 30px rgba(115, 96, 242, 0.5);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .floating-contact-btn {
        width: 50px;
        height: 50px;
    }

    .floating-contact-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================================================== */

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    /* Portfolio Grid */
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

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

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

/* ===== MOBILE LARGE (max-width: 768px) ===== */
@media (max-width: 768px) {
    /* Base */
    body {
        font-size: 15px;
    }

    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Hide on mobile */
    .hidden-mobile {
        display: none !important;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }

    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Header/Navigation */
    .site-header {
        padding: 0.75rem 0;
    }

    .site-logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
    }

    .nav-link {
        font-size: 1.25rem;
        padding: 0.75rem 1.5rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 30px;
        height: 30px;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: #ffffff !important;
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero Section */
    .hero {
        min-height: 100svh;
        padding: 100px 0 60px;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Buttons */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 0.85rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
    }

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

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

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Portfolio/Projects */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-card {
        aspect-ratio: 16/10;
        border-radius: 12px;
    }

    /* Always show card content on mobile (no hover) */
    .project-card-overlay {
        opacity: 1;
    }

    .project-card-content {
        padding: 1rem 1.25rem;
        transform: translateY(0);
        opacity: 1;
    }

    .project-card-category {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.4rem;
    }

    .project-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }

    .project-card-meta {
        font-size: 0.75rem;
        color: #ffffff !important;
        opacity: 0.85 !important;
        font-weight: 500;
    }

    /* Portfolio Filters Mobile */
    .portfolio-filters-wrapper {
        margin-bottom: 1.5rem;
    }

    .filter-mobile-toggle {
        max-width: 100%;
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }

    /* Filter Group Mobile */
    .filter-group {
        position: relative;
    }

    .filter-submenu {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(100%);
        border-radius: 20px 20px 0 0;
        padding: 1.5rem;
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
        max-height: 50vh;
        overflow-y: auto;
        min-width: 100%;
        opacity: 0;
        visibility: hidden;
    }

    .filter-submenu::before {
        display: none;
    }

    .filter-group.open .filter-submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0) translateY(0);
    }

    .filter-submenu .filter-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 10px;
        text-transform: none;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .process-step {
        padding: 1.5rem;
        text-align: center;
    }

    .process-number {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin: 0 auto 1rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.9rem;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .benefit-icon svg {
        width: 22px;
        height: 22px;
    }

    .benefit-content h4 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .benefit-content p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote-icon {
        display: none;
    }

    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-left: 1rem;
    }

    .testimonial-author {
        margin-top: 1.25rem;
    }

    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }

    .testimonial-info h5 {
        font-size: 0.9rem;
    }

    .testimonial-info p {
        font-size: 0.8rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-section .section-title {
        font-size: 1.5rem;
    }

    .cta-section .section-description {
        font-size: 0.95rem;
    }

    /* Footer - centered, single column on mobile */
    .site-footer {
        padding: 2rem 0 1rem;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

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

    .footer-brand p {
        font-size: 0.8rem;
        line-height: 1.6;
        max-width: 300px;
        margin: 0 auto;
        opacity: 0.7;
    }

    .footer-logo {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .social-link {
        width: 34px;
        height: 34px;
    }

    .social-link svg {
        width: 15px;
        height: 15px;
    }

    .footer-column {
        display: block;
        width: 100%;
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        display: block;
        width: 100%;
    }

    .footer-column:nth-child(3) {
        margin-left: 0;
    }

    .footer-column h4 {
        font-size: 0.7rem;
        margin-bottom: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .footer-column h4::after {
        display: none;
    }

    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .footer-menu li {
        margin-bottom: 0.4rem;
        text-align: center;
    }

    .footer-menu a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
        display: inline-block;
        text-align: center;
    }

    .footer-menu a::before {
        display: none;
    }

    .footer-menu a:hover {
        padding-left: 0;
    }

    .footer-contact-item {
        justify-content: center;
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .footer-contact-item svg {
        width: 15px;
        height: 15px;
    }

    .footer-quick-contact {
        margin-top: 1rem;
        gap: 0.5rem;
        justify-content: center;
    }

    .footer-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
        padding: 1rem 0 0.5rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom .copyright,
    .footer-bottom .footer-credit {
        font-size: 0.7rem;
        opacity: 0.6;
    }

    /* Page Header */
    .page-header {
        padding: 5rem 0 2rem;
    }

    .page-header-title {
        font-size: 1.75rem;
    }

    .page-header-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* Text Utilities */
    .text-center-mobile {
        text-align: center;
    }

    .mt-12 {
        margin-top: 2rem;
    }
}

/* ===== MOBILE SMALL (max-width: 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    /* Typography */
    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    /* Hero */
    .hero {
        padding: 80px 0 40px;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    /* Cards */
    .service-card,
    .process-step,
    .testimonial-card {
        padding: 1.25rem;
    }

    /* Portfolio */
    .project-card {
        aspect-ratio: 16/9;
    }

    /* Benefits */
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    /* CTA */
    .cta-section .section-title {
        font-size: 1.35rem;
    }

    /* Footer */
    .footer-logo {
        font-size: 1.25rem;
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

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

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .project-card:hover,
    .testimonial-card:hover,
    .process-step:hover {
        transform: none;
    }

    .btn:hover::before {
        left: -100%;
    }

    /* Show project card content always on touch */
    .project-card-overlay {
        opacity: 1;
    }

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

    /* Larger touch targets */
    .nav-link {
        padding: 0.75rem 1rem;
    }

    .filter-btn {
        min-height: 44px;
    }

    .btn {
        min-height: 48px;
    }
}

/* ===== SAFE AREA (Notch Support) ===== */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .site-footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .floating-contact {
        right: max(15px, env(safe-area-inset-right));
        bottom: max(15px, env(safe-area-inset-bottom));
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .floating-contact,
    .scroll-indicator {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .section {
        padding: 1.5rem 0;
        page-break-inside: avoid;
    }
}

/* ==========================================================================
   DARK THEME ADDITIONAL STYLES
   ========================================================================== */

/* Form Placeholders */
::placeholder {
    color: #666;
    opacity: 1;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

/* Selection */
::selection {
    background: rgba(0, 210, 106, 0.3);
    color: #fff;
}

/* Links */
a:not(.btn):not(.nav-link):not(.project-card):not(.gallery-item) {
    color: #00D26A;
}

a:not(.btn):not(.nav-link):not(.project-card):not(.gallery-item):hover {
    color: #33E088;
}

/* Scrollbar for dark theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00D26A, #00B85C);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #33E088, #00D26A);
}

/* Mobile navigation for dark theme */
@media (max-width: 768px) {
    .nav-menu {
        background: rgba(18, 18, 18, 0.98);
    }
}

/* Button secondary for dark theme */
.btn-secondary {
    background: #2D2D2D;
    color: #E5E5E5;
    border: 1px solid #3D3D3D;
}

.btn-secondary:hover {
    background: #3D3D3D;
    color: #fff;
}

/* Button outline for dark theme */
.btn-outline {
    border-color: #3D3D3D;
    color: #E5E5E5;
}

.btn-outline:hover {
    background: #E5E5E5;
    color: #121212;
}

/* ==========================================================================
   Project Hero Slider
   ========================================================================== */

.project-hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    background: #0A0A0A;
}

.hero-slider-container {
    position: absolute;
    inset: 0;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.hero-slide-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero-slide-zoom {
    display: none;
}

/* Hero overlay */
.project-hero-slider .hero-overlay {
    display: none;
}

/* Hero content overlay */
.project-hero-slider .project-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 2rem 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-hero-slider .project-hero-content.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Slider Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-nav:hover {
    background: rgba(0, 210, 106, 0.8);
    border-color: #00D26A;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dot.active {
    background: #00D26A;
    border-color: #00D26A;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0, 210, 106, 0.5);
}

/* Slide Counter */
.hero-slider-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-slider-counter .current-slide {
    color: #00D26A;
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-hero-slider {
        height: auto;
        min-height: unset;
        max-height: unset;
    }

    .hero-slider-container {
        position: relative;
        inset: auto;
    }

    .hero-slider-track {
        height: auto;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
    }

    .hero-slide:first-child {
        position: relative;
    }

    .hero-slide-link {
        display: block;
    }

    .hero-slide-img {
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: auto;
    }

    .hero-slider-nav {
        width: 38px;
        height: 38px;
        background: rgba(0, 0, 0, 0.5);
        border: 1.5px solid rgba(255, 255, 255, 0.25);
    }

    .hero-slider-nav svg {
        width: 18px;
        height: 18px;
    }

    .hero-slider-prev {
        left: 8px;
    }

    .hero-slider-next {
        right: 8px;
    }

    .hero-slider-dots {
        bottom: 10px;
        gap: 8px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }

    .hero-slider-counter {
        bottom: 10px;
        right: 10px;
        font-size: 0.75rem;
    }

    .project-hero-slider .project-hero-content {
        padding: 1.5rem 0;
    }

    .project-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .project-category {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .project-meta-hero {
        font-size: 0.8rem;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .project-meta-hero svg {
        width: 13px;
        height: 13px;
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ========================================================================== */

/* Mobile Base - 768px and below */
@media (max-width: 768px) {
    /* General spacing */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Typography */
    body {
        font-size: 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.35rem; }
    h4 { font-size: 1.15rem; }

    /* Hero Section Mobile */
    .hero {
        min-height: 100svh;
        padding: 0;
    }

    .hero-cascade .hero-title {
        font-size: 2.25rem;
        white-space: normal;
        line-height: 1.15;
    }

    .hero-cascade .hero-title .title-word {
        display: inline;
        font-size: inherit;
    }

    .hero-cascade .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero-cascade .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Navigation Mobile */
    .site-header {
        padding: 0.75rem 0;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .main-navigation.active {
        transform: translateX(0);
    }

    .main-navigation a {
        font-size: 1.5rem;
        padding: 1rem;
    }

    /* Contact Page Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-phone-card {
        padding: 1.25rem;
    }

    .phone-number {
        font-size: 1.35rem;
    }

    .app-btn {
        padding: 0.875rem;
    }

    .app-btn-icon {
        width: 42px;
        height: 42px;
    }

    /* Services Page Mobile */
    .services-hero h1 {
        font-size: 1.75rem;
    }

    .service-block {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-block-reverse {
        flex-direction: column;
    }

    .service-block-image {
        width: 100%;
        height: 250px;
    }

    .service-block-content {
        padding: 0;
    }

    .service-block-content h2 {
        font-size: 1.5rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }

    /* Process Timeline Mobile */
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
    }

    .process-timeline-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .process-timeline-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Projects/Portfolio Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        aspect-ratio: 16/9;
        height: auto;
    }

    /* Single Project Mobile */
    .project-details {
        flex-direction: column;
        gap: 2rem;
    }

    .project-content {
        order: 1;
    }

    .project-sidebar {
        order: 2;
        width: 100%;
        position: static;
    }

    .project-info-card {
        margin-bottom: 1rem;
        padding: 1.25rem;
    }

    .project-info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .project-info-item {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    /* Project Sections Mobile */
    .project-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .project-section-title {
        font-size: 1.25rem;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .section-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
        border-radius: 8px;
    }

    .project-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Floorplan Mobile */
    .project-floorplan a img {
        border-radius: 8px;
    }

    .floorplan-overlay span {
        font-size: 0.8rem;
    }

    .floorplan-overlay svg {
        width: 24px;
        height: 24px;
    }

    /* PDF Download Mobile */
    .pdf-download-btn {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .pdf-icon svg {
        width: 36px;
        height: 36px;
    }

    .pdf-title {
        font-size: 0.95rem;
    }

    .pdf-filename {
        font-size: 0.8rem;
    }

    .pdf-download-icon span {
        font-size: 0.75rem;
    }

    /* CTA Card Mobile */
    .cta-card p {
        font-size: 0.85rem;
    }

    .cta-card .btn {
        font-size: 0.9rem;
    }

    /* Related Projects Section Mobile */
    .bg-light .section-header {
        margin-bottom: 1.5rem;
    }

    .bg-light .section-label {
        font-size: 0.65rem;
    }

    .bg-light .section-title {
        font-size: 1.5rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Buttons Mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    /* Hero Extra Small */
    .hero-cascade .hero-title {
        font-size: 1.85rem;
    }

    /* Project Hero Text Extra Small */
    .project-title {
        font-size: 1.25rem;
    }

    .project-meta-hero {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .hero-cascade .hero-subtitle {
        font-size: 0.7rem;
    }

    /* Contact Form Extra Small */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-tab {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .form-section-title {
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .form-section-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .form-section-optional {
        font-size: 0.65rem;
    }

    /* Property Type Extra Small */
    .property-type-grid,
    .property-type-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .property-type-card {
        padding: 0.75rem 0.5rem;
        min-height: 80px;
    }

    .property-type-card svg {
        width: 24px;
        height: 24px;
    }

    .property-type-card span {
        font-size: 0.7rem;
    }

    /* Checkbox Grid Extra Small */
    .checkbox-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .checkbox-card-content {
        padding: 0.75rem 0.5rem;
    }

    .checkbox-card-content svg {
        width: 20px;
        height: 20px;
    }

    .checkbox-card-content span {
        font-size: 0.7rem;
    }

    /* File Upload Extra Small */
    .file-upload-label {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .file-upload-icon svg {
        width: 32px;
        height: 32px;
    }

    .file-upload-title {
        font-size: 0.85rem;
    }

    .file-upload-info {
        font-size: 0.75rem;
    }

    /* Service blocks extra small */
    .service-block-image {
        height: 200px;
    }

    .service-block-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Stats extra small */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Project card extra small */
    .project-card {
        aspect-ratio: 16/10;
        height: auto;
    }

    .project-card-content {
        padding: 0.75rem 1rem;
    }

    .project-card-content h3 {
        font-size: 1rem;
    }

    .project-card-meta {
        font-size: 0.7rem;
    }

    /* Page Header extra small */
    .page-header {
        padding: 4.5rem 0 1.5rem;
    }

    .page-header-title {
        font-size: 1.5rem;
    }

    .page-header-description {
        font-size: 0.85rem;
    }

    /* Filters extra small */
    .filter-mobile-toggle {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
    }

    .filter-mobile-item {
        font-size: 0.78rem;
        padding: 0.6rem 0.875rem;
    }

    /* Single Project Extra Small */
    .project-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .project-section-title {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
        border-radius: 6px;
    }

    .project-description {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .project-info-card {
        padding: 1rem;
    }

    .project-info-card h4 {
        font-size: 0.9rem;
    }

    .project-info-item {
        font-size: 0.8rem;
    }

    .project-category {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }

    /* CTA Section Extra Small */
    .cta-section {
        padding: 2rem 0;
    }

    .cta-section .section-title {
        font-size: 1.25rem;
    }

    .cta-section .section-description {
        font-size: 0.85rem;
    }

    .cta-card h4 {
        font-size: 0.95rem;
    }

    .cta-card p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile - 360px and below */
@media (max-width: 360px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-cascade .hero-title {
        font-size: 1.6rem;
    }

    .property-type-grid-5 {
        grid-template-columns: 1fr 1fr;
    }

    .property-type-grid-5 .property-type-option:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        justify-self: center;
    }

    .phone-number {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Project Hero 360px */
    .project-title {
        font-size: 1.1rem;
    }

    .project-meta-hero {
        font-size: 0.7rem;
        gap: 0.4rem;
    }

    .project-meta-hero svg {
        width: 11px;
        height: 11px;
    }

    /* Page Header 360px */
    .page-header-title {
        font-size: 1.35rem;
    }

    .page-header-description {
        font-size: 0.8rem;
    }

    /* Single Project 360px */
    .project-section-title {
        font-size: 1rem;
    }

    .project-description {
        font-size: 0.85rem;
    }

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

    .project-card-meta {
        font-size: 0.65rem;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .property-type-card,
    .checkbox-card-content {
        min-height: 44px;
    }

    /* Remove hover effects on touch */
    .btn:hover {
        transform: none;
    }

    .project-card:hover .project-card-image img {
        transform: none;
    }

    .service-block-image:hover img {
        transform: none;
    }
}

/* Landscape Mobile */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

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

    .hero-buttons {
        flex-direction: row;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Safe Area Support for notched devices */
@supports (padding: max(0px)) {
    .site-header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .hero-content {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   COMPREHENSIVE MOBILE FIX - Full width, centered, clean layout
   ========================================================================== */

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        margin: 0 auto;
    }

    section, .site-footer, main {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section { padding: 3rem 0; }

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

    .section-title { font-size: 1.6rem; line-height: 1.3; }
    .section-description { font-size: 0.9rem; max-width: 100%; }

    .hero { width: 100%; }
    .hero-content { text-align: center; padding: 0 1.25rem; max-width: 100%; }
    .hero-description { max-width: 100%; margin-left: 0; margin-right: 0; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
    .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

    .services-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .service-card { padding: 1.5rem; text-align: center; }
    .service-icon { margin: 0 auto 1rem; }

    .portfolio-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .process-steps { grid-template-columns: 1fr !important; gap: 1rem; }
    .process-step { text-align: center; padding: 1.5rem; }
    .process-number { margin: 0 auto 1rem; }

    .benefits-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 1rem; }

    .cta-section { text-align: center; padding: 3rem 0; }

    /* FOOTER */
    .site-footer { padding: 2rem 0 1rem; }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
    }

    .footer-brand {
        max-width: 100% !important;
        text-align: center !important;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand p { font-size: 0.8rem; max-width: 300px; margin: 0 auto; opacity: 0.7; }
    .social-links { justify-content: center; }

    .footer-column {
        display: block !important;
        width: 100% !important;
        padding: 1.25rem 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: center !important;
        margin-left: 0 !important;
    }

    .footer-column:last-child { border-bottom: none; }
    .footer-column h4 { text-align: center; font-size: 0.7rem; letter-spacing: 0.15em; }
    .footer-column h4::after { display: none !important; }

    .footer-menu {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: center !important;
    }

    .footer-menu li { text-align: center !important; margin-bottom: 0.4rem; }
    .footer-menu a { font-size: 0.85rem; text-align: center; display: inline-block; }
    .footer-menu a::before { display: none !important; }
    .footer-menu a:hover { padding-left: 0 !important; }

    .footer-contact-item { justify-content: center !important; margin-bottom: 0.6rem; }
    .footer-quick-contact { justify-content: center !important; margin-top: 1rem; }
    .footer-btn { padding: 0.5rem 1.25rem; font-size: 0.8rem; border-radius: 50px; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-bottom .copyright,
    .footer-bottom .footer-credit { font-size: 0.7rem; opacity: 0.6; }
}

@media (max-width: 480px) {
    .container { padding-left: 1rem !important; padding-right: 1rem !important; }
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.4rem; }
}
