/* ========================================
   Art of Work Printing - Main Stylesheet
   ======================================== */

/* CSS Variables - Brand Colors */
:root {
    --cyan: #00B4DF;
    --magenta: #E91E8C;
    --orange: #E85D04;
    --yellow: #FFB60B;
    --blue: #3A86FF;
    --purple: #8338EC;
    --green: #06D6A0;
    --red: #EF476F;
    --dark: #2D2D2D;
    --gray-900: #212529;
    --gray-600: #6C757D;
    --gray-100: #F8F9FA;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Offset for fixed header */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}

/* Page Loading Animation */
body.page-loading {
    overflow: hidden;
}

body.page-loading .header,
body.page-loading main,
body.page-loading .hero,
body.page-loading .page-hero,
body.page-loading .footer {
    opacity: 0;
}

body.page-loaded .header,
body.page-loaded main,
body.page-loaded .hero,
body.page-loaded .page-hero,
body.page-loaded .footer {
    animation: fadeInUp 0.6s ease forwards;
}

body.page-loaded .header { animation-delay: 0s; }
body.page-loaded .hero,
body.page-loaded .page-hero { animation-delay: 0.1s; }
body.page-loaded main { animation-delay: 0.15s; }
body.page-loaded .footer { animation-delay: 0.2s; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background: #d54d00;
    border-color: #d54d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

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

.header-color-bar {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--cyan) 0%, 
        var(--magenta) 25%, 
        var(--orange) 50%, 
        var(--yellow) 75%, 
        var(--cyan) 100%
    );
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.hero-bg-splashes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Paint Splash Effects */
.splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.splash-cyan { background: var(--cyan); }
.splash-magenta { background: var(--magenta); }
.splash-orange { background: var(--orange); }
.splash-yellow { background: var(--yellow); }

.splash-1 {
    width: 280px;
    height: 280px;
    top: -50px;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.splash-2 {
    width: 200px;
    height: 200px;
    bottom: 0;
    left: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.splash-3 {
    width: 180px;
    height: 180px;
    top: 30%;
    right: 15%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(90deg, var(--orange), var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    max-width: 450px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   Services Section (Homepage)
   ======================================== */
.services {
    padding: 40px 0 60px;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.title-splash {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--orange);
    border-radius: 50%;
    filter: blur(3px);
}

.title-splash::before,
.title-splash::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.title-splash::before {
    width: 12px;
    height: 12px;
    background: var(--cyan);
    left: -15px;
    top: -8px;
    filter: blur(2px);
}

.title-splash::after {
    width: 8px;
    height: 8px;
    background: var(--magenta);
    right: -12px;
    bottom: -5px;
    filter: blur(2px);
}

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

.services-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 30px 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-splash {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.service-card[data-color="cyan"] .service-splash { background: var(--cyan); }
.service-card[data-color="magenta"] .service-splash { background: var(--magenta); }
.service-card[data-color="orange"] .service-splash { background: var(--orange); }

.service-card:hover .service-splash {
    opacity: 0.5;
    transform: scale(1.2);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card[data-color="cyan"] .service-title { color: var(--cyan); }
.service-card[data-color="magenta"] .service-title { color: var(--magenta); }
.service-card[data-color="orange"] .service-title { color: var(--orange); }

.service-desc {
    color: var(--gray-600);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-link {
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--orange);
    padding-left: 5px;
}

/* ========================================
   Portfolio Preview (Homepage)
   ======================================== */
.portfolio-preview {
    padding: 60px 0 80px;
    background: var(--gray-100);
}

.portfolio-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.portfolio-preview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.portfolio-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-preview-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-preview-item:hover .portfolio-preview-overlay {
    opacity: 1;
}

.portfolio-preview-title {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

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

@media (max-width: 992px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .portfolio-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .portfolio-preview-overlay {
        opacity: 1;
        padding: 12px 10px;
    }
    
    .portfolio-preview-title {
        font-size: 0.8rem;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/brick-splash.png') center center no-repeat;
    background-size: cover;
    opacity: 0.15;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.cta .btn-white {
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
}

.cta .btn-white:hover {
    background: #d54d00;
    border-color: #d54d00;
    transform: translateY(-2px);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--white);
    color: var(--dark);
    padding: 60px 0 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-100);
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

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

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    background: var(--gray-900);
    margin-top: 40px;
}

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

/* ========================================
   Page Hero (Subpages)
   ======================================== */
.page-hero {
    position: relative;
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.page-hero-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-hero-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
}

/* ========================================
   Service Detail Section (Services Page)
   ======================================== */
.service-detail {
    padding: 80px 0;
}

.service-detail-alt {
    background: var(--gray-100);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

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

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-detail-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-specs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.spec-item {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-align: center;
    min-width: 120px;
}

.service-detail-alt .spec-item {
    background: var(--white);
}

.spec-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.spec-value {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.service-subtitle {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark);
}

.service-detail-alt .tag {
    background: var(--white);
}

.service-detail-text {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-image {
    position: relative;
}

.service-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    border: 2px dashed var(--gray-600);
    border-radius: 12px;
    padding: 80px 30px;
    text-align: center;
    color: var(--gray-600);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent, var(--cyan));
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.image-placeholder span {
    position: relative;
    z-index: 1;
}

/* ========================================
   FAQ Section (Accordion)
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--gray-100);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item.active {
    background: var(--white);
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-item.active .faq-question {
    color: var(--orange);
}

.faq-question span {
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-600);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.9rem;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Portfolio Page
   ======================================== */
.portfolio-section {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.portfolio-intro p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 4/3;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

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

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--orange);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.portfolio-description {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

.btn-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: var(--orange);
    border-color: var(--orange);
}

/* Mobile Portfolio */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item {
        border-radius: 12px;
    }
    
    /* Always show overlay on mobile */
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
        padding: 15px;
    }
    
    .portfolio-overlay-content {
        transform: translateY(0);
    }
    
    .portfolio-category {
        font-size: 0.65rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }
    
    .portfolio-title {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .portfolio-description {
        display: block;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .btn-view {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 5px;
    }
    
    .btn-view svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-item {
        aspect-ratio: 16/10;
    }
    
    .portfolio-overlay {
        padding: 20px;
    }
    
    .portfolio-category {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
    
    .portfolio-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .portfolio-description {
        display: block;
        font-size: 0.75rem;
        margin-bottom: 10px;
    }
    
    .btn-view {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .btn-view svg {
        width: 16px;
        height: 16px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-info {
    margin-top: 20px;
    color: var(--white);
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.lightbox-info p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--orange);
}

/* Mobile Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .lightbox-content {
        padding: 10px;
    }
    
    .lightbox-content img {
        max-height: 60vh;
    }
    
    .lightbox-info {
        margin-top: 15px;
        padding: 0 10px;
    }
    
    .lightbox-info h3 {
        font-size: 1.2rem;
    }
    
    .lightbox-info p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-left: 35px;
}

.contact-form-title .title-splash {
    left: 5px;
}

.contact-form-subtitle {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group label .required {
    color: var(--magenta);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #D0D0D0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C757D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    font-size: 1rem;
    margin-top: 10px;
}

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

.btn-submit:hover svg {
    transform: translateX(4px);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green), #05C596);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.3);
}

.form-success h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 300px;
    margin: 0 auto;
}

/* Form Error */
.form-error {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(239, 71, 111, 0.08);
    border: 1px solid rgba(239, 71, 111, 0.3);
    color: var(--red);
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-error svg {
    flex-shrink: 0;
}

/* Contact Info Side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    padding-left: 35px;
}

.contact-info-title .title-splash {
    left: 5px;
}

.contact-info-intro {
    color: var(--gray-600);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 8px;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-item:hover .contact-value {
    color: var(--orange);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), #FF7B2E);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Hours Card */
.contact-hours-card {
    background: linear-gradient(135deg, var(--orange), #FF7B2E);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    color: var(--white);
}

.hours-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hours-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.hours-content p {
    opacity: 0.95;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.hours-detail {
    opacity: 0.8;
    font-size: 0.85rem !important;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 1px solid var(--gray-100);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hamburger Animation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header .btn {
        display: none;
    }
    
    /* Hero adjustments */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Services adjustments */
    .services-grid,
    .services-grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Service Detail adjustments */
    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .service-specs {
        justify-content: center;
    }
    
    .page-hero-title {
        font-size: 2.2rem;
    }
    
    /* FAQ adjustments */
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .contact-info-card {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hours-card {
        padding: 25px;
    }
    
    /* Footer adjustments */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ========================================
   About Page - Enhanced
   ======================================== */

/* Section Labels */
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-label-center {
    display: block;
    text-align: center;
}

/* Mission Section */
.about-mission {
    padding: 80px 0 0;
    background: var(--white);
}

.mission-card {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    border-radius: 24px;
    padding: 60px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--cyan);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--magenta);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.mission-quote-mark {
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--orange);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 40px;
}

.mission-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin: 0;
}

.mission-author {
    margin-top: 25px;
    font-size: 1rem;
    color: var(--gray-600);
    position: relative;
    z-index: 1;
}

.mission-dash {
    color: var(--orange);
    margin-right: 8px;
}

/* About Intro */
.about-intro {
    padding: 100px 0;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-intro-title {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-intro-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-intro-text:last-of-type {
    margin-bottom: 0;
}

/* Transparency Badge */
.transparency-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.08) 0%, rgba(0, 180, 223, 0.08) 100%);
    border: 2px solid rgba(6, 214, 160, 0.2);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.transparency-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.transparency-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 214, 160, 0.2);
}

.transparency-badge:hover::before {
    opacity: 0.05;
}

.transparency-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), #05C596);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(6, 214, 160, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(6, 214, 160, 0);
    }
}

.transparency-content {
    position: relative;
    z-index: 1;
}

.transparency-number {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.big-zero {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.transparency-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 2px;
}

.transparency-subtext {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* About Images - Clean Style */
.about-intro-image,
.about-why-image {
    text-align: center;
}

.about-intro-image img,
.about-why-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.about-values-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.values-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.values-splash-1 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    top: -100px;
    left: -100px;
}

.values-splash-2 {
    width: 300px;
    height: 300px;
    background: var(--magenta);
    bottom: -50px;
    right: -50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card[data-color="cyan"] .value-card-glow { background: var(--cyan); }
.value-card[data-color="magenta"] .value-card-glow { background: var(--magenta); }
.value-card[data-color="orange"] .value-card-glow { background: var(--orange); }

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.value-card:hover .value-card-glow {
    opacity: 0.2;
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.value-card[data-color="cyan"] .value-icon { background: linear-gradient(135deg, var(--cyan), #00a0c6); }
.value-card[data-color="magenta"] .value-icon { background: linear-gradient(135deg, var(--magenta), #c4177a); }
.value-card[data-color="orange"] .value-icon { background: linear-gradient(135deg, var(--orange), #d54d00); }

.value-title {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Process Timeline */
.about-process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), var(--magenta), var(--cyan));
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--orange);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--orange);
    color: var(--white);
    transform: scale(1.1);
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.step-text {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Why Choose Us */
.about-why {
    padding: 100px 0;
    background: var(--gray-100);
}

.about-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-why-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-why-text {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 35px;
}

.why-features {
    display: grid;
    gap: 20px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.why-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.why-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange), #FF7B2E);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.why-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-feature-text strong {
    font-size: 1.05rem;
    color: var(--dark);
}

.why-feature-text span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* CTA About */
.cta-about {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
}

.cta-about::before {
    opacity: 0.05;
}

.cta-about .cta-title {
    color: var(--white);
}

.cta-about .cta-text {
    color: rgba(255,255,255,0.7);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mission-card {
        padding: 50px 40px;
    }
    
    .mission-quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-intro-grid,
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-intro-image,
    .about-why-image {
        order: -1;
        text-align: center;
    }
    
    .about-intro-image img,
    .about-why-image img {
        max-width: 350px;
    }
    
    .about-intro-title,
    .about-why-title {
        font-size: 1.8rem;
    }
    
    .transparency-badge {
        padding: 20px;
        gap: 15px;
    }
    
    .transparency-icon {
        width: 50px;
        height: 50px;
    }
    
    .transparency-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .big-zero {
        font-size: 2.8rem;
    }
    
    .transparency-text {
        font-size: 1.1rem;
    }
    
    .mission-card {
        padding: 40px 25px;
    }
    
    .mission-quote {
        font-size: 1.3rem;
    }
    
    .mission-quote-mark {
        font-size: 5rem;
        top: 10px;
        left: 20px;
    }
    
    .timeline-line {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .process-step {
        gap: 25px;
    }
    
    .step-title {
        font-size: 1.15rem;
    }
}

/* ========================================
   Under Construction Page
   ======================================== */
.under-construction {
    padding: 100px 0;
    background: var(--white);
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.construction-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.construction-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--orange);
    position: relative;
}

.construction-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--cyan);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.6;
}

.construction-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: var(--magenta);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.5;
}

.construction-title {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.construction-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 15px;
}

.construction-subtext {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 35px;
}

.construction-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .logo img {
        height: 50px;
    }
}

/* ========================================
   Floating Contact Button
   ======================================== */
.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.floating-btn-phone {
    background: var(--orange);
}

.floating-btn-phone:hover {
    background: #d54d00;
}

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

.floating-btn-whatsapp:hover {
    background: #1da851;
}

.floating-btn-email {
    background: var(--cyan);
}

.floating-btn-email:hover {
    background: #009abc;
}

.floating-btn-facebook {
    background: #1877F2;
}

.floating-btn-facebook:hover {
    background: #0d65d9;
}

.floating-btn-linkedin {
    background: #0A66C2;
}

.floating-btn-linkedin:hover {
    background: #084d94;
}

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

/* Tooltip */
.floating-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .floating-btn::before {
        display: none;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--cyan);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
    background: #d54d00;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--white);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        font-size: 0.9rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}

/* ========================================
   Legal Pages (Privacy Policy, Terms)
   ======================================== */
.legal-content {
    padding: 60px 0 80px;
    background: var(--white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 35px 0 15px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: var(--gray-600);
    line-height: 1.8;
    margin: 0 0 20px 25px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--orange);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        left: 20px;
        bottom: 100px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Scroll Animations
   ======================================== */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Specific animations for different elements */
.hero-content.animate-element {
    transform: translateX(-30px);
}

.hero-content.animate-in {
    transform: translateX(0);
}

.hero-image.animate-element {
    transform: translateX(30px);
}

.hero-image.animate-in {
    transform: translateX(0);
}

.service-card.animate-element {
    transform: translateY(40px) scale(0.95);
}

.service-card.animate-in {
    transform: translateY(0) scale(1);
}

.portfolio-item.animate-element,
.portfolio-preview-item.animate-element {
    transform: translateY(30px) scale(0.9);
}

.portfolio-item.animate-in,
.portfolio-preview-item.animate-in {
    transform: translateY(0) scale(1);
}

.faq-item.animate-element {
    transform: translateY(20px);
}

.faq-item.animate-in {
    transform: translateY(0);
}

.cta-content.animate-element {
    transform: translateY(20px) scale(0.98);
}

.cta-content.animate-in {
    transform: translateY(0) scale(1);
}

.value-card.animate-element {
    transform: translateY(40px) scale(0.95);
}

.value-card.animate-in {
    transform: translateY(0) scale(1);
}

.about-intro-content.animate-element,
.about-why-content.animate-element {
    transform: translateX(-30px);
}

.about-intro-content.animate-in,
.about-why-content.animate-in {
    transform: translateX(0);
}

.about-intro-image.animate-element,
.about-why-image.animate-element {
    transform: translateX(30px);
}

.about-intro-image.animate-in,
.about-why-image.animate-in {
    transform: translateX(0);
}

.mission-card.animate-element {
    transform: translateY(30px) scale(0.98);
}

.mission-card.animate-in {
    transform: translateY(0) scale(1);
}

.process-step.animate-element {
    transform: translateX(-30px);
}

.process-step.animate-in {
    transform: translateX(0);
}

.why-feature.animate-element {
    transform: translateX(-20px);
}

.why-feature.animate-in {
    transform: translateX(0);
}

.transparency-badge.animate-element {
    transform: translateY(20px) scale(0.95);
}

.transparency-badge.animate-in {
    transform: translateY(0) scale(1);
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .animate-element {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .animate-element.animate-in {
        transform: none;
    }
}
