@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #7b52ab;
    --secondary-color: #45a9a5;
    --accent-color: #d84c93;
    --light-color: #f8f5ff;
    --dark-color: #292639;
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    --font-heading: 'Comfortaa', cursive;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 8px rgba(123, 82, 171, 0.3);
}

.primary-btn:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(123, 82, 171, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    display: block;
    width: 80%;
    height: 4px;
    background: var(--gradient-primary);
    position: absolute;
    bottom: -10px;
    left: 10%;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.header {
    background: var(--gradient-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo h1 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
    color: var(--light-color);
    font-size: 0.9rem;
    font-style: italic;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: var(--transition);
}

.main-nav a:hover:after {
    width: 100%;
}

.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5%;
    background-color: #f0f0ff;
    overflow: hidden;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(123, 82, 171, 0.3);
    transform: rotate(3deg);
}

.programs-section {
    padding: 5rem 5%;
    background-color: white;
}

.hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.hexagon-item {
    width: 300px;
    height: 350px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: var(--transition);
}

.hexagon-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: var(--light-color);
    text-align: center;
    transition: var(--transition);
}

.hexagon-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    transition: var(--transition);
}

.hexagon-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.hexagon-content p {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.hexagon-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(123, 82, 171, 0.2);
}

.hexagon-item:hover .hexagon-content img {
    transform: scale(1.1);
}

.benefits-section {
    padding: 5rem 0;
    background-color: #f8f5ff;
    position: relative;
    overflow: hidden;
}

.curved-background {
    position: relative;
    padding: 5rem 5%;
}

.curved-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    clip-path: ellipse(80% 60% at 50% 40%);
    z-index: -1;
}

.benefits-wave {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.benefit-item {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(123, 82, 171, 0.1);
    width: calc(33.333% - 2rem);
    min-width: 300px;
    transition: var(--transition);
}

.benefit-item:nth-child(even) {
    transform: translateY(30px);
}

.benefit-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(123, 82, 171, 0.2);
}

.benefit-item:nth-child(even):hover {
    transform: translateY(20px);
}

.stories-section {
    padding: 5rem 5%;
    background-color: white;
}

.stories-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.story-card {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 40%;
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.2;
    z-index: 1;
    transition: var(--transition);
}

.story-image:hover::before {
    opacity: 0.1;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    flex: 1;
    padding: 1rem;
}

.story-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.story-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--dark-color);
    position: relative;
    padding-left: 1.5rem;
}

.story-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -1rem;
    left: 0;
}

.trainers-section {
    padding: 5rem 5%;
    background-color: #f8f5ff;
    position: relative;
}

.diamond-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.diamond-item {
    width: 250px;
    height: 250px;
    position: relative;
    transform: rotate(45deg);
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(123, 82, 171, 0.1);
    transition: var(--transition);
}

.diamond-content {
    width: 100%;
    height: 100%;
    transform: rotate(-45deg) scale(1.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    transition: var(--transition);
    position: relative;
}

.diamond-content img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.trainer-info {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    transition: var(--transition);
}

.trainer-info h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trainer-info p {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.diamond-item:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(123, 82, 171, 0.2);
}

.diamond-item:hover .trainer-info {
    bottom: 0;
}

.contact-section {
    padding: 5rem 5%;
    background-color: white;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.info-item {
    background-color: #f8f5ff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(123, 82, 171, 0.1);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(123, 82, 171, 0.15);
}

.info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-item p {
    margin-bottom: 0.5rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #f8f5ff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(123, 82, 171, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: white;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(69, 169, 165, 0.2);
}

.footer {
    background: var(--gradient-primary);
    padding: 4rem 5% 2rem;
    color: white;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.footer-nav h3,
.footer-policies h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}

.footer-nav ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a,
.footer-policies a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-nav a:hover,
.footer-policies a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.thankyou-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 5%;
    background: linear-gradient(135deg, rgba(123, 82, 171, 0.05), rgba(69, 169, 165, 0.05));
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.thankyou-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thankyou-container p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.policy-content {
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(123, 82, 171, 0.1);
}

.policy-section {
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

.back-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(123, 82, 171, 0.3);
}

.back-home:hover {
    background: var(--gradient-secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(123, 82, 171, 0.4);
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 2rem 2%;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
        padding-top: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .benefit-item {
        width: calc(50% - 2rem);
    }
    
    .diamond-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .story-card {
        flex-direction: column;
        text-align: center;
    }
    
    .story-card.reverse {
        flex-direction: column;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    .benefit-item:nth-child(even) {
        transform: translateY(0);
    }
    
    .benefit-item:nth-child(even):hover {
        transform: translateY(-10px);
    }
    
    .diamond-item {
        width: 200px;
        height: 200px;
    }
    
    .diamond-content img {
        width: 120px;
        height: 120px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content > div {
        flex-basis: 100%;
        text-align: center;
    }
    
    .footer-nav ul,
    .footer-policies ul {
        align-items: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hexagon-grid {
        gap: 1rem;
    }
    
    .hexagon-item {
        width: 250px;
        height: 300px;
    }
    
    .story-content p {
        padding-left: 0;
    }
    
    .story-content p::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .diamond-grid {
        gap: 1rem;
    }
    
    .diamond-item {
        width: 180px;
        height: 180px;
    }
    
    .diamond-content img {
        width: 100px;
        height: 100px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 375px) {
    .hexagon-item {
        width: 220px;
        height: 260px;
    }
    
    .diamond-item {
        width: 150px;
        height: 150px;
    }
    
    .diamond-content img {
        width: 80px;
        height: 80px;
    }
    
    .trainer-info h3 {
        font-size: 1rem;
    }
    
    .trainer-info p {
        font-size: 0.8rem;
    }
}