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

/* Force center alignment for hero section - Override hosting conflicts */
.hero * {
    box-sizing: border-box;
}

.hero, .hero-container, .hero-content {
    text-align: center !important;
}

.hero-title, .hero-description, .hero-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700, #FFA500);
    --dark-gradient: linear-gradient(135deg, #232526 0%, #414345 100%);
    --text-color: #2c3e50;
    --light-text: #7f8c8d;
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --success-color: #00d2ff;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #f8f9fa;
    overflow-x: hidden;
}

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

/* Navigation - Glass Morphism Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section - Mobile First Design */
.hero {
    min-height: 100vh;
    padding: 100px 0 60px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center !important;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.hero-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center !important;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}

.title-line {
    display: block;
    position: relative;
}

.glitch {
    position: relative;
    color: white;
    font-size: inherit;
    font-weight: inherit;
    animation: glitch 2s linear infinite;
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px, 0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px, 0) skew(0deg);
    }
    62% {
        transform: translate(0, 0) skew(5deg);
    }
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch:before {
    animation: glitch-before 0.5s infinite;
    color: #00ffff;
    z-index: -1;
}

.glitch:after {
    animation: glitch-after 0.5s infinite;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch-before {
    0% {
        clip: rect(35px, 9999px, 85px, 0);
        transform: skew(0.5deg);
    }
    100% {
        clip: rect(75px, 9999px, 145px, 0);
        transform: skew(0.5deg);
    }
}

@keyframes glitch-after {
    0% {
        clip: rect(65px, 9999px, 119px, 0);
        transform: skew(0.5deg);
    }
    100% {
        clip: rect(85px, 9999px, 140px, 0);
        transform: skew(0.5deg);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.8) }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    width: 100%;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 87, 108, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: white;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(245, 87, 108, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 87, 108, 0);
    }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 60px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.feature-item i {
    font-size: 1.1rem;
    color: #ffd700;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.artist-showcase {
    display: flex;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.showcase-item {
    width: 250px;
    height: 250px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pencil-art {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
}

.colorful-art {
    background: var(--accent-gradient);
}

.showcase-item:hover {
    transform: scale(1.05) rotate(-5deg);
}

.art-preview {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.art-preview i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.art-preview span {
    font-weight: 600;
    font-size: 1.1rem;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.element {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    animation: floatElement 15s infinite ease-in-out;
}

.element-1 {
    top: 20%;
    left: -50px;
    font-size: 2rem;
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: -50px;
    font-size: 2.5rem;
    animation-delay: 5s;
}

.element-3 {
    top: 50%;
    right: -30px;
    font-size: 1.5rem;
    animation-delay: 10s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, -20px) rotate(180deg);
    }
    50% {
        transform: translate(80px, 20px) rotate(360deg);
    }
    75% {
        transform: translate(120px, -10px) rotate(180deg);
    }
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

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

/* About Section - Modern Cards */
.about {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

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

.about-text {
    padding-right: 2rem;
}

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

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

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: transparent;
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-card:hover * {
    position: relative;
    z-index: 2;
    color: white !important;
}

.highlight-card:hover .highlight-icon {
    background: white;
    color: var(--primary-color) !important;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.highlight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.highlight-card p {
    color: var(--light-text);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 50%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 50% 0 50% 0;
        transform: rotate(45deg);
    }
    50% {
        border-radius: 0 50% 0 50%;
        transform: rotate(90deg);
    }
    75% {
        border-radius: 50% 0 50% 0;
        transform: rotate(135deg);
    }
}

/* Skills Section - Modern Grid */
.skills {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.skill-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.skill-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

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

.skill-card:hover::after {
    animation: shimmer 0.5s ease;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: rotate(360deg) scale(1.1);
}

.skill-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.skill-card p {
    color: var(--light-text);
    line-height: 1.6;
}

/* Gallery Section - Masonry Layout */
.gallery {
    padding: 100px 0;
    background: white;
}

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

.filter-btn {
    padding: 14px 32px;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--primary-gradient) border-box;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.artwork-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: white;
}

.artwork-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.artwork-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.artwork-item:hover::before {
    opacity: 1;
}

.artwork-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
}

.artwork-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.artwork-item:hover .artwork-image img {
    transform: scale(1.15);
}

.artwork-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: white;
    padding: 2.5rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.category-tag {
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    color: var(--text-color);
    transform: scale(1.1);
}

.artwork-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 15px solid white;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artwork-item:hover .artwork-frame {
    opacity: 1;
}

/* Order Section - Premium Design */
.order-section {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="p" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23p)"/></svg>');
    background-size: 100px 100px;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.order-section .section-title {
    color: white;
}

.order-section .section-title::after {
    background: white;
}

.order-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-showcase {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.pricing-card {
    max-width: 400px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerCard 3s linear infinite;
}

@keyframes shimmerCard {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.price {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.price-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pricing-features i {
    color: #25d366;
    font-size: 1.2rem;
    position: absolute;
    left: 2px;
    z-index: 1;
}

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

.pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.order-instructions {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    transition: all 0.3s ease;
}

.instruction-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.instruction-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.instruction-card h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

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

/* Contact Section - Modern Design */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 700;
}

.contact-details p {
    color: var(--light-text);
    font-size: 1.05rem;
}

.process-steps {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--card-shadow);
}

.process-steps h3 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.steps {
    display: flex;
    gap: 2rem;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.step:hover .step-number {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: scale(1.2);
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.step-content p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer - Minimal Design */
.footer {
    background: var(--dark-gradient);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: #b2bec3;
    margin-bottom: 1.5rem;
}

.footer-whatsapp p {
    color: #b2bec3;
    font-size: 1rem;
}

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

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

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

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
    margin: auto;
}

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

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Mobile Hero Optimizations */
@media (max-width: 768px) {
    .floating-shapes .shape {
        display: none;
    }
    
    .hero-particles {
        opacity: 0.3;
    }
    
    .floating-elements {
        display: none;
    }
}

/* Touch-friendly improvements */
.btn, .filter-btn, .action-btn, .lightbox-close, .lightbox-prev, .lightbox-next {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* Improve touch targets */
@media (max-width: 768px) {
    .nav-menu li a {
        padding: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .artwork-item {
        min-height: 44px;
    }
    
    .btn, .filter-btn, .pricing-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Mobile scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
    }
}

/* Selection color */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: var(--text-color);
}

/* Mobile First Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-container {
        padding: 0 20px;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content {
        max-width: 100%;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.7rem 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .feature-item {
        flex-direction: column;
        padding: 1rem 0.8rem;
        min-height: 80px;
        gap: 0.3rem;
    }

    .feature-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .feature-item span {
        font-size: 0.8rem;
        font-weight: 500;
    }

    .about, .skills, .gallery, .order-section, .contact {
        padding: 60px 0;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

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

    .skill-card {
        padding: 2rem;
    }

    .gallery {
        padding: 40px 0;
    }

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

    .gallery .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .gallery-filters {
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }

    .artwork-image {
        height: 180px;
    }

    .artwork-item {
        border-radius: 12px;
    }

    .pricing-card {
        max-width: none;
        margin: 0 1rem;
        padding: 2rem;
    }

    .price {
        font-size: 3rem;
    }

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

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .steps::before {
        top: 50px;
        left: 50%;
        right: auto;
        width: 2px;
        height: calc(100% - 100px);
        transform: translateX(-50%);
    }

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

    .btn {
        width: 250px;
        justify-content: center;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-logo a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 15px;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.1rem;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: clamp(1.5rem, 10vw, 2.2rem);
        margin-bottom: 1.2rem;
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
        max-width: 350px;
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-buttons {
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        max-width: 320px;
    }

    .feature-item {
        padding: 0.8rem 0.6rem;
        min-height: 70px;
        flex-direction: column;
        gap: 0.4rem;
    }

    .feature-item i {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .feature-item span {
        font-size: 0.75rem;
        line-height: 1.2;
    }


    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
        max-width: 250px;
        margin: 0 auto;
    }

    .feature-item {
        width: 100%;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
        justify-content: center;
        border-radius: 15px;
    }

    .hero-visual {
        margin-top: 0.5rem;
        order: -1;
    }

    .showcase-item {
        width: 110px;
        height: 110px;
    }

    .art-preview i {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .art-preview span {
        font-size: 0.8rem;
    }

    .about, .skills, .gallery, .order-section, .contact {
        padding: 40px 0;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.8rem;
    }

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

    .skill-card {
        padding: 1.5rem;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .gallery {
        padding: 30px 0;
    }

    .gallery .section-header {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .gallery .section-title {
        font-size: clamp(1.3rem, 7vw, 1.8rem);
        margin-bottom: 0.5rem;
    }

    .gallery .section-subtitle {
        font-size: 0.9rem;
    }

    .gallery-filters {
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0 10px;
    }

    .artwork-image {
        height: 160px;
    }

    .artwork-item {
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .artwork-item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .pricing-card {
        padding: 1.5rem;
        margin: 0;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-features li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .pricing-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .instruction-card {
        padding: 2rem 1.5rem;
    }

    .instruction-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-steps {
        padding: 2rem 1rem;
    }

    .steps {
        gap: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Mobile Lightbox */
    .lightbox {
        padding: 10px;
    }
    
    .lightbox-image {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .gallery {
        padding: 20px 0;
    }
    
    .gallery .section-header {
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .gallery .section-title {
        font-size: clamp(1.2rem, 8vw, 1.6rem);
    }
    
    .gallery .section-subtitle {
        font-size: 0.85rem;
    }
    
    .gallery-filters {
        margin-bottom: 1rem;
        padding: 0 5px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
        width: 100%;
        max-width: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        padding: 0 5px;
    }
    
    .artwork-image {
        height: 140px;
    }
    
    .artwork-item {
        border-radius: 8px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
}