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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #F8F3EC;
    color: #4B1D5A;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar with Shrinking Effect */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    transition: padding 0.4s ease;
}

.navbar.scrolled {
    padding: 0.75rem 1rem;
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(248, 243, 236, 0.7) 0%, rgba(192, 112, 128, 0.15) 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 16px rgba(75, 29, 90, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-inner {
    max-width: 1000px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 32px rgba(75, 29, 90, 0.2);
}

/* Logo Shrinking */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo-img-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-logo-img-wrapper {
    width: 40px;
    height: 40px;
}

.navbar-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4B1D5A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Text Fade Out and Shrink */
.navbar-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 200px;
    opacity: 1;
}

.navbar.scrolled .navbar-logo-text-wrapper {
    max-width: 0;
    opacity: 0;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.navbar-tagline {
    font-size: 0.75rem;
    color: #C07080;
    white-space: nowrap;
}

/* Menu Gap Shrinking */
.navbar-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: gap 0.3s ease;
}

.navbar.scrolled .navbar-menu {
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #B07080;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #4B1D5A;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4B1D5A;
}

/* Button Shrinking */
.btn-book-now {
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(75, 29, 90, 0.2);
    white-space: nowrap;
}

.navbar.scrolled .btn-book-now {
    padding: 0.75rem 1.5rem;
}

.btn-book-now:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(75, 29, 90, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #4B1D5A;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobile Menu Dropdown - FIXED */
.mobile-menu {
    display: none;
    width: 100%;
    margin-top: 1rem;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-links {
    background: linear-gradient(135deg, rgba(248, 243, 236, 0.95) 0%, rgba(192, 112, 128, 0.1) 100%);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(75, 29, 90, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 1280px;
    margin: 0 auto;
}

.mobile-nav-link {
    display: block;
    padding: 1rem;
    color: #B07080;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(192, 112, 128, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-link:last-of-type {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #4B1D5A;
    background: rgba(75, 29, 90, 0.05);
    border-radius: 0.5rem;
}

.mobile-book-btn {
    width: 100%;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.mobile-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(75, 29, 90, 0.3);
}

@media (max-width: 768px) {

    .navbar-menu,
    .btn-book-now {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .navbar-logo-text-wrapper {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* Background Elements */
.background-elements {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.float-icon {
    position: absolute;
    opacity: 0.06;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-background-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #F8F3EC, transparent, rgba(192, 112, 128, 0.2));
}

.hero-blob-1 {
    position: absolute;
    top: 5rem;
    right: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(to bottom right, rgba(192, 112, 128, 0.2), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.hero-blob-2 {
    position: absolute;
    bottom: 5rem;
    left: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to top right, rgba(75, 29, 90, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.hero-title h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
}

.hero-role {
    font-size: clamp(1.25rem, 4vw, 1.875rem);
    color: #C07080;
    margin-bottom: 2rem;
}

.hero-subtitle h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #B07080;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    min-width: 200px;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
}

.btn-primary:hover {
    box-shadow: 0 10px 40px rgba(75, 29, 90, 0.3);
    transform: scale(1.05);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #4B1D5A;
    color: #4B1D5A;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    border-color: transparent;
    transform: scale(1.05);
}

/* Stats Section */
.stats-section {
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(192, 112, 128, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.stats-background {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
}

.stats-container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #B07080;
}

/* About Section */
.about-section {
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(75, 29, 90, 0.05), transparent, rgba(192, 112, 128, 0.05));
}

.about-container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.about-heading h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: bold;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #4B1D5A;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(75, 29, 90, 0.1), rgba(192, 112, 128, 0.1));
    z-index: 10;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-blob-1 {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to bottom right, rgba(192, 112, 128, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -10;
}

.about-blob-2 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 10rem;
    height: 10rem;
    background: linear-gradient(to top right, rgba(75, 29, 90, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -10;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(192, 112, 128, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.about-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.about-card p {
    color: #B07080;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-card p:last-of-type {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 5rem 1.5rem;
    position: relative;
    z-index: 1;
    background-color: #F8F3EC;
}

.services-container {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.services-heading h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.services-heading p {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: #B07080;
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    background: #FFFFFF;
    box-shadow: 0 10px 40px rgba(75, 29, 90, 0.15), 0 4px 12px rgba(192, 112, 128, 0.1);
    border: 2px solid rgba(75, 29, 90, 0.4);
    overflow: visible;
    transition: all 0.3s ease;
    z-index: 2;
    min-height: auto;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: 0 20px 50px rgba(75, 29, 90, 0.25);
}

.service-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom left, rgba(192, 112, 128, 0.1), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.service-card p {
    color: #B07080;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

.services-cta {
    text-align: center;
}

/* Experience Section */
.experience-section {
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(75, 29, 90, 0.05) 100%);
    backdrop-filter: blur(10px);
}

.experience-blob-1 {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to bottom left, rgba(75, 29, 90, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.experience-blob-2 {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: linear-gradient(to top right, rgba(192, 112, 128, 0.1), transparent);
    border-radius: 50%;
    filter: blur(60px);
}

.experience-container {
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.experience-content h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
}

.experience-content p {
    font-size: 1.125rem;
    color: #B07080;
    max-width: 48rem;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Page Content Section */
.page-section {
    padding: 8rem 1.5rem 5rem;
    min-height: 50vh;
}

.page-container {
    max-width: 72rem;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 2rem;
    text-align: center;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #B07080;
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #4B1D5A;
    color: #F8F3EC;
    padding: 4rem 1.5rem 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-brand {
        align-items: flex-start;
        text-align: left;
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: span 1;
    }
}

.footer-logo {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #C07080;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #C07080;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.powered-by {
    font-size: 0.875rem;
    color: #B07080;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #C07080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #F8F3EC;
}

.footer-bottom {
    border-top: 1px solid #C07080;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #B07080;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #C07080;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: #F8F3EC;
    color: #4B1D5A;
    transform: scale(1.1);
}

/* Common Page Styles */
.page-content {
    padding-top: 8rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Updated Navbar Styles for New Classes */
.navbar-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: gap 0.3s ease;
}

.navbar.scrolled .navbar-links {
    gap: 1rem;
}

.navbar-links a {
    text-decoration: none;
    color: #B07080;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: #4B1D5A;
}

.navbar-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4B1D5A;
}

.navbar-button {
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(75, 29, 90, 0.2);
    white-space: nowrap;
}

.navbar.scrolled .navbar-button {
    padding: 0.75rem 1.5rem;
}

.navbar-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(75, 29, 90, 0.3);
}

.navbar-logo-text,
.navbar-logo-subtext {
    display: block;
}

.navbar-logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.navbar-logo-subtext {
    font-size: 0.75rem;
    color: #C07080;
    white-space: nowrap;
}

.mobile-menu a,
.mobile-menu button {
    display: block;
    padding: 0.75rem;
    color: #B07080;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-menu a.active {
    color: #4B1D5A;
}

.mobile-menu a:hover {
    color: #4B1D5A;
}

.mobile-menu-button {
    width: 100%;
    background: #4B1D5A;
    color: #F8F3EC;
    padding: 1rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: #C07080;
}

/* Updated Footer Styles */
.footer-brand-image {
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #C07080;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-brand-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-brand-description {
    color: #C07080;
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-powered {
    font-size: 0.875rem;
    color: #B07080;
}

.footer-links-column h4,
.footer-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links-column ul,
.footer-links {
    list-style: none;
}

.footer-links-column li,
.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links-column a {
    color: #C07080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: #F8F3EC;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #B07080;
}

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

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #C07080;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #F8F3EC;
    color: #4B1D5A;
    transform: scale(1.1);
}

/* Services Detail Page */
.services-detail-section {
    padding: 3rem 0;
}

.services-detail-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(192, 112, 128, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    transition: all 0.5s ease;
}

.service-detail-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 50px rgba(75, 29, 90, 0.15);
}

@media (min-width: 768px) {
    .service-detail-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem;
    }
}

.service-detail-left {
    display: flex;
    flex-direction: column;
}

.service-detail-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 0.75rem;
}

.service-detail-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #C07080;
    font-style: italic;
    margin-bottom: 1rem;
}

.service-detail-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
    line-height: 1.7;
}

.service-detail-right {
    display: flex;
    flex-direction: column;
}

.service-features-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
}

.service-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-feature-check {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(75, 29, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #4B1D5A;
}

.service-features-list span {
    color: #B07080;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    margin-top: 5rem;
    background: linear-gradient(to bottom right, #4B1D5A, #C07080);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #F8F3EC;
    color: #4B1D5A;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Products Page */
.product-main-section {
    padding: 3rem 0 5rem;
}

.product-card-main {
    position: relative;
    background: linear-gradient(to bottom right, #4B1D5A, #C07080);
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-card-main {
        padding: 3rem;
    }
}

.product-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.product-card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.product-card-header-text {
    flex: 1;
}

.product-card-title {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.product-card-subtitle {
    opacity: 0.8;
}

.product-card-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 48rem;
    position: relative;
    z-index: 10;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-feature-item {
    display: flex;
    gap: 1rem;
}

.product-feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.product-feature-title {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.product-feature-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

.product-main-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #4B1D5A;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.product-main-button:hover {
    background: #F8F3EC;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.product-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.product-blob-1 {
    bottom: -2.5rem;
    right: -2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.05);
}

.product-blob-2 {
    top: -2.5rem;
    left: -2.5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.05);
}

/* Analysis Section */
.analysis-section {
    padding: 5rem 0;
}

.analysis-header {
    text-align: center;
    margin-bottom: 3rem;
}

.analysis-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.analysis-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
    max-width: 48rem;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .analysis-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.analysis-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(75, 29, 90, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    transition: all 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.analysis-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.analysis-card-description {
    color: #B07080;
    line-height: 1.7;
}

.analysis-cta {
    text-align: center;
}

.analysis-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #4B1D5A;
    color: #F8F3EC;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.analysis-button:hover {
    background: #C07080;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.3);
}

/* Learning Page */
.community-section {
    padding: 3rem 0 5rem;
}

.community-header {
    text-align: center;
    margin-bottom: 3rem;
}

.community-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(75, 29, 90, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #4B1D5A;
}

.community-title {
    font-size: clamp(1.875rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.community-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
}

.community-card-wrapper {
    max-width: 42rem;
    margin: 0 auto;
}

.community-card {
    display: block;
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #4B1D5A;
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .community-card {
        padding: 2rem;
    }
}

.community-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.community-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.community-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(to bottom right, #4B1D5A, #C07080);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.community-card-text {
    flex: 1;
    min-width: 0;
}

.community-card-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.community-card-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #B07080;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.community-card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C07080;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

/* Resources Section */
.resources-section {
    padding: 5rem 0 3rem;
    margin-top: 5rem;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
}

.resources-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(192, 112, 128, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #C07080;
}

.resources-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.resources-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.resource-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(75, 29, 90, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .resource-card {
        padding: 2rem;
    }
}

.resource-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.resource-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.resource-card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(192, 112, 128, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C07080;
}

.resource-card-title-wrapper {
    flex: 1;
    min-width: 0;
}

.resource-card-title {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    font-weight: bold;
    color: #4B1D5A;
}

.resource-card-type {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: #B07080;
}

.resource-card-description {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: #B07080;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.resource-download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #4B1D5A;
    color: #F8F3EC;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.875rem, 2vw, 1rem);
}

.resource-download-button:hover {
    background: #C07080;
    transform: scale(1.05);
}

/* Contact Page */
.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-info-card {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(192, 112, 128, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.contact-info-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(75, 29, 90, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #4B1D5A;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 0.5rem;
}

.contact-info-value {
    color: #B07080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: #4B1D5A;
}

.contact-info-value-plain {
    color: #B07080;
}

/* Contact Form */
.contact-form-section {
    padding: 3rem 0 5rem;
}

.contact-form-wrapper {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(192, 112, 128, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(75, 29, 90, 0.15);
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        padding: 3rem;
    }
}

.contact-form-title {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-form-subtitle {
    color: #B07080;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4B1D5A;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #F8F3EC;
    border: 1px solid rgba(192, 112, 128, 0.3);
    font-family: inherit;
    color: #4B1D5A;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4B1D5A;
    box-shadow: 0 0 0 3px rgba(75, 29, 90, 0.1);
}

.form-textarea {
    resize: none;
    min-height: 150px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    padding: 1rem 2rem;
    border-radius: 9999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-button:hover {
    box-shadow: 0 15px 40px rgba(75, 29, 90, 0.3);
    transform: scale(1.02);
}

/* Book a Call Section */
.book-call-section {
    padding: 5rem 1.5rem;
    text-align: center;
}

.book-call-title {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.book-call-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
    margin-bottom: 2rem;
}

.book-call-button {
    display: inline-block;
    background: linear-gradient(to right, #4B1D5A, #C07080);
    color: #F8F3EC;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.book-call-button:hover {
    box-shadow: 0 15px 40px rgba(75, 29, 90, 0.3);
    transform: scale(1.05);
}

/* About Page Styles */
.about-hero-section {
    padding: 8rem 1.5rem 5rem;
    text-align: center;
}

.about-hero-content {
    max-width: 56rem;
    margin: 0 auto;
}

.about-hero-image {
    position: relative;
    width: 20rem;
    height: 24rem;
    margin: 0 auto 2rem;
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 4px solid #4B1D5A;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image-blob-1 {
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom left, rgba(192, 112, 128, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.about-image-blob-2 {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to top right, rgba(75, 29, 90, 0.3), transparent);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 3.75rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
}

.about-hero-role {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    color: #C07080;
    margin-bottom: 2rem;
}

.about-hero-subtitle {
    font-size: clamp(1.875rem, 5vw, 2.25rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
    line-height: 1.7;
    max-width: 48rem;
    margin: 0 auto;
}

.about-stats-section {
    padding: 5rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-stat-card {
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(192, 112, 128, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.about-stat-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(75, 29, 90, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #4B1D5A;
}

.about-stat-number {
    font-size: clamp(2.5rem, 5vw, 2.5rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    color: #B07080;
}

.about-values-section {
    padding: 5rem 1.5rem;
}

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

.about-values-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.about-values-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: #B07080;
    max-width: 32rem;
    margin: 0 auto;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-value-card {
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(75, 29, 90, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(75, 29, 90, 0.1);
    transition: all 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(75, 29, 90, 0.15);
}

.about-value-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1rem;
}

.about-value-description {
    color: #B07080;
    line-height: 1.7;
}

/* Fix page content padding for non-hero pages */
.page-content {
    padding-top: 6rem;
}

/* Mobile Menu - Solid Background */
@media (max-width: 768px) {
    .mobile-menu {
        background: #F8F3EC;
        border-radius: 1.5rem;
        margin: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(75, 29, 90, 0.2);
        border: 1px solid rgba(192, 112, 128, 0.2);
    }
}

.calendly-embed iframe {
    border-radius: 0.75rem;
}

/* Fix hero sections on non-home pages - remove full height */
.services-hero,
.products-hero,
.learning-hero,
.contact-hero {
    min-height: auto;
    padding: 8rem 1.5rem 3rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: bold;
    color: #4B1D5A;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #B07080;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}