@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700&family=Exo+2:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6c5ce7;
    --primary-dark: #5b4cdb;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --dark: #0a0a0f;
    --dark-light: #1a1a2e;
    --text: #e0e0e0;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #00cec9 100%);
    --gradient-2: linear-gradient(135deg, #1a1a2e 0%, #0a0a0f 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    font-size: 14px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

header.visible {
    transform: translateY(0);
}

header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.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(5px, -5px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 206, 201, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.3);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--white);
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features {
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--dark);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.courses {
    background: var(--dark);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.course-card {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-info {
    padding: 20px;
}

.course-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.course-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.course-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
}

.about-preview {
    background: var(--dark-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
}

.about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testimonials {
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--dark-light);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.85rem;
}

.cta {
    background: var(--gradient-1);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--dark);
    color: var(--white);
}

footer {
    background: var(--dark-light);
    padding: 30px 0 15px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand .logo {
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.85rem;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.page-header {
    background: var(--gradient-2);
    padding: 120px 0 50px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
}

.page-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.page-content {
    padding: 50px 0;
}

.contact-section {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item p {
    color: var(--text);
    font-size: 0.9rem;
}

.contact-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 3px;
}

.contact-form-wrapper {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 12px;
}

.contact-form-wrapper h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--dark);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 600;
}

.error-page {
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.error-content h1 {
    font-size: 6rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.error-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.thank-you-page {
 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 100vh;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.thank-you-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 500px;
}

.policy-content {
    background: var(--dark);
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--white);
}

.policy-text h3 {
    font-size: 1.1rem;
    margin: 25px 0 12px;
    color: var(--secondary);
}

.policy-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.policy-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-text ul li {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--dark-light);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.privacy-popup.show {
    display: block;
}

.privacy-popup h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.privacy-popup p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup-buttons .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.about-full {
    background: var(--dark);
}

.about-full-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-full-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.about-full-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.team-section {
    background: var(--dark-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--dark);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.1);
}

.value-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--white);
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sculpting-intro {
    background: var(--dark);
}

.sculpting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sculpting-text h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.sculpting-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.techniques-section {
    background: var(--dark-light);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.technique-card {
    background: var(--dark);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(108, 92, 231, 0.1);
    transition: transform 0.3s ease;
}

.technique-card:hover {
    transform: translateY(-5px);
}

.technique-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.technique-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.technique-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-light);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    nav ul li a {
        font-size: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-wrapper,
    .about-full-content,
    .sculpting-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .courses-grid,
    .testimonials-grid,
    .products-grid,
    .techniques-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .stats {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 22px;
        font-size: 0.75rem;
    }

    .error-content h1 {
        font-size: 4rem;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .hero-text h1 {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
