* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-purple: #4A148C;
    --silver: #BDBDBD;
    --white: #FFFFFF;
    --dark-purple: #3A0D6B;
    --light-purple: #6A1B9A;
    --text-dark: #333333;
    --text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    hyphens: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(74, 20, 140, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    transition: transform 0.3s ease;
}

.logo-link:hover img {
    transform: scale(1.1);
}

.burger-menu {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--royal-purple);
    cursor: pointer;
    z-index: 1001;
}

.nav-menu {
    display: none;
    list-style: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 10px rgba(74, 20, 140, 0.1);
    padding: 20px 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    margin: 10px 0;
}

.nav-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--royal-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--royal-purple);
    color: var(--white);
    padding-left: 30px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
    animation: parallax 20s linear infinite;
}

@keyframes parallax {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}


.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 20, 140, 0.4);
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--royal-purple);
}

.btn-primary:hover {
    background: var(--silver);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-purple);
    border-color: var(--royal-purple);
}

.btn-secondary:hover {
    background: var(--royal-purple);
    color: var(--white);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2rem;
    color: var(--royal-purple);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--silver);
}

.how-it-works,
.packages-preview,
.why-hire-pro,
.client-transformations,
.faq {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(74, 20, 140, 0.1);
    text-align: center;
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card.visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.2);
}

.step-icon {
    font-size: 3rem;
    color: var(--royal-purple);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--royal-purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.slide-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: scale(1.05);
}

.package-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.package-desc {
    margin-bottom: 25px;
    opacity: 0.9;
}

.package-card .btn-secondary {
    background: var(--white);
    color: var(--royal-purple);
    border-color: var(--white);
    margin-top: 15px;
}

.package-card .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--royal-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.why-hire-pro {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05) 0%, rgba(189, 189, 189, 0.05) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(74, 20, 140, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--royal-purple);
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: var(--royal-purple);
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(74, 20, 140, 0.1);
    border-left: 4px solid var(--royal-purple);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
}

.testimonial-author {
    color: var(--royal-purple);
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(74, 20, 140, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--royal-purple);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(74, 20, 140, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.page-hero {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.packages-detail {
    padding: 80px 0;
}

.package-detail-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(74, 20, 140, 0.15);
    margin-bottom: 40px;
    overflow: hidden;
}

.package-header {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.package-icon {
    font-size: 2.5rem;
}

.package-header h2 {
    font-size: 2rem;
}

.package-body {
    padding: 40px;
}

.package-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-features i {
    color: var(--royal-purple);
}

.package-note {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
}

.cta-section {
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--dark-purple) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lookbook {
    padding: 80px 0;
}

.lookbook-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--royal-purple);
    color: var(--royal-purple);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--royal-purple);
    color: var(--white);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.lookbook-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(74, 20, 140, 0.1);
    transition: transform 0.3s ease;
}

.lookbook-item:hover {
    transform: translateY(-5px);
}

.lookbook-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--royal-purple) 0%, var(--light-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lookbook-placeholder {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.7;
}

.lookbook-info {
    padding: 20px;
}

.lookbook-info h3 {
    color: var(--royal-purple);
    margin-bottom: 10px;
}

.lookbook-info p {
    color: var(--text-light);
}

.portfolio-cta {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.05) 0%, rgba(189, 189, 189, 0.05) 100%);
    padding: 80px 0;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2 {
    color: var(--royal-purple);
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--royal-purple);
    margin-top: 5px;
}

.contact-item h3 {
    color: var(--royal-purple);
    margin-bottom: 10px;
}

.contact-item a {
    color: var(--royal-purple);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--royal-purple);
    text-decoration: none;
    font-weight: 500;
}

.map-link:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(74, 20, 140, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--royal-purple);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--silver);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-purple);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-form button[type="submit"],
.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    text-align: center;
    display: block;
    background: var(--royal-purple);
    color: var(--white);
    border: 2px solid var(--royal-purple);
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
}

.contact-form button[type="submit"]:hover,
.contact-form .btn-primary:hover {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

.map-container {
    margin-top: 60px;
}

.map-container h2 {
    color: var(--royal-purple);
    text-align: center;
    margin-bottom: 30px;
}

.map-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(74, 20, 140, 0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.thankyou-section {
    padding: 120px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--royal-purple);
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thankyou-content h1 {
    color: var(--royal-purple);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thankyou-submessage {
    color: var(--text-light);
    margin-bottom: 40px;
}

.thankyou-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.thankyou-actions .btn-primary {
    background: var(--royal-purple);
    color: var(--white);
    border: 2px solid var(--royal-purple);
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thankyou-actions .btn-primary:hover {
    background: var(--dark-purple);
    border-color: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.3);
}

.thankyou-actions .btn-secondary {
    background: transparent;
    color: var(--royal-purple);
    border: 2px solid var(--royal-purple);
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thankyou-actions .btn-secondary:hover {
    background: var(--royal-purple);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 20, 140, 0.2);
}

.policy-content {
    padding: 80px 0;
}

.policy-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(74, 20, 140, 0.15);
}

.policy-text h2 {
    color: var(--royal-purple);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.75rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    color: var(--royal-purple);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.policy-text p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-text ul {
    margin-left: 30px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-text li {
    margin-bottom: 8px;
    line-height: 1.8;
}

.footer {
    background: var(--royal-purple);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--silver);
}

.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background: inherit;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    z-index: 0;
}

.parallax > *:not(.parallax-bg) {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) {
    .burger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        box-shadow: none;
        padding: 0;
        gap: 20px;
    }

    .nav-menu a {
        padding: 5px 15px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
        color: var(--royal-purple);
        padding-left: 15px;
        border-bottom: 2px solid var(--royal-purple);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

