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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #4A4A4A;
    background-color: #F0F8FF;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #483D8B;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: #6A5ACD;
    color: white;
    border-color: #6A5ACD;
}

.btn-primary:hover {
    background-color: #483D8B;
    border-color: #483D8B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(106, 90, 205, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #483D8B;
    border-color: #483D8B;
}

.btn-secondary:hover {
    background-color: #483D8B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(72, 61, 139, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(240, 248, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(240, 248, 255, 0.98);
    box-shadow: 0 2px 20px rgba(72, 61, 139, 0.1);
}

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

.nav-logo .logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #4A4A4A;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #483D8B;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #483D8B;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #483D8B;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6E6FA 100%);
    padding-top: 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #483D8B, #9370DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #9370DB;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #4A4A4A;
    line-height: 1.8;
}

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

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(72, 61, 139, 0.2);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-icon {
    width: 30px;
    height: 30px;
    color: #483D8B;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #9370DB;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background-color: white;
}

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

.about-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.about-values {
    display: grid;
    gap: 2rem;
}

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

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.value-text {
    color: #666;
    margin: 0;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.15);
}

/* Classes Section */
.classes {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
}

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

.class-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(72, 61, 139, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 112, 219, 0.1);
}

.class-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(72, 61, 139, 0.2);
}

.class-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.class-icon svg {
    width: 28px;
    height: 28px;
}

.class-title {
    margin-bottom: 1rem;
    color: #483D8B;
}

.class-description {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.class-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.class-duration,
.class-level {
    padding: 0.5rem 1rem;
    background-color: #F0F8FF;
    color: #483D8B;
    border-radius: 20px;
    border: 1px solid rgba(147, 112, 219, 0.2);
}

/* Benefits Section */
.benefits {
    background-color: white;
}

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

.benefits-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.15);
}

.benefits-list {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #483D8B;
}

.benefit-text {
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Teachers Section */
.teachers {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
}

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

.teacher-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.1);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(72, 61, 139, 0.2);
}

.teacher-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.teacher-card:hover .teacher-img {
    transform: scale(1.05);
}

.teacher-info {
    padding: 2rem;
}

.teacher-name {
    color: #483D8B;
    margin-bottom: 0.5rem;
}

.teacher-title {
    color: #9370DB;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.teacher-bio {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.teacher-certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.certification {
    background-color: #F0F8FF;
    color: #483D8B;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(147, 112, 219, 0.2);
}

/* Schedule Section */
.schedule {
    background-color: white;
}

.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.schedule-tab {
    padding: 1rem 2rem;
    background-color: transparent;
    color: #4A4A4A;
    border: 2px solid #E6E6FA;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.schedule-tab:hover,
.schedule-tab.active {
    background-color: #6A5ACD;
    color: white;
    border-color: #6A5ACD;
}

.schedule-content {
    max-width: 800px;
    margin: 0 auto;
}

.schedule-day {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.schedule-day.active {
    display: block;
}

.class-time {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #F8F9FF;
    border-radius: 15px;
    margin-bottom: 1rem;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #9370DB;
}

.class-time:hover {
    background-color: #F0F8FF;
    transform: translateX(5px);
}

.time {
    font-weight: 600;
    color: #483D8B;
    font-size: 1.1rem;
}

.class {
    font-weight: 600;
    color: #4A4A4A;
}

.instructor {
    color: #9370DB;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.1);
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #483D8B;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #9370DB;
    font-size: 0.9rem;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #6A5ACD;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #483D8B;
    transform: scale(1.1);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
.contact {
    background-color: white;
}

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

.studio-image {
    margin-bottom: 2rem;
}

.studio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.15);
}

.contact-details {
    display: grid;
    gap: 2rem;
}

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

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-text h3 {
    color: #483D8B;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-text p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Form Styles */
.form {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #483D8B;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #E6E6FA;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    background-color: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #6A5ACD;
    box-shadow: 0 0 0 3px rgba(106, 90, 205, 0.1);
}

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

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #483D8B 0%, #6A5ACD 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-slogan {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

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

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

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

.footer-copyright {
    margin: 0;
    opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #6A5ACD;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(72, 61, 139, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #483D8B;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(72, 61, 139, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .benefits-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .benefits-image {
        order: 2;
    }
    
    .classes-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .teachers-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(240, 248, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .schedule-tabs {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .schedule-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .class-time {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .class-card {
        padding: 2rem;
    }
    
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item,
    .benefit-item,
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonials-nav {
        gap: 0.5rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 100px;
    background-color: #F0F8FF;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #F8F9FF 0%, #E6E6FA 100%);
    margin-bottom: 3rem;
    border-radius: 20px;
}

.legal-subtitle {
    font-size: 1.3rem;
    color: #9370DB;
    font-weight: 300;
    margin-bottom: 1rem;
}

.legal-date {
    color: #666;
    font-style: italic;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
    padding: 20px 0;
}

.legal-section h2 {
    color: #483D8B;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #E6E6FA;
}

.legal-section h3 {
    color: #9370DB;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #9370DB;
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #483D8B;
}

/* Success Page Styles */
.success-page {
    padding-top: 100px;
    background: linear-gradient(135deg, #F0F8FF 0%, #E6E6FA 100%);
    min-height: 100vh;
}

.success-content {
    text-align: center;
    padding: 4rem 0;
    animation: fadeInUp 1s ease-out;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon svg {
    width: 100px;
    height: 100px;
    animation: checkmarkDraw 2s ease-out;
}

.success-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #483D8B, #9370DB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #9370DB;
    margin-bottom: 2rem;
    font-weight: 400;
}

.success-message {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(72, 61, 139, 0.1);
}

.success-message p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.success-details {
    display: grid;
    gap: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.detail-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
}

.detail-content h3 {
    color: #483D8B;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Next Steps Section */
.next-steps {
    padding: 4rem 0;
    background: white;
    border-radius: 20px;
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.step-card {
    background: linear-gradient(135deg, #F8F9FF 0%, #F0F8FF 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 112, 219, 0.1);
}

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

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9370DB, #6A5ACD);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h3 {
    color: #483D8B;
    margin-bottom: 1rem;
}

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

.step-link {
    color: #9370DB;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-link:hover {
    color: #483D8B;
}

/* Inspiration Section */
.inspiration {
    background: linear-gradient(135deg, #483D8B 0%, #6A5ACD 100%);
    color: white;
    padding: 4rem 0;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.quote-content {
    max-width: 700px;
    margin: 0 auto;
}

.quote-text {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.quote-text::before,
.quote-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
    font-family: 'Cinzel', serif;
}

.quote-text::before {
    top: -1rem;
    left: -2rem;
}

.quote-text::after {
    bottom: -2rem;
    right: -2rem;
}

.quote-author {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
    font-style: normal;
}

/* Animations */
@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    .testimonials-nav,
    .hero-scroll {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
    
    .legal-page,
    .success-page {
        background: white;
    }
    
    .legal-content,
    .success-message {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border-width: 3px;
    }
    
    .btn-secondary {
        border-width: 3px;
    }
    
    .nav-link::after {
        height: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-scroll {
        animation: none;
    }
}