/* ============================================
   YAYAN - Estilos CSS
   Diseño Creativo-Industrial
   ============================================ */

/* Variables CSS - Creative Theme */
:root {
    /* Colores principales - Paleta creativa */
    --primary-color: #FF6B35;      /* Naranja vibrante */
    --secondary-color: #004E89;    /* Azul profundo */
    --accent-color: #A8DADC;       /* Turquesa suave */
    --creative-purple: #8B5CF6;    /* Púrpura creativo */
    --creative-yellow: #FFC947;    /* Amarillo energético */
    --creative-green: #06D6A0;     /* Verde fresco */
    
    /* Gradientes creativos */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFC947 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #8B5CF6 100%);
    --gradient-creative: linear-gradient(135deg, #FF6B35 0%, #8B5CF6 50%, #06D6A0 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Colores de fondo */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #E9ECEF;
    --bg-dark: #1A1A2E;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    
    /* Colores de texto */
    --text-dark: #212529;
    --text-gray: #6C757D;
    --text-light: #ADB5BD;
    --text-white: #FFFFFF;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-creative: 0 15px 35px rgba(255, 107, 53, 0.2);
    
    /* Fuentes */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Bebas Neue', cursive;
    
    /* Transiciones */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

/* Creative Background */
.creative-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.color-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float-splash 20s infinite;
}

.splash-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.splash-2 {
    width: 300px;
    height: 300px;
    background: var(--creative-purple);
    bottom: -50px;
    right: -50px;
    animation-delay: -7s;
}

.splash-3 {
    width: 350px;
    height: 350px;
    background: var(--creative-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float-splash {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(100px, -50px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(-100px, -100px) scale(1.05) rotate(270deg);
    }
}

.chemical-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    animation: pattern-shift 30s infinite;
}

@keyframes pattern-shift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

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

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

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

/* Preloader Creative */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.loader-chemical {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: bubble-dance 1.5s infinite ease-in-out;
}

.bubble:nth-child(1) {
    background: var(--primary-color);
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    background: var(--creative-purple);
    animation-delay: 0.2s;
}

.bubble:nth-child(3) {
    background: var(--creative-green);
    animation-delay: 0.4s;
}

@keyframes bubble-dance {
    0%, 60%, 100% {
        transform: translateY(0) scale(1);
    }
    20% {
        transform: translateY(-20px) scale(1.2);
    }
    40% {
        transform: translateY(0) scale(0.8);
    }
}

#preloader p {
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-creative {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-shape {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-creative);
}

.logo-letter {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-creative {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    box-shadow: var(--shadow-creative);
}

.btn-creative:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Hero Creative Section */
.hero-creative {
    min-height: 100vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    position: relative;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.hero-title {
    margin-bottom: 25px;
}

.text-outline {
    font-family: var(--font-display);
    -webkit-text-stroke: 2px var(--text-dark);
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.text-gradient {
    background: var(--gradient-creative);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-family: var(--font-display);
    line-height: 1;
}

.text-solid {
    color: var(--text-dark);
    display: block;
    font-family: var(--font-display);
    line-height: 1;
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-creative);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--bg-gray);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Hero Visual */
.creative-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.showcase-item {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    animation: float-item 6s infinite ease-in-out;
}

.item-1 {
    background: var(--gradient-primary);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.item-2 {
    background: var(--gradient-secondary);
    bottom: 50px;
    left: 50px;
    animation-delay: -2s;
}

.item-3 {
    background: linear-gradient(135deg, var(--creative-green), var(--accent-color));
    bottom: 50px;
    right: 50px;
    animation-delay: -4s;
}

@keyframes float-item {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

.showcase-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
}

.center-logo {
    font-family: var(--font-display);
    font-size: 4rem;
    background: var(--gradient-creative);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    margin-bottom: 20px;
}

.title-line {
    display: block;
    color: var(--text-dark);
}

.title-highlight {
    display: block;
    background: var(--gradient-creative);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Creative Section */
.about-creative {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.company-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.company-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-creative);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.card-header h3 {
    color: var(--text-dark);
}

.established-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.company-description {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.company-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.data-row {
    display: flex;
    gap: 30px;
}

.data-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.data-item i {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.data-label {
    display: block;
    color: var(--text-light);
    font-size: 0.85rem;
}

.data-value {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
}

.status-active {
    color: var(--creative-green);
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-creative);
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::after {
    opacity: 0.05;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.color-1 .feature-icon { background: var(--gradient-primary); }
.color-2 .feature-icon { background: var(--gradient-secondary); }
.color-3 .feature-icon { background: linear-gradient(135deg, var(--creative-green), var(--accent-color)); }
.color-4 .feature-icon { background: linear-gradient(135deg, var(--creative-purple), var(--primary-color)); }

.feature-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

/* Services Creative Section */
.services-creative {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: white;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.tab-btn i {
    font-size: 2rem;
    color: var(--text-gray);
    transition: var(--transition);
}

.tab-btn span {
    font-weight: 600;
    color: var(--text-gray);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.tab-btn.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-creative);
}

.tab-btn.active i,
.tab-btn.active span {
    color: var(--primary-color);
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

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

.service-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.showcase-header h3 {
    color: var(--text-dark);
}

.percentage-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

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

.service-item {
    text-align: center;
    padding: 25px;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    background: var(--gradient-glass);
    box-shadow: var(--shadow-md);
}

.service-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-creative);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-item h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

/* Additional Services Carousel */
.additional-services {
    margin-top: 60px;
    text-align: center;
}

.additional-services h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.services-carousel {
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll-carousel 20s linear infinite;
}

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

.service-card {
    min-width: 200px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Portfolio Creative Section */
.portfolio-creative {
    padding: 100px 0;
    background: var(--bg-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

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

.portfolio-item.large .portfolio-image {
    height: 630px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.acabados-img {
    background: linear-gradient(135deg, #FF6B35, #FFC947);
}

.quimicos-img {
    background: linear-gradient(135deg, #004E89, #8B5CF6);
}

.publicidad-img {
    background: linear-gradient(135deg, #06D6A0, #A8DADC);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.portfolio-overlay .category {
    display: inline-block;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-overlay h4 {
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Location Creative Section */
.location-creative {
    padding: 100px 0;
    background: var(--bg-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.location-info .info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    gap: 20px;
}

.detail-row i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.detail-row strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.detail-row address,
.detail-row p,
.detail-row a {
    color: var(--text-gray);
    font-style: normal;
}

.detail-row a:hover {
    color: var(--primary-color);
}

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

.btn-map {
    background: var(--gradient-secondary);
    color: white;
}

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

.btn-map:hover,
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.creative-map {
    width: 100%;
    height: 500px;
    background: var(--bg-gray);
}

.map-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pulse-dot {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Contact Creative Section */
.contact-creative {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.creative-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

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

.form-field {
    position: relative;
}

.form-field.full {
    grid-column: span 2;
}

.form-field label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-field label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid var(--bg-gray);
    background: var(--bg-light);
    border-radius: 10px 10px 0 0;
    transition: var(--transition);
    font-size: 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
    background: white;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-wrapper input {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg-gray);
    border-radius: 5px;
    transition: var(--transition);
    position: relative;
}

.checkbox-wrapper input:checked ~ .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-wrapper input:checked ~ .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-creative);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-gray);
}

.benefits-list i {
    color: var(--creative-green);
    font-size: 1.2rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.quick-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-creative);
}

.quick-btn i {
    font-size: 1.8rem;
}

.quick-btn span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

.quick-btn strong {
    display: block;
    font-size: 1.1rem;
}

/* Footer Creative */
.footer-creative {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-brand p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

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

.footer-bottom p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-creative);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .location-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .creative-showcase {
        margin-top: 40px;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .portfolio-item.large .portfolio-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .tab-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: space-around;
    }
    
    .creative-showcase {
        width: 300px;
        height: 300px;
    }
    
    .showcase-item {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

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

.slide-up {
    animation: slideUp 0.8s ease-out;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
