/* ==========================================
   CUSTOM FONTS
   ========================================== */
@font-face {
    font-family: 'Rosehot';
    src: url('assets/fonts/Rosehot.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mileast';
    src: url('assets/fonts/Mileast.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================
   RESET & VARIABLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-purple: #2D1B4E;
    --soft-lavender: #E8E0F5;
    --warm-cream: #FDF8F0;
    --dusty-rose: #C9A0A0;
    --dark-charcoal: #1E1E2A;
    --white: #FFFFFF;
    --black: #000000;
    --text-dark: #1A1A1A;
    --text-gray: #333333;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(45, 27, 78, 0.08);
    --hover-shadow: 0 20px 40px rgba(45, 27, 78, 0.15);
}

body {
    font-family: 'Mileast', 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-lavender) 100%);
    color: var(--text-dark);
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, .logo, .hero-title, .section-title, .pattern-num, .help-num {
    font-family: 'Rosehot', 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--deep-purple);
}

h1 {
    font-size: clamp(42px, 7vw, 64px);
    line-height: 1.1;
}

h2 {
    font-size: clamp(32px, 5vw, 42px);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--deep-purple);
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--deep-purple);
}

p, li, a, .hero-description, .service-card p, .pattern-card p, .help-card p, .testimonial-card p {
    color: var(--text-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 16px;
    color: var(--deep-purple);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

/* ==========================================
   LUXURY HEADER & NAVIGATION 
   ========================================== */

/* Add padding to body to account for fixed header */
body {
    padding-top: 88px;
}

.site-header {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

/* Header scrolled effect - slightly more opaque on scroll */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.3s ease;
}

/* Scrolled header padding */
.site-header.scrolled .container {
    padding: 14px 24px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .logo-img {
    height: 42px;
}

/* Navigation Menu - Luxury style */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 42px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--deep-purple);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding: 8px 0;
}

/* Luxury underline effect on hover */
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dusty-rose);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--dusty-rose);
}

/* Take Test Button - ORIGINAL STYLE (no hover effect) */
.take-test-btn {
    background: var(--deep-purple);
    color: var(--white) !important;
    padding: 10px 32px;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    min-width: 140px;
    font-weight: 600;
}

.take-test-btn::after {
    display: none;
}

.take-test-btn:hover {
    background: var(--deep-purple);
    color: var(--white) !important;
    transform: none;
}

/* Profile Icon */
.profile-li {
    margin-left: 0;
}

.profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.profile-img:hover {
    transform: scale(1.05);
    border-color: var(--dusty-rose);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--deep-purple);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: var(--dusty-rose);
}

/* ==========================================
   LUXURY HEADER - MEDIUM SCREENS
   ========================================== */
@media (max-width: 1100px) {
    .nav-menu ul {
        gap: 28px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .take-test-btn {
        padding: 6px 18px;
        font-size: 13px;
    }
    
    .profile-img {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 992px) {
    body {
        padding-top: 80px;
    }
    
    .nav-menu ul {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .take-test-btn {
        padding: 5px 14px;
        font-size: 12px;
    }
    
    .profile-img {
        width: 34px;
        height: 34px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .services-grid, .testimonials-grid, .patterns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   LUXURY HEADER - MOBILE SCREENS
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }
    
    .site-header .container {
        padding: 16px 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: inline-block;
        font-size: 15px;
        padding: 8px 0;
    }
    
    .nav-menu a::after {
        bottom: -2px;
    }
    
    .take-test-btn {
        display: inline-block;
        width: auto;
        min-width: 180px;
        padding: 10px 24px;
    }
    
    .profile-img {
        width: 38px;
        height: 38px;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .services-grid, .patterns-grid, .helps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-main {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .rotating-circle {
        width: 180px;
        height: 180px;
        margin-top: 30px;
    }
    
    .circle-center {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
    
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .about-content {
        text-align: center;
    }
    
    .image-border img {
        max-width: 280px;
    }
    
    .awareness-title {
        font-size: 26px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 64px;
    }
    
    .site-header .container {
        padding: 12px 16px;
    }
    
    .logo-img {
        height: 34px;
    }
    
    .take-test-btn {
        min-width: 160px;
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .rotating-circle {
        width: 150px;
        height: 150px;
    }
    
    .circle-center {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .pattern-card {
        padding: 20px 15px;
    }
    
    .pattern-num {
        font-size: 32px;
    }
    
    .pattern-emoji {
        font-size: 28px;
    }
    
    .help-card {
        padding: 20px;
    }
    
    .help-num {
        font-size: 36px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 80px 0;
    background: transparent;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-tagline {
    text-align: center;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--dusty-rose);
    margin-bottom: 40px;
    font-weight: 600;
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero-title {
    color: var(--deep-purple);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--deep-purple);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dusty-rose);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--deep-purple);
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--deep-purple);
    color: var(--white);
    transform: translateY(-3px);
}

/* Rotating Circle */
.hero-right {
    flex: 0 0 auto;
}

.rotating-circle {
    position: relative;
    width: 240px;
    height: 240px;
}

.circle-text {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate 12s linear infinite;
}

.circle-text svg {
    width: 100%;
    height: 100%;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background: var(--deep-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(45, 27, 78, 0.3);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 80px 0;
    background: transparent;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    text-align: center;
}

.image-border-wrapper {
    position: relative;
    display: inline-block;
}

.image-border-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(201, 160, 160, 0.4), transparent 70%);
    border-radius: 40px;
    filter: blur(10px);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 0.6; transform: scale(1.02); }
    100% { opacity: 0.3; transform: scale(0.98); }
}

.image-border {
    position: relative;
    display: inline-block;
    padding: 6px;
    background: linear-gradient(135deg, var(--deep-purple), var(--dusty-rose), #A855F7, var(--deep-purple));
    background-size: 300% 300%;
    border-radius: 35px;
    animation: borderGlow 4s ease infinite;
    box-shadow: 0 25px 45px rgba(45, 27, 78, 0.35);
}

.image-border img {
    display: block;
    max-width: 360px;
    width: 100%;
    border-radius: 30px;
    background: var(--white);
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    color: var(--deep-purple);
    margin-bottom: 10px;
}

.about-tagline {
    font-size: 18px;
    color: var(--dusty-rose);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ==========================================
   SOULSCRIPT INFO SECTION (EYE CATCHING)
   ========================================== */
.soulscript-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B4E 0%, #4a2a7a 50%, #2D1B4E 100%);
    position: relative;
    overflow: hidden;
}

.soulscript-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 160, 160, 0.15) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.soulscript-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C9A0A0, #A855F7, #C9A0A0, transparent);
}

.soulscript-info-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.soulscript-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #C9A0A0, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.soulscript-icon i {
    font-size: 32px;
    color: white;
}

.soulscript-info-card h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
    font-family: 'Rosehot', serif;
    letter-spacing: -0.5px;
}

.soulscript-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.soulscript-info-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 15px;
}

.soulscript-info-card h3 {
    font-size: 24px;
    color: #C9A0A0;
    margin: 35px 0 25px;
    font-family: 'Rosehot', serif;
}

.soulscript-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #C9A0A0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.benefit-card span {
    font-size: 15px;
    color: white;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .soulscript-info {
        padding: 50px 20px;
    }
    
    .soulscript-info-card {
        padding: 30px 20px;
    }
    
    .soulscript-info-card h2 {
        font-size: 28px;
    }
    
    .soulscript-intro {
        font-size: 16px;
    }
    
    .soulscript-info-card p {
        font-size: 14px;
    }
    
    .soulscript-info-card h3 {
        font-size: 20px;
    }
    
    .benefit-card {
        padding: 15px 20px;
        min-width: 140px;
    }
    
    .benefit-icon {
        font-size: 28px;
    }
    
    .benefit-card span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .soulscript-benefits {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .benefit-card {
        width: 100%;
        max-width: 250px;
    }
}

/* ==========================================
   AWARENESS SECTION
   ========================================== */
.awareness-section {
    text-align: center;
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    margin: 20px 0;
    border-radius: 20px;
}

.awareness-title {
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--deep-purple);
}

.awareness-title span {
    color: var(--dusty-rose);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 80px 0;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--dusty-rose);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--deep-purple);
}

.service-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================
   VISION, MISSION & VALUES SECTION
   ========================================== */
.vision-mission-values {
    padding: 80px 0;
    background: linear-gradient(135deg, #FDF8F0 0%, #F0EBE2 100%);
}

.vmv-header {
    text-align: center;
    margin-bottom: 50px;
}

.vmv-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2D1B4E, #4a2a7a);
    color: white;
    padding: 8px 25px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.vmv-card {
    background: white;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.vmv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.1);
}

.vision-card:hover {
    border-color: #C9A0A0;
}

.mission-card:hover {
    border-color: #A855F7;
}

.vmv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2D1B4E, #4a2a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.vmv-icon i {
    font-size: 30px;
    color: white;
}

.vmv-card h3 {
    font-size: 22px;
    color: #2D1B4E;
    margin-bottom: 15px;
    font-family: 'Rosehot', serif;
}

.vmv-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Core Values Section */
.vmv-values {
    margin-top: 20px;
}

.values-title {
    text-align: center;
    font-size: 28px;
    color: #2D1B4E;
    margin-bottom: 40px;
    font-family: 'Rosehot', serif;
    position: relative;
    display: inline-block;
    width: 100%;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C9A0A0, #A855F7);
    border-radius: 3px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.value-item {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(45, 27, 78, 0.08);
    border-color: #C9A0A0;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 18px;
    color: #2D1B4E;
    margin-bottom: 10px;
    font-weight: 600;
}

.value-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .vmv-card {
        padding: 25px 20px;
    }
    
    .vmv-card h3 {
        font-size: 20px;
    }
    
    .values-title {
        font-size: 24px;
    }
    
    .value-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-values {
        padding: 50px 0;
    }
    
    .vmv-icon {
        width: 55px;
        height: 55px;
    }
    
    .vmv-icon i {
        font-size: 24px;
    }
}

/* ==========================================
   PATTERNS SECTION
   ========================================== */
.patterns-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px 0;
}

.patterns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pattern-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.pattern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
    border-color: var(--dusty-rose);
}

.pattern-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--dusty-rose);
    opacity: 0.5;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.pattern-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}

.pattern-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--deep-purple);
}

.pattern-card p {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.4;
}

/* ==========================================
   HOW HELPS SECTION
   ========================================== */
.how-helps-section {
    padding: 80px 0;
    background: transparent;
}

.helps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.help-card {
    background: var(--white);
    padding: 35px;
    border-radius: 24px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.help-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--dusty-rose);
    opacity: 0.4;
    display: inline-block;
    margin-bottom: 15px;
}

.help-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--deep-purple);
}

.help-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ==========================================
   HOW THE JOURNEY WORKS SECTION
   ========================================== */
.journey-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #F0EFEA 100%);
    position: relative;
    overflow: hidden;
}

.journey-works::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 200 200" opacity="0.03"><path fill="%232D1B4E" d="M100,0 L100,200 M0,100 L200,100"/><circle cx="100" cy="100" r="80" fill="none" stroke="%232D1B4E" stroke-width="1"/><circle cx="100" cy="100" r="50" fill="none" stroke="%232D1B4E" stroke-width="1"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.journey-header {
    text-align: center;
    margin-bottom: 50px;
}

.journey-header h2 {
    font-size: 38px;
    color: #2D1B4E;
    font-family: 'Rosehot', serif;
    margin-bottom: 12px;
}

.journey-subtitle {
    font-size: 18px;
    color: #C9A0A0;
    font-weight: 500;
    letter-spacing: 1px;
}

.journey-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, #C9A0A0, #A855F7, #C9A0A0);
    border-radius: 2px;
}

.journey-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.journey-step:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(45, 27, 78, 0.08);
    border-color: #C9A0A0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2D1B4E, #4a2a7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: 'Rosehot', serif;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    color: #2D1B4E;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .journey-works {
        padding: 50px 0;
    }
    
    .journey-header h2 {
        font-size: 28px;
    }
    
    .journey-subtitle {
        font-size: 15px;
    }
    
    .journey-steps::before {
        left: 25px;
    }
    
    .journey-step {
        padding: 20px;
        gap: 15px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 17px;
    }
    
    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .journey-step {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .journey-steps::before {
        display: none;
    }
}

/* ==========================================
   REAL-WORLD FOUNDATION SECTION
   ========================================== */
.foundation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2D1B4E 0%, #4a2a7a 50%, #2D1B4E 100%);
    position: relative;
    overflow: hidden;
}

.foundation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(201, 160, 160, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.foundation-header {
    text-align: center;
    margin-bottom: 50px;
}

.foundation-header h2 {
    font-size: 38px;
    color: white;
    font-family: 'Rosehot', serif;
    margin-bottom: 12px;
}

.foundation-header p {
    font-size: 18px;
    color: #C9A0A0;
    letter-spacing: 0.5px;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Rest of the styles remain the same */
.foundation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.foundation-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.foundation-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #C9A0A0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.foundation-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.foundation-card h3 {
    font-size: 18px;
    color: #C9A0A0;
    margin-bottom: 12px;
    font-weight: 600;
}

.foundation-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .foundation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .foundation-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .foundation-section {
        padding: 50px 0;
    }
    
    .foundation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .foundation-header h2 {
        font-size: 28px;
    }
    
    .foundation-header p {
        font-size: 14px;
    }
    
    .foundation-card {
        padding: 25px 20px;
    }
    
    .foundation-icon {
        font-size: 40px;
    }
    
    .foundation-card h3 {
        font-size: 16px;
    }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin: 20px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.quote-icon {
    color: var(--dusty-rose);
    font-size: 24px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.quote {
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--deep-purple);
}

/* ==========================================
   CONTACT POPUP
   ========================================== */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.glass-popup {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    max-width: 550px;
    width: 90%;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--hover-shadow);
    max-height: 90vh;           
    overflow-y: auto;
    scrollbar-width: none;        
    -ms-overflow-style: none; 
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.popup-close:hover {
    color: var(--dusty-rose);
}

.popup-logo {
    text-align: center;
    margin-bottom: 20px;
}

.popup-logo img {
    height: 50px;
    width: auto;
}

.popup-content h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--black);
}

.contact-info-popup {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: var(--soft-lavender);
    border-radius: 20px;
}

.contact-info-popup p {
    margin: 8px 0;
    color: var(--text-gray);
}

.contact-info-popup i {
    color: var(--dusty-rose);
    width: 28px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-form input,
.popup-form textarea {
    padding: 14px 18px;
    border: 1px solid #E8E0F5;
    border-radius: 14px;
    font-family: 'Mileast', 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
    color: #999;
}

.popup-form button {
    background: var(--deep-purple);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
}


/* ==========================================
   RESPONSIVE (Additional)
   ========================================== */
@media (max-width: 992px) {
    .services-grid, .testimonials-grid, .patterns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .patterns-grid, .helps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
}


/* ==========================================
   LEGAL PAGES (PRIVACY & TERMS)
   ========================================== */
.legal-body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.legal-header {
    background: linear-gradient(135deg, #2D1B4E 0%, #4a2a7a 100%);
    padding: 40px 30px;
    text-align: center;
    color: white;
}

.legal-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.legal-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.legal-header p {
    font-size: 14px;
    opacity: 0.8;
    color: white;
}

.legal-content {
    padding: 40px;
}

.legal-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-section {
    margin-bottom: 30px;
}

.legal-section h2 {
    font-size: 20px;
    color: #2D1B4E;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #C9A0A0;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.legal-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section ul {
    margin: 10px 0 10px 25px;
}

.legal-section li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-contact {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 16px;
    margin-top: 30px;
    text-align: center;
}

.legal-contact p {
    color: #333;
    font-size: 14px;
}

.legal-contact i {
    color: #C9A0A0;
    margin-right: 10px;
}

.legal-footer {
    padding: 20px 40px 40px;
    text-align: center;
    border-top: 1px solid #eee;
}

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #2D1B4E;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.legal-back-btn:hover {
    background: #C9A0A0;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-body {
        padding: 30px 15px;
    }
    
    .legal-header {
        padding: 30px 20px;
    }
    
    .legal-header h1 {
        font-size: 26px;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-section h2 {
        font-size: 18px;
    }
    
    .legal-footer {
        padding: 20px 25px 30px;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 22px;
    }
    
    .legal-content {
        padding: 20px;
    }
    
    .legal-section h2 {
        font-size: 16px;
    }
    
    .legal-section p, .legal-section li {
        font-size: 14px;
    }
}

/* ==========================================
   CUSTOM ALERT SYSTEM - ADD AT END OF FILE
   ========================================== */

/* Toast Container */
.custom-toast-container {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    width: calc(100% - 40px);
    pointer-events: none;
}

/* Individual Toast */
.custom-toast {
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(420px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 5px solid;
    font-family: 'Poppins', sans-serif;
    min-width: 280px;
}

.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.custom-toast.hide {
    transform: translateX(420px);
    opacity: 0;
}

/* Toast Variants */
.custom-toast.success {
    background: #f0fdf4;
    border-left-color: #22c55e;
    color: #14532d;
}

.custom-toast.error {
    background: #fef2f2;
    border-left-color: #ef4444;
    color: #7f1d1d;
}

.custom-toast.warning {
    background: #fffbeb;
    border-left-color: #f59e0b;
    color: #78350f;
}

.custom-toast.info {
    background: #eef2ff;
    border-left-color: #3b82f6;
    color: #1e3a8a;
}

.toast-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.custom-toast.success .toast-icon { color: #22c55e; }
.custom-toast.error .toast-icon { color: #ef4444; }
.custom-toast.warning .toast-icon { color: #f59e0b; }
.custom-toast.info .toast-icon { color: #3b82f6; }

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
}

.toast-message {
    font-size: 12.5px;
    opacity: 0.85;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding: 4px;
    border-radius: 50%;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
}

/* Loading Overlay */
.custom-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}

.custom-loading-overlay.active {
    visibility: visible;
    opacity: 1;
}

.loading-card {
    background: white;
    padding: 30px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.loading-card i {
    font-size: 42px;
    color: #2D1B4E;
    margin-bottom: 15px;
    display: block;
}

.loading-card span {
    font-weight: 500;
    color: #444;
    font-size: 15px;
}

@media (max-width: 550px) {
    .custom-toast-container {
        top: 20px;
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #2D1B4E;
    padding: 50px 20px 35px;
    text-align: center;
}

/* Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.footer-social .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
    overflow: hidden;
}

.footer-social .social-icon:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
}

.footer-social .social-icon svg {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}

.footer-social .social-icon.disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: default;
}

.footer-social .social-icon.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9A0A0;
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

/* Copyright */
.footer-copyright p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 16px 28px;
    }
    .footer-social {
        gap: 12px;
        margin-bottom: 22px;
    }
    .footer-social .social-icon {
        width: 38px;
        height: 38px;
    }
    .footer-social .social-icon svg {
        width: 18px;
        height: 18px;
    }
    .footer-links {
        flex-direction: column;
        gap: 8px;
    }
    .footer-links .separator {
        display: none;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-copyright p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 12px 20px;
    }
    .footer-social {
        gap: 10px;
        margin-bottom: 18px;
    }
    .footer-social .social-icon {
        width: 34px;
        height: 34px;
    }
    .footer-social .social-icon svg {
        width: 16px;
        height: 16px;
    }
    .footer-links a {
        font-size: 12px;
    }
    .footer-copyright p {
        font-size: 11px;
    }
}

/* Testimonial animation */
.testimonial-card {
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

