/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

a{
    text-decoration: none !important;
}

:root {
    --primary-bg: #0f0f0f;
    --secondary-bg: #1a1a1a;
    --accent-color: #ff4d6d;
    --accent-hover: #ff6b8b;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #333333;
    --card-bg: rgba(255, 255, 255, 0.05);
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    direction: ltr;
}

/* Luxury Background */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 77, 109, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 200, 255, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: -2;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ff4d6d, #ff6b8b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--text-primary);
}

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

nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 77, 109, 0.3);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 109, 0.4);
}

/* Hero Section with Model Image */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    top: 5vh;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    position: relative;
    margin-left: auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-hero {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    background: rgba(255, 77, 109, 0.1);
}

/* Hero Model Image */
.hero-model {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    z-index: 1;
}

.hero-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Demo Gallery Section */
.demo-gallery {
    padding: 8rem 5%;
    background: var(--secondary-bg);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #ffffff, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Virtual Try-On Section */
.virtual-tryon {
    padding: 8rem 5%;
    background: var(--primary-bg);
}

.upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.upload-area {
    background: var(--card-bg);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: var(--accent-color);
    background: rgba(255, 77, 109, 0.05);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.upload-area h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.upload-area p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.preview-area {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-top: 2rem;
}

.preview-placeholder {
    text-align: center;
    color: var(--text-secondary);
}

.preview-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
    display: none;
}

/* Privacy & Terms Page */
.privacy-page {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    background: var(--primary-bg);
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 4rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.privacy-section p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.highlight {
    background: rgba(255, 77, 109, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--secondary-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

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

/* Instagram Business Section */
.instagram-business {
    padding: 8rem 5%;
    background: var(--primary-bg);
}

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

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

.business-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.business-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: rgba(255, 77, 109, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.business-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-svg svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 8rem 5%;
    background: var(--secondary-bg);
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 77, 109, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 77, 109, 0.05) 100%);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

.amount {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffffff, #ff4d6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.pricing-features {
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--accent-color);
    width: 20px;
}

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

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

.pricing-footer p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 2rem 5%;
    background: var(--primary-bg);
}

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

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

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

.contact-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    background: rgba(255, 77, 109, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-feature-text a {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

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

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

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

.contact-submit {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Video Try-On Section */
.video-tryon-section {
    padding: 8rem 5%;
    background: var(--secondary-bg);
}

.video-tryon-container {
    max-width: 1400px;
    margin: 0 auto;
}

.video-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-column {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-column:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 77, 109, 0.2);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-icon {
    background: rgba(255, 77, 109, 0.1);
    border-radius: 12px;
    padding: 0.8rem;
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 0;
}

.column-content {
    padding: 1.5rem;
}

.pattern-image,
.model-image,
.video-output {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-image img,
.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-output video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-controls {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.video-btn {
    flex: 1;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

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

.column-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.column-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Video Gallery */
.video-gallery {
    margin-top: 3rem;
}

.gallery-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.gallery-item2 {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item2:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(255, 77, 109, 0.2);
}

.gallery-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item2:hover .gallery-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 77, 109, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item2:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.gallery-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* VIP Pricing Card Styles */
.pricing-card.vip-card {
    border-color: #ffd700;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-card.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 215, 0, 0.05) 50%, transparent 100%);
    animation: vipShine 3s ease-in-out infinite;
}

@keyframes vipShine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.vip-badge {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    font-weight: 800;
    border-radius: 0px;
    border-bottom-right-radius: 1.5rem;
    top: 0;
    left: 0;
}

.vip-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #000;
    font-weight: 700;
}

.vip-btn:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Feature unavailable styles */
.feature.unavailable {
    opacity: 0.6;
}

.feature.unavailable i {
    color: var(--text-secondary);
}

.feature.unavailable span {
    color: var(--text-secondary);
    text-decoration: line-through;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 5%;
    }

    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-model {
        display: none;
    }

    .upload-section {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        text-align: center;
        margin: 0 auto !important;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .privacy-container {
        padding: 2rem;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

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

    .business-text h3 {
        font-size: 1.5rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }

    .amount {
        font-size: 2.5rem;
    }

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

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

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

    .column-header {
        padding: 1rem;
    }

    .column-content {
        padding: 1rem;
    }

    .pattern-image,
    .model-image,
    .video-output {
        height: 250px;
    }

    .video-controls {
        flex-direction: column;
    }

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

    .gallery-title {
        font-size: 1.5rem;
    }

    .pricing-card.vip-card {
        order: 3;
    }
}

@media (max-width: 1024px) {
    .video-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pattern-image,
    .model-image,
    .video-output {
        height: 300px;
    }
}
