/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    /* Professional Floor Coating Colors */
    --primary-dark: #1a1a1a;
    --primary-gray: #2d2d2d;
    --secondary-gray: #3a3a3a;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --accent-beige: #d4a574;
    --accent-cream: #f5e6d3;
    --white: #ffffff;
    --text-light: #e5e5e5;
    --text-gray: #a0a0a0;
    --text-dark: #4a4a4a;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-lg: rgba(0, 0, 0, 0.5);
    --border-color: rgba(249, 115, 22, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Animations & Effects
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.98) 0%, 
        rgba(30, 30, 30, 0.98) 50%, 
        rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(249, 115, 22, 0.15),
                inset 0 -1px 0 rgba(249, 115, 22, 0.2);
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    display: block;
    visibility: visible;
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-orange), 
        transparent);
    opacity: 0.6;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex-wrap: nowrap;
    gap: 1rem;
}

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

.nav-brand {
    order: 1;
    flex-shrink: 0;
}

.nav-brand h1 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    padding: 0.3rem 0.8rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.nav-brand:hover h1 {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.7);
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.nav-brand span {
    color: var(--accent-orange);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

/* Hero Logo Styling */
.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    animation: fadeInUp 1.2s ease-out;
    filter: drop-shadow(0 4px 20px rgba(249, 115, 22, 0.3));
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    order: 3;
    flex-shrink: 0;
}

.language-selector {
    display: flex;
    gap: 0;
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(249, 115, 22, 0.2);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.lang-btn:last-child {
    border-right: none;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--accent-orange), rgba(249, 115, 22, 0.9));
    color: var(--white);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6),
                0 0 30px rgba(249, 115, 22, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-btn:hover:not(.active) {
    background: rgba(249, 115, 22, 0.15);
    color: var(--white);
    box-shadow: inset 0 0 10px rgba(249, 115, 22, 0.2);
    transform: translateY(-1px);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
    border-radius: 4px;
    cursor: pointer;
    padding: 0.6rem;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.15);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.menu-toggle:hover span {
    background: var(--accent-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
    transform: scaleX(1.1);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1f1f1f 100%);
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.8);
    border-right: 3px solid var(--accent-orange);
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    border-bottom: 2px solid rgba(249, 115, 22, 0.3);
    overflow-y: auto;
    transform: translateX(0);
    order: 2;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
    transform: translateX(0);
}

.nav-menu li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
.nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
.nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }

.sidebar-social-link {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, all 0.3s ease;
}

.nav-menu.active .sidebar-social-link {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active .sidebar-social-link:nth-child(1) { transition-delay: 0.5s; }
.nav-menu.active .sidebar-social-link:nth-child(2) { transition-delay: 0.55s; }
.nav-menu.active .sidebar-social-link:nth-child(3) { transition-delay: 0.6s; }
.nav-menu.active .sidebar-social-link:nth-child(4) { transition-delay: 0.65s; }


.nav-menu li {
    margin: 0.5rem 0;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: block;
    padding: 1rem 1.5rem;
    border: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.02em;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--accent-orange);
    background: transparent;
    transform: translateX(5px);
    padding-left: 2rem;
    box-shadow: none;
    border: none;
}

.sidebar-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
    margin: 1.5rem 0;
    border: none;
    padding: 0;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
}

.sidebar-social {
    margin-top: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.sidebar-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    color: var(--text-light);
    text-decoration: none;
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sidebar-social-link svg {
    width: 24px;
    height: 24px;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.sidebar-social-link:hover {
    color: var(--white);
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.sidebar-social-link:hover svg {
    transform: scale(1.15);
    color: var(--white);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5rem 0 4rem;
    padding-top: 5.5rem;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.85) 0%, 
        rgba(58, 47, 35, 0.75) 50%, 
        rgba(26, 26, 26, 0.9) 100%);
    z-index: -1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: var(--accent-orange);
    opacity: 0.08;
    animation: pulse 4s ease-in-out infinite;
}

.shape-1 {
    animation-delay: 0s;
}

.shape-2 {
    animation-delay: 1.5s;
}

.shape-3 {
    animation-delay: 3s;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    transform: rotate(45deg);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtitle-red {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    animation: fadeInUp 1.4s ease-out;
}

.red-line-sharp {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-beige));
    margin: 1rem auto;
    border-radius: 0;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.6s ease-out;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.8s ease-out;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.btn-primary:hover {
    background: var(--accent-orange-light);
    border-color: var(--accent-orange-light);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5),
                0 0 30px rgba(249, 115, 22, 0.3);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
    border-bottom: 3px solid var(--accent-orange);
    margin-top: 60px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ============================================
   About Preview Section
   ============================================ */
.about-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-gray) 0%, var(--secondary-gray) 100%);
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-preview-text {
    text-align: center;
}

.about-preview-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.stat-mini {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4),
                0 0 20px rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.1);
}

.stat-number-mini {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
    transition: all 0.3s ease;
}

.stat-mini:hover .stat-number-mini {
    transform: scale(1.1);
    text-shadow: 0 0 25px rgba(249, 115, 22, 0.8);
}

.stat-label-mini {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-preview-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(249, 115, 22, 0.2);
    position: relative;
}

.about-preview-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, 
        var(--accent-orange), 
        var(--accent-beige), 
        var(--accent-orange));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-preview-image:hover::before {
    opacity: 0.3;
}

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

.about-preview-image:hover img {
    transform: scale(1.1);
}

.about-preview-image {
    transition: all 0.3s ease;
}

.about-preview-image:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-5px);
}

/* ============================================
   Services Section
   ============================================ */
.services-preview,
.services-content {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-orange), 
        transparent);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.services-dropdown-wrapper,
.gallery-dropdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.dropdown-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-dropdown,
.gallery-dropdown {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--accent-orange);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f97316' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    min-width: 250px;
    max-width: 100%;
}

.services-dropdown:hover,
.gallery-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3),
                0 0 20px rgba(249, 115, 22, 0.2);
}

.services-dropdown:focus,
.gallery-dropdown:focus {
    outline: none;
    border-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2),
                0 0 25px rgba(249, 115, 22, 0.3);
}

.services-dropdown option,
.gallery-dropdown option {
    background: var(--primary-dark);
    color: var(--white);
    padding: 0.5rem;
}

.service-card-sharp {
    transition: all 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.service-card-sharp.hidden {
    display: none;
    opacity: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card-sharp {
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.08) 0%, 
        rgba(212, 165, 116, 0.1) 50%, 
        rgba(58, 47, 35, 0.12) 100%);
    padding: 1.5rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card-sharp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(249, 115, 22, 0.15), 
        transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.service-card-sharp:hover::before {
    left: 100%;
}

.service-card-sharp > * {
    position: relative;
    z-index: 1;
}

.service-card-sharp:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.12) 0%, 
        rgba(212, 165, 116, 0.15) 50%, 
        rgba(88, 70, 53, 0.18) 100%);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4), 
                0 0 20px rgba(249, 115, 22, 0.2);
    border-color: var(--accent-orange);
}

.service-card-sharp.large {
    padding: 3rem;
}

.service-icon-sharp {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
}

.service-card-sharp:hover .service-icon-sharp {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.6);
    background: rgba(249, 115, 22, 0.1);
}

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

.service-card-sharp h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-sharp p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--white);
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-preview,
.work-content {
    padding: 4rem 0;
    background: var(--primary-gray);
}

/* ============================================
   Gallery Preview Section
   ============================================ */
.contact-preview {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.contact-preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-preview-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-preview-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.gallery-preview {
    padding: 4rem 0;
    background: var(--primary-gray);
}

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

.portfolio-item-sharp {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item-sharp:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4),
                0 0 25px rgba(249, 115, 22, 0.2),
                0 0 40px rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
}

.portfolio-image-sharp {
    width: 100%;
    height: 180px;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

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

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

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    opacity: 0.3;
    gap: 1rem;
}

.portfolio-placeholder svg {
    width: 80px;
    height: 80px;
}

.portfolio-info-sharp {
    padding: 1rem;
}

.portfolio-info-sharp h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.portfolio-info-sharp p {
    font-size: 0.85rem;
}

.portfolio-category {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.portfolio-info-sharp h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.portfolio-info-sharp p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card-sharp {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.stat-card-sharp:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-section {
    text-align: center;
    margin-top: 4rem;
}

.team-description {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-content {
    padding: 4rem 0;
    background: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title-small {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-item-sharp {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item-sharp:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3);
}

.contact-icon-sharp {
    width: 50px;
    height: 50px;
    color: var(--accent-orange);
    flex-shrink: 0;
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

.contact-item-sharp:hover .contact-icon-sharp {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
    background: rgba(249, 115, 22, 0.1);
}

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

.contact-icon-sharp i {
    font-size: 24px;
    color: var(--accent-orange);
}

.contact-item-sharp h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.contact-item-sharp a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-sharp a:hover {
    color: var(--accent-orange);
}

.contact-item-sharp p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-section {
    margin-top: 1rem;
}

.social-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 600;
}

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

.social-link i {
    font-size: 18px;
}

.social-link.phone:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
}

.social-link.email:hover {
    background: #EA4335;
    border-color: #EA4335;
    color: var(--white);
}

.social-link.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: var(--white);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #bc1888;
    color: var(--white);
}

.social-link.whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: var(--white);
}

.social-link.viber:hover {
    background: #665CAC;
    border-color: #665CAC;
    color: var(--white);
}

.location-section {
    margin-top: 2rem;
}

.location-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.map-container {
    border: 2px solid var(--accent-orange);
    border-radius: 0;
    overflow: hidden;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-message {
    padding: 1rem;
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid #22c55e;
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
    color: #ef4444;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-content {
    padding: 4rem 0;
    background: var(--primary-dark);
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

.category-info-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.08) 0%, 
        rgba(212, 165, 116, 0.1) 50%, 
        rgba(58, 47, 35, 0.12) 100%);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 0;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.category-info-section:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3),
                0 0 40px rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.12) 0%, 
        rgba(212, 165, 116, 0.15) 50%, 
        rgba(58, 47, 35, 0.18) 100%);
}

.category-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.category-info-text {
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.category-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
    position: relative;
    display: inline-block;
}

.category-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-orange), 
        transparent);
    animation: pulse 2s ease-in-out infinite;
}

.category-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

.gallery-item {
    opacity: 1;
    transition: all 0.3s ease;
    transform: scale(1);
}

.gallery-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.gallery-item.hidden {
    opacity: 0;
    display: none;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border: 2px solid var(--accent-orange);
    border-radius: 0;
    background: var(--primary-gray);
    cursor: grab;
    user-select: none;
    touch-action: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4),
                0 0 15px rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.before-after-slider:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(249, 115, 22, 0.4);
    border-color: var(--accent-orange-light);
}

.before-after-slider:active {
    cursor: grabbing;
}

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

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

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

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.1s ease;
}

.image-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    pointer-events: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5),
                0 0 15px rgba(249, 115, 22, 0.5);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.after-image .image-label {
    left: auto;
    right: 1rem;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--primary-dark);
}

.image-placeholder svg {
    width: 100px;
    height: 100px;
    color: var(--accent-orange);
    opacity: 0.3;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--accent-orange);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6),
                0 0 20px rgba(249, 115, 22, 0.3);
    transition: all 0.2s ease;
}

.slider-handle:hover {
    width: 4px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.8),
                0 0 25px rgba(249, 115, 22, 0.5);
}

.slider-handle:hover::before {
    width: 35px;
    height: 35px;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.8);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--accent-orange);
    border: 2px solid var(--white);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    cursor: grab;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.6);
}

.slider-handle:active::before {
    cursor: grabbing;
}

.slider-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--white);
    z-index: 2;
    transform: translateX(-50%);
    opacity: 0.5;
}

.slider-hint {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
    font-style: italic;
}

.gallery-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-info {
    border-color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.05);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.3),
                0 0 15px rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
}

.gallery-category {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5),
                0 0 15px rgba(249, 115, 22, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-category {
    box-shadow: 0 3px 12px rgba(249, 115, 22, 0.7),
                0 0 20px rgba(249, 115, 22, 0.4);
    transform: scale(1.05);
}

.gallery-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.gallery-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, 
        var(--primary-dark) 0%, 
        var(--primary-gray) 50%, 
        var(--primary-dark) 100%);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(249, 115, 22, 0.3);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-orange), 
        transparent);
}

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

/* ============================================
   Fullscreen Image Modal
   ============================================ */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-image {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.5),
                0 0 100px rgba(249, 115, 22, 0.3);
    animation: zoomIn 0.3s ease;
}

.modal-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(249, 115, 22, 0.9);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5),
                0 0 25px rgba(249, 115, 22, 0.5);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.8);
    border: 2px solid var(--accent-orange);
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.modal-close:hover {
    background: var(--accent-orange);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.9);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(249, 115, 22, 0.8);
    border: 2px solid var(--accent-orange);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    clip-path: polygon(25% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%, 0% 25%);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
    border: none;
    outline: none;
}

.modal-prev {
    left: 2rem;
}

.modal-next {
    right: 2rem;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--accent-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.9);
}

.modal-prev:active,
.modal-next:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-image img {
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-image img:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

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

/* ============================================
   Mobile Styles (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtitle-red {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-tagline {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .section-title {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }

    .about-preview-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .about-preview-image {
        height: 250px;
    }

    .about-preview-image img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

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

    .gallery-item {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .category-info-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .category-info-content {
        gap: 1rem;
    }

    .category-name {
        font-size: 1.5rem;
    }

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

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

    .portfolio-image-sharp {
        height: 150px;
    }

    .services-grid {
        gap: 1rem;
    }

    .service-card-sharp {
        padding: 1.25rem;
    }

    .service-card-sharp h3 {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .service-card-sharp p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gallery-grid {
        gap: 0.75rem;
    }

    .before-after-slider {
        height: 200px;
    }

    .gallery-info h3 {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gallery-description {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .gallery-category {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .modal-image {
        max-width: 98%;
        max-height: 85%;
    }

    .modal-caption {
        bottom: 1rem;
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .modal-prev,
    .modal-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .modal-prev {
        left: 1rem;
    }

    .modal-next {
        right: 1rem;
    }

    .contact-item-sharp {
        padding: 1.25rem;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-item-sharp h3 {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-item-sharp a,
    .contact-item-sharp p {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .social-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

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

    .form-group input,
    .form-group textarea {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .about-stats-mini {
        gap: 1rem;
    }

    .stat-number-mini {
        font-size: 1.5rem;
    }

    .stat-label-mini {
        font-size: 0.75rem;
    }

    .nav-brand h1 {
        font-size: 0.8rem;
    }

    .hero-logo {
        max-width: 250px;
        margin-bottom: 1.5rem;
    }

    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 4rem 0 3rem;
        padding-top: 4.5rem;
    }

    .about-preview,
    .services-preview,
    .gallery-preview,
    .contact-preview {
        padding: 2.5rem 0;
    }

    .page-header {
        padding: 4rem 0 2rem;
        margin-top: 50px;
    }

    .page-title {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-subtitle {
        font-size: 0.9rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }

    iframe {
        max-width: 100%;
    }

    h1, h2, h3, h4, h5, h6,
    p, span, a, li, td, th {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

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

    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

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

    .contact-preview-grid {
        gap: 2rem;
    }

    .section-title-small {
        font-size: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .location-section h3,
    .social-section h3 {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .hero-logo {
        max-width: 350px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static !important;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
        gap: 0.25rem;
        left: auto !important;
        transform: none !important;
        overflow: visible;
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .nav-menu .sidebar-divider,
    .nav-menu .sidebar-social {
        display: none;
    }

    .nav-menu li {
        margin: 0;
        opacity: 1 !important;
        transform: none !important;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
        border: none;
        font-size: 0.9rem;
        white-space: nowrap;
        position: relative;
        background: transparent;
        box-shadow: none;
    }

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

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        color: var(--accent-orange);
        background: transparent;
        transform: translateY(0);
        padding-left: 1rem;
        box-shadow: none;
        border: none;
    }

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

    .hero-subtitle-red {
        font-size: 3.5rem;
    }

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

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

    .about-preview-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .about-preview-text {
        text-align: left;
    }

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

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

    .service-card-sharp {
        padding: 2rem;
    }

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

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

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

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .portfolio-image-sharp {
        height: 220px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .before-after-slider {
        height: 200px;
    }
}

/* ============================================
   Desktop Styles (1024px and up)
   ============================================ */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle-red {
        font-size: 4.5rem;
    }

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

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .page-title {
        font-size: 3rem;
    }

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

    .before-after-slider {
        height: 320px;
    }
}

/* ============================================
   Large Desktop Styles (1440px and up)
   ============================================ */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

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

    .hero-subtitle-red {
        font-size: 5.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

/* ============================================
   Cookie Banner Styles
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-gray);
    border-top: 3px solid var(--accent-orange);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
    display: block;
}

.cookie-banner.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: translateY(100%) !important;
}

.cookie-banner-show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.cookie-banner-text {
    flex: 1;
    color: var(--text-light);
}

.cookie-banner-text h3 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.cookie-banner-text p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cookie-banner-links {
    margin-top: 0.75rem;
}

.cookie-banner-links a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-banner-links a:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    flex: 1;
    min-width: 140px;
}

.cookie-btn-accept {
    background: var(--accent-orange);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background: var(--accent-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-gray);
}

.cookie-btn-reject:hover {
    background: var(--secondary-gray);
    border-color: var(--text-light);
    color: var(--white);
}

.cookie-btn-settings {
    background: var(--secondary-gray);
    color: var(--text-light);
    border: 2px solid var(--text-gray);
}

.cookie-btn-settings:hover {
    background: var(--primary-gray);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

@media (min-width: 768px) {
    .cookie-banner-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-banner-buttons {
        flex: 0 0 auto;
        width: auto;
    }
    
    .cookie-btn {
        flex: 0 0 auto;
    }
}

@media (max-width: 767px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-banner-text p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: 100%;
    }
}
