:root {
    --primary-color: #7B8BAD;    /* Soft blue */
    --secondary-color: #8E9AAF;  /* Muted lavender-gray */
    --accent-color: #F0F2F6;     /* Light gray */
    --text-color: #2D3748;       /* Soft black */
    --light-bg: #FAFBFC;         /* Barely off-white */
    --highlight: #A8B5D0;        /* Soft lavender */
    --muted: #90A4AE;            /* Muted blue-gray */
    --white: #ffffff;
    --blush: rgba(247, 237, 238, 0.4); /* Super soft pink */
    --sage: rgba(237, 241, 238, 0.4);  /* Super soft sage */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 8px 15px rgba(0,0,0,0.06);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    letter-spacing: 0.2px;
    background-image: 
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M10 0C6.7 0 4 10 4 10C4 10 6.7 20 10 20C13.3 20 16 10 16 10C16 10 13.3 0 10 0Z' fill='%237B8BAD' fill-opacity='0.03'/%3E%3C/svg%3E"),
        linear-gradient(var(--light-bg) 1px, transparent 1px),
        linear-gradient(90deg, var(--light-bg) 1px, transparent 1px);
    background-size: 100px 100px, 50px 50px, 50px 50px;
    background-position: 0 0, -1px -1px, -1px -1px;
    background-attachment: fixed;
    background: 
        linear-gradient(45deg, 
            rgba(123, 139, 173, 0.03) 0%,
            rgba(142, 154, 175, 0.03) 25%,
            rgba(168, 181, 208, 0.03) 50%,
            rgba(142, 154, 175, 0.03) 75%,
            rgba(123, 139, 173, 0.03) 100%
        );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.header {
    position: relative;
    background: var(--white);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-color);
}

.logo-credential {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--primary-color),
        transparent
    );
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="%23e9ecef"/></svg>') repeat;
    opacity: 0.5;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(248, 249, 250, 0.95) 0%,
        rgba(248, 249, 250, 0.8) 20%,
        rgba(248, 249, 250, 0.4) 50%,
        rgba(248, 249, 250, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.hero-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    animation: slideIn 0.8s ease-out 0.6s backwards;
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-content strong {
    font-size: 0.875rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.badge-content span {
    font-size: 1rem;
    color: #3498db;
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@media (max-width: 768px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        max-width: 300px;
        transform: none;
    }

    .hero-image:hover {
        transform: none;
    }

    .hero-image-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .hero-badges {
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        white-space: nowrap;
        letter-spacing: 0;
        line-height: 1.2;
    }
}

.hero-text h1 br {
    display: block;
    content: "";
    margin-top: 0.2em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.9375rem;
    font-weight: 500;
}

.feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
    margin-right: -2rem;
    padding: 1rem;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 80%,
        rgba(0, 0, 0, 0.05)
    );
    z-index: 1;
}

/* Add decorative corners */
.hero-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-color);
    border-radius: 18px;
    opacity: 0.1;
    z-index: 2;
    pointer-events: none;
}

/* Add lotus corner decorations */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 20c-8 12-25 20-25 35s12 25 25 25 25-10 25-25S58 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c0 12-20 20-20 35s10 25 20 25 20-10 20-25S50 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c5 10-10 20-10 35s5 25 10 25 10-10 10-25S45 30 50 20z' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    z-index: 3;
    pointer-events: none;
    transition: all 0.5s ease;
}

.hero-image-wrapper::before {
    top: 0;
    left: 0;
    transform: translate(-30%, -30%) rotate(-45deg);
}

.hero-image-wrapper::after {
    bottom: 0;
    right: 0;
    transform: translate(30%, 30%) rotate(135deg);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: 
        var(--shadow-lg),
        0 0 20px rgba(123, 139, 173, 0.1);
}

.hero-image:hover::after {
    opacity: 0.2;
    border-color: var(--highlight);
}

.hero-image-wrapper:hover::before {
    transform: translate(-25%, -25%) rotate(-30deg);
    opacity: 0.25;
}

.hero-image-wrapper:hover::after {
    transform: translate(25%, 25%) rotate(150deg);
    opacity: 0.25;
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        overflow: hidden;
    }

    .hero-image img {
        height: 450px;
        transform: scale(1.3);
        object-position: center 25%;
        transition: transform 0.5s ease;
    }

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

    .hero-image-wrapper {
        margin: 0 -1rem;
        padding: 0;
    }
}

/* Add a subtle glow effect */
.hero-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color) 0%,
        transparent 40%,
        transparent 60%,
        var(--primary-color) 100%
    );
    border-radius: 18px;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease;
}

.hero-image:hover::before {
    opacity: 0.05;
}

.hero-image-badge {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: rgba(255, 255, 255, 0.97);
    color: var(--primary-color);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    transform: rotate(2deg);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: rotate(2deg) translateY(0);
    }
    50% {
        transform: rotate(2deg) translateY(-5px);
    }
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.4;
}

.badge-content strong {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

.badge-content span {
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Remove the glow effect */
.hero-image-badge::before {
    display: none;
}

@media (max-width: 1024px) {
    .hero-image-badge {
        top: 2rem;
        right: 2rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-badges {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
        flex-wrap: nowrap;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        white-space: nowrap;
        letter-spacing: 0;
        line-height: 1.2;
        flex-shrink: 0;
    }

    .hero-text {
        padding: 0 1rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image-wrapper {
        margin-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0;
        box-shadow: var(--shadow-md);
        z-index: 1000;
        border-top: 1px solid var(--accent-color);
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--accent-color);
        font-size: 1rem;
    }

    .nav-link:hover {
        background: var(--light-bg);
    }

    .nav-button {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
    }

    .mobile-menu-button {
        display: block;
        z-index: 1001;
    }

    .mobile-menu-button span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
        padding: 0.5rem;
    }

    .hero-image img {
        height: 400px;
    }

    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        width: 40px;
        height: 40px;
    }
}

section {
    padding: 8rem 5%;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.section-header h2::before {
    right: 100%;
}

.section-header h2::after {
    left: 100%;
    transform: rotate(180deg);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--accent-color);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blush), var(--sage));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--accent-color);
    transition: border-color 0.3s ease;
}

.service-card:hover .service-features {
    border-color: var(--primary-color);
}

.service-features li {
    font-size: 0.875rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
}

.service-formats {
    margin-top: 6rem;
}

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

.format-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.format-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.format-card p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .format-cards {
        grid-template-columns: 1fr;
    }
}

.testimonials {
    background: var(--light-bg);
    padding: 6rem 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-color),
        transparent
    );
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--white), var(--light-bg));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        var(--shadow-sm),
        inset 1px 1px 1px rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    background: linear-gradient(145deg, var(--white), var(--sage));
}

.testimonial-quote {
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--accent-color);
    padding-top: 1.5rem;
}

.author-info cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--muted);
}

.testimonial-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-cta p {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.section-divider {
    height: 4rem;
    background: linear-gradient(
        to bottom,
        var(--light-bg),
        var(--white)
    );
    position: relative;
}

/* Button Styles */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.button:hover::before {
    transform: translateX(100%);
}

.button-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.button-primary:hover {
    background: var(--highlight);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--accent-color);
}

.button-secondary:hover {
    border-color: var(--primary-color);
    background: var(--accent-color);
    transform: translateY(-2px);
}

.button-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid currentColor;
}

.button-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-cta {
        padding: 1.5rem;
        margin-top: 3rem;
    }
}

.contact {
    background: var(--white);
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(145deg, var(--white), var(--light-bg));
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }

    .contact-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .contact-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    .contact-note {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }

    .button {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    color: var(--white);
}

.contact-link {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--highlight);
}

.contact-note {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--accent-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    text-align: center;
}

.info-card h4 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--muted);
    line-height: 1.6;
}

footer {
    background: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
    color: var(--muted);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .info-card {
        padding: 1rem;
        background: var(--light-bg);
        border-radius: 8px;
        margin-bottom: 0;
    }

    .info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .info-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0;
    }

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

    .contact-card {
        margin-bottom: 0;
    }
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        padding: 0;
        margin: 0 auto;
    }

    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image img {
        transform: none;
        max-height: 400px;
    }

    section {
        padding: 4rem 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 5% 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image {
        max-width: 300px;
    }

    .hero-image img {
        max-height: 300px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

.psychology-today {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.psychology-today::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--blush), var(--sage));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.psychology-today span {
    position: relative;
    z-index: 1;
}

.psychology-today::after {
    content: '→';
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.psychology-today:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    color: var(--text-color);
}

.psychology-today:hover::before {
    opacity: 0.1;
}

.psychology-today:hover::after {
    transform: translateX(5px);
}

/* Particle effect for the hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, var(--blush) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--sage) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 0;
}

/* 3D flip effect for service cards on hover */
.service-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover {
    transform: rotateY(10deg);
    transition: transform 0.5s ease;
}

/* Shimmering text effect for headings */
h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--dark-accent);
    position: relative;
    display: inline-block;
    background: linear-gradient(
        45deg,
        var(--text-color) 0%,
        var(--primary-color) 50%,
        var(--text-color) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s linear infinite;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Enhanced Journey Section Styling */
.journey {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 10%;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom right, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 15%,
        rgba(255, 255, 255, 0.1) 35%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 65%,
        rgba(255, 255, 255, 0.1) 85%,
        transparent 100%
    );
    animation: shimmerBg 8s linear infinite;
}

.journey h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.journey h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
        transparent,
        var(--primary-color),
        var(--secondary-color),
        var(--primary-color),
        transparent
    );
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
}

.step {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(124, 144, 112, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 103, 65, 0.15);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(74, 103, 65, 0.3);
}

.step h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.step p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Connect steps with lines */
@media (min-width: 1024px) {
    .steps::before {
        content: '';
        position: absolute;
        top: 35px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(to right,
            transparent,
            var(--accent-color),
            transparent
        );
        z-index: 0;
    }
}

@keyframes shimmerBg {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--highlight);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.about {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-color),
        transparent
    );
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.about h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-size: 2rem;
    color: var(--text-color);
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--highlight));
    border-radius: 2px;
}

.about p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2px;
}

.about p:last-child {
    margin-bottom: 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--accent-color);
}

.credentials {
    text-align: center;
    margin-top: 2rem;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent-color),
        transparent
    );
}

/* Lotus Flower SVG as background elements */
.lotus-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%237B8BAD'%3E%3Cpath d='M50 20c-5 10-20 20-20 35s10 25 20 25 20-10 20-25S55 30 50 20z' stroke-width='1'/%3E%3Cpath d='M50 20c0 12-20 20-20 35s10 25 20 25 20-10 20-25S50 32 50 20z' stroke-width='1'/%3E%3Cpath d='M50 20c5 10-10 20-10 35s5 25 10 25 10-10 10-25S45 30 50 20z' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

/* Replace background circles with lotus patterns */
.background-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.background-circles::before,
.background-circles::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 10c-10 15-30 25-30 45s15 35 30 35 30-15 30-35S60 25 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3Cpath d='M50 10c0 15-20 25-20 45s10 35 20 35 20-15 20-35S50 25 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3Cpath d='M50 10c10 15-10 25-10 45s5 35 10 35 10-15 10-35S40 25 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    animation: float-slow 20s infinite;
}

.background-circles::before {
    top: 10%;
    left: 5%;
}

.background-circles::after {
    bottom: 10%;
    right: 5%;
    transform: rotate(180deg);
    animation-delay: -10s;
}

/* Section header decorations */
.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30' fill='none'%3E%3Cpath d='M30 0C20 0 12 15 12 15C12 15 20 30 30 30C40 30 48 15 48 15C48 15 40 0 30 0ZM30 25C25 25 17 15 17 15C17 15 25 5 30 5C35 5 43 15 43 15C43 15 35 25 30 25Z' fill='%237B8BAD' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

/* Add lotus corner decorations to cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M70 70c-8-8-15-25-30-25s-25 12-25 25 10 25 25 25 25-12 30-25z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M70 70c-8-8-20-20-35-20s-25 10-25 20 10 20 25 20 25-10 35-20z' stroke='%237B8BAD' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: rotate(0deg);
}

/* Hero section decoration */
.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    top: 20%;
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 10c-15 20-40 30-40 55s20 35 40 35 40-10 40-35S65 30 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3Cpath d='M50 10c0 20-30 30-30 55s15 35 30 35 30-10 30-35S50 30 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3Cpath d='M50 10c15 20-20 30-20 55s10 35 20 35 20-10 20-35S35 30 50 10z' stroke='%237B8BAD' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.07;
    animation: float-slow 30s infinite;
}

/* Contact section decoration */
.contact::before {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 20c-10 15-30 25-30 40s15 30 30 30 30-15 30-30S60 35 50 20z' stroke='%237B8BAD' stroke-width='0.7'/%3E%3Cpath d='M50 20c0 15-20 25-20 40s10 30 20 30 20-15 20-30S50 35 50 20z' stroke='%237B8BAD' stroke-width='0.7'/%3E%3Cpath d='M50 20c10 15-10 25-10 40s5 30 10 30 10-15 10-30S40 35 50 20z' stroke='%237B8BAD' stroke-width='0.7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    transform: translateY(-50%);
}

/* Floating animation for lotus elements */
@keyframes float-slow {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    25% { 
        transform: translate(5px, -5px) rotate(2deg); 
    }
    50% { 
        transform: translate(0, -10px) rotate(-2deg); 
    }
    75% { 
        transform: translate(-5px, -5px) rotate(2deg); 
    }
}

/* Add subtle lotus pattern to sections */
section:nth-child(odd)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 20c-8 12-25 20-25 35s12 25 25 25 25-10 25-25S58 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c0 12-20 20-20 35s10 25 20 25 20-10 20-25S50 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    transform: translateY(-50%);
}

/* Add pulsing decorative elements */
.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30' fill='none'%3E%3Cpath d='M30 0C20 0 12 15 12 15C12 15 20 30 30 30C40 30 48 15 48 15C48 15 40 0 30 0ZM30 25C25 25 17 15 17 15C17 15 25 5 30 5C35 5 43 15 43 15C43 15 35 25 30 25Z' fill='%237B8BAD' fill-opacity='0.1'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

/* Add floating lotus decorations */
.decorative-lotus {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 20c-8 12-25 20-25 35s12 25 25 25 25-10 25-25S58 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c0 12-20 20-20 35s10 25 20 25 20-10 20-25S50 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c5 10-10 20-10 35s5 25 10 25 10-10 10-25S45 30 50 20z' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Add decorative lotus elements to sections */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.2;
}

/* Add the decorative lotus elements to specific sections */
.about::after,
.services::after,
.testimonials::after,
.contact::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none'%3E%3Cpath d='M50 20c-8 12-25 20-25 35s12 25 25 25 25-10 25-25S58 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3Cpath d='M50 20c0 12-20 20-20 35s10 25 20 25 20-10 20-25S50 32 50 20z' stroke='%237B8BAD' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    animation: fadeInOut 8s ease-in-out infinite;
    pointer-events: none;
}

.about::after { right: -50px; top: 20%; animation-delay: 0s; }
.services::after { left: -50px; top: 40%; animation-delay: 2s; }
.testimonials::after { right: -50px; top: 60%; animation-delay: 4s; }
.contact::after { left: -50px; top: 80%; animation-delay: 6s; }

/* Add subtle gradient borders to cards */
.service-card,
.testimonial-card,
.contact-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.testimonial-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        var(--primary-color),
        var(--secondary-color),
        var(--highlight),
        var(--secondary-color),
        var(--primary-color)
    );
    z-index: -1;
    opacity: 0.1;
    border-radius: inherit;
    animation: borderGradient 4s linear infinite;
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.7; }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 0.07; transform: translateY(-10px); }
}

@keyframes borderGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Add gradient text effect to headings */
h2 {
    position: relative;
    background: linear-gradient(
        45deg,
        var(--text-color) 0%,
        var(--primary-color) 50%,
        var(--text-color) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 8s linear infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add subtle pulsing glow to buttons */
.button {
    position: relative;
    overflow: hidden;
}

.button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%
    );
    opacity: 0;
    transform: scale(0.5);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about::after,
    .services::after,
    .testimonials::after,
    .contact::after {
        width: 100px;
        height: 100px;
    }
    
    .section-header::before {
        width: 40px;
        height: 20px;
    }
}

.session-info {
    background: var(--light-bg);
    padding: 6rem 0;
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--primary-color);
    color: var(--white);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.info-list li:last-child {
    margin-bottom: 0;
}

/* Style nested list items differently */
.info-list li li {
    margin-left: 1rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.info-note {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    border: 1px solid var(--accent-color);
}

.info-note p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-note p:last-child {
    margin-bottom: 0;
}

/* Add subtle decorative elements */
.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        var(--secondary-color)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 0.1;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-note {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

/* Mobile Navigation Styles */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    z-index: 1000;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Testimonial Slider */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        margin: 0 -1rem;
        padding: 0.5rem 1rem;
        scroll-behavior: smooth;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        margin: 0;
        transform: none;
        transition: all 0.3s ease;
        position: relative;
    }

    /* Add a subtle gradient to indicate more content */
    .testimonial-grid::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 3rem;
        background: linear-gradient(to right, transparent, var(--light-bg));
        pointer-events: none;
        z-index: 2;
    }

    /* Add subtle animation to hint at scrolling */
    @keyframes peekNext {
        0% { transform: translateX(0); }
        75% { transform: translateX(-0.5rem); }
        100% { transform: translateX(0); }
    }

    .testimonial-grid:not(:hover):not(:focus-within) {
        animation: peekNext 2s ease-in-out infinite;
    }

    /* Update dots styling */
    .testimonial-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }

    .testimonial-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--accent-color);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .testimonial-dot.active {
        background: var(--primary-color);
        transform: scale(1.2);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 6rem 1rem 4rem;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .service-features {
        gap: 0.5rem;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .info-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .info-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .info-list {
        gap: 0.5rem;
    }

    .info-list li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }

    .format-card {
        padding: 1.25rem;
    }

    .format-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .format-card p {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 1.5rem;
        margin: 0 0.75rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .testimonial-author cite {
        font-size: 0.9rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .contact-card p {
        font-size: 0.95rem;
    }

    .contact-link {
        font-size: 0.95rem;
    }

    .contact-note {
        font-size: 0.85rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-credential {
        font-size: 0.7rem;
    }

    .nav-links.active {
        gap: 1rem;
    }

    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--accent-color);
    }

    .nav-button {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        padding: 7rem 2rem 5rem;
    }

    .container {
        padding: 0 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .nav-link:hover::after {
        transform: none;
    }

    .service-card:hover {
        transform: none;
    }

    .button:hover {
        transform: none;
    }
}

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

.about-text {
    padding-left: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-2deg);
    transition: all 0.5s ease;
    max-width: 300px;
}

.coffee-photo {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgba(0, 0, 0, 0.1)
    );
    z-index: 1;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.1;
    z-index: 2;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(123, 139, 173, 0.1);
}

.about-image:hover .coffee-photo {
    transform: scale(1.05);
}

/* Mobile responsiveness for about section */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-left: 0;
        order: 2;
    }

    .about-image {
        max-width: 250px;
        margin: 0 auto;
        transform: none;
        order: 1;
    }

    .about-image:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100vw;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0;
        overflow: hidden;
    }

    .hero-image {
        border-radius: 0;
        transform: none;
        box-shadow: none;
    }

    .hero-image img {
        height: 450px;
        transform: scale(1.3);
        object-position: center 25%;
        transition: transform 0.5s ease;
    }

    .hero-image:hover {
        transform: none;
    }

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

    .hero-image::after {
        border-radius: 0;
    }

    .hero-image-badge {
        right: 1rem;
        top: 1rem;
        padding: 0.75rem 1.25rem;
        transform: none;
    }
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: var(--shadow-sm);
    }

    .nav-container {
        padding: 0.75rem 1rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--accent-color);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid var(--accent-color);
        font-size: 1.1rem;
        color: var(--text-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
    }

    .nav-link::after {
        content: '→';
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: var(--light-bg);
        color: var(--primary-color);
        padding-left: 2rem;
    }

    .nav-link:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-button {
        margin: 1rem 1.5rem;
        width: calc(100% - 3rem);
        text-align: center;
        background: var(--primary-color);
        color: var(--white);
        border: none;
        padding: 1rem;
        border-radius: 8px;
        font-weight: 500;
    }

    .nav-button:hover {
        background: var(--highlight);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
}

/* Add mobile-specific hero badge hiding */
@media (max-width: 768px) {
    .hero-badges {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7.5rem 0 3rem;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%,
            rgba(247, 237, 238, 0.3) 50%,
            rgba(237, 241, 238, 0.3) 100%
        );
    }

    .hero-text h1 {
        font-size: 1.4rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        font-weight: 400;
        letter-spacing: -0.01em;
        color: var(--text-color);
        font-family: 'Playfair Display', serif;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .hero-image {
        order: 0;
        max-width: 260px;
        margin: 0 auto;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .hero-image img {
        height: 300px;
        object-position: center 20%;
        border-radius: 20px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
        color: var(--muted);
        font-weight: 300;
        letter-spacing: 0.01em;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .button {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
        border-radius: 100px;
        letter-spacing: 0.02em;
    }

    /* Add decorative elements */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            rgba(123, 139, 173, 0.1),
            transparent
        );
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg,
            transparent,
            rgba(123, 139, 173, 0.1),
            transparent
        );
    }

    /* Add subtle floating animation to the image */
    @keyframes gentleFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }

    .hero-image {
        animation: gentleFloat 4s ease-in-out infinite;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
        margin: 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .services {
        padding: 3rem 1rem;
    }

    .testimonials {
        padding: 3rem 1rem;
    }

    .session-info {
        padding: 3rem 1rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .journey {
        padding: 3rem 1rem;
    }

    .section-divider {
        height: 2rem;
    }

    .info-grid {
        margin: 2rem 0;
    }

    .services-grid {
        margin: 2rem 0;
    }

    .testimonial-grid {
        margin: 2rem 0;
    }

    .contact-grid {
        margin: 2rem 0;
    }

    .contact-info {
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .testimonial-cta {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}