/* style.css - Creative Version */
:root {
    --primary: #6C63FF;
    --secondary: #FF6B6B;
    --accent: #4ECDC4;
    --dark: #2D3047;
    --light: #F8F9FA;
    --gradient: linear-gradient(135deg, #6C63FF 0%, #4ECDC4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    position: relative;
}

/* Floating shapes background */
.floating-shape {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -150px;
    right: -150px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 10%;
    animation: float 25s ease-in-out infinite;
}

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

/* Header */
header {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 2rem;
    animation: gentle-float 3s ease-in-out infinite;
}

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

/* Hero Section */
.hero-creative {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 6rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 2rem;
}

.creative-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

.creative-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card span {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.service-tag {
    background: var(--gradient);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    display: inline-block;
}

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background: white;
}

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

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Playfair Display', serif;
}

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

.pricing-card {
    background: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-card li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card .fas.fa-check {
    color: #4ECDC4;
}

.pricing-card .fas.fa-times {
    color: #FF6B6B;
}

.delivery-time {
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
}

/* Video Services Section */
.video-services {
    padding: 6rem 2rem;
    background: var(--light);
}

.video-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-delivery {
    font-size: 0.9rem;
    color: #888;
}

/* Honesty Section */
.honesty-section {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.honesty-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.honesty-section > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.honesty-point {
    padding: 2rem;
}

.honesty-point i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.honesty-point h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.honesty-point p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-creative {
    padding: 6rem 2rem;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-creative h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-creative p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-placeholder {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.form-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* Footer */
.creative-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand p {
    opacity: 0.8;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-creative {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .honesty-points {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.2rem 0.8rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card span {
        font-size: 0.8rem;
    }
    
    .feature-card p {
        font-size: 0.75rem;
    }
    
    .services-section h2,
    .video-services h2,
    .honesty-section h2,
    .cta-creative h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .creative-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .pricing-card,
    .service-card {
        padding: 2rem 1.5rem;
    }
}
/* Simplified Pricing Section */
.pricing-section {
    padding: 6rem 2rem;
    background: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-grid-simple {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-card-simple {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.pricing-card-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pricing-card-simple .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card-simple ul {
    list-style: none;
    text-align: left;
}

.pricing-card-simple li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card-simple .fas.fa-check {
    color: #4ECDC4;
}

.addons-container {
    padding: 2rem;
}

.addons-container h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.addon-cards {
    display: grid;
    gap: 1.5rem;
}

.addon-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.addon-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.addon-icon i {
    font-size: 1.2rem;
    color: white;
}

.addon-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.addon-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.addon-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Process Section */
.process-section {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design for Pricing */
@media (max-width: 968px) {
    .pricing-grid-simple {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card-simple {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Price note styling */
.price-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Duration note styling */
.duration-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    border-left: 3px solid var(--primary-color);
}

.duration-note i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Order Page Styles */
.order-header {
    padding: 8rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
}

.back-link:hover {
    color: var(--secondary-color);
}

.order-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.order-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Pricing Summary */
.pricing-summary {
    padding: 3rem 0;
    background: var(--light-color);
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.summary-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.summary-item.optional {
    color: #888;
    font-style: italic;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
}

/* Order Form Section */
.order-form-section {
    padding: 3rem 0 6rem;
}

.order-form-section .form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Button Container */
.cta-button-container {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design for Order Page */
@media (max-width: 768px) {
    .order-header {
        padding: 6rem 0 2rem;
    }
    
    .order-header h1 {
        font-size: 2rem;
    }
    
    .summary-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .order-form-section .form-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
}

/* Logo link styling */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

/* CTA Note Styling for dark background */
.cta-creative .cta-note {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* If you need to be more specific, use this: */
#get-started .cta-button-container .cta-note {
    color: white !important;
    opacity: 0.9;
    font-size: 0.9rem;
    margin-top: 1rem;
}