:root {
    --primary-purple: #907AFF;
    --primary-green: #54DE62;
    --primary-blue: #112E45;
    --dark-blue: #071A2B;
    
    --purple-light: #B5A5FF;
    --purple-lighter: #D4CBFF;
    --purple-lightest: #F0EDFF;
    --purple-dark: #7058E6;
    
    --green-light: #7FE88B;
    --green-lighter: #B3F4BA;
    --green-lightest: #E6FBE9;
    --green-dark: #3BC249;
    
    --blue-medium: #1A4566;
    --blue-light: #2C5D7F;
    --blue-lighter: #E8EEF3;
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #666666;
    --border-color: #e8e8e8;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    
    --accent-gradient-1: linear-gradient(135deg, var(--primary-purple), var(--purple-dark));
    --accent-gradient-2: linear-gradient(135deg, var(--primary-green), var(--green-dark));
    --accent-gradient-3: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    --hero-gradient: linear-gradient(135deg, var(--purple-lightest) 0%, var(--green-lightest) 50%, var(--blue-lighter) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.navbar-brand {
    padding: 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.05);
}

.navbar-brand:hover .brand-name {
    color: var(--primary-purple);
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-purple);
}

.hero-section {
    padding-top: 80px;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(144, 122, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(84, 222, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.schedule-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--accent-gradient-1);
    border: none;
    border-radius: 12px;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(144, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.schedule-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.schedule-btn:hover::before {
    left: 100%;
}

.schedule-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(144, 122, 255, 0.4);
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(84, 222, 98, 0.15), transparent);
    border-radius: 50%;
    z-index: 0;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(17, 46, 69, 0.15);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.benefits-section {
    padding: 5rem 0;
    background: var(--white);
}

.benefit-card {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(144, 122, 255, 0.2);
    border-color: var(--primary-purple);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 20px rgba(144, 122, 255, 0.25);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--accent-gradient-1);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.benefit-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 1.2rem;
    border: 2px solid var(--border-color);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--accent-gradient-2);
    border-radius: 1.2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(84, 222, 98, 0.2);
    border-color: transparent;
}

.feature-icon-wrapper {
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(84, 222, 98, 0.25);
    transition: transform 0.8s ease-in-out;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    transition: transform 0.8s ease-in-out;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.feature-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.why-choose-section {
    padding: 5rem 0;
    background: var(--white);
}

.reason-card {
    padding: 2rem;
    background: linear-gradient(135deg, var(--purple-lightest) 0%, var(--white) 100%);
    border-radius: 1.2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--purple-lighter);
    position: relative;
}

.reason-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, var(--green-lightest) 0%, var(--white) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.reason-card:hover::after {
    opacity: 1;
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(144, 122, 255, 0.15);
    border-color: var(--primary-green);
}

.reason-card > * {
    position: relative;
    z-index: 1;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 18px rgba(17, 46, 69, 0.25);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--accent-gradient-1);
    transform: scale(1.1) rotate(5deg);
}

.reason-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.reason-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.reason-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-section {
    padding: 5rem 0;
    background: var(--accent-gradient-3);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(144, 122, 255, 0.2), transparent);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(84, 222, 98, 0.2), transparent);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.cta-section .btn-light {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
    position: relative;
    z-index: 1;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.footer {
    background: var(--dark-blue);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-green), var(--primary-blue));
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-green);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-email {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-email:hover {
    color: var(--primary-purple);
    text-decoration: underline;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.footer-contact-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.footer-contact-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
    line-height: 1;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.about-hero-section {
    padding-top: 80px;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(144, 122, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(84, 222, 98, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.breadcrumb-text {
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-medium);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-hero-image {
    padding: 2rem;
    position: relative;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(144, 122, 255, 0.1), transparent);
    z-index: 0;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(17, 46, 69, 0.15);
}

.mission-values-section {
    padding: 5rem 0;
    background: var(--white);
}

.mission-card {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 0;
    height: 100%;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(144, 122, 255, 0.15);
    border-color: var(--primary-purple);
}

.mission-icon-header {
    background: linear-gradient(135deg, var(--purple-lightest) 0%, var(--green-lightest) 100%);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-header {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
}

.mission-icon-header i {
    font-size: 3rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon-header i {
    color: var(--white);
    transform: scale(1.1);
}

.mission-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-blue);
}

.mission-card-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0 1.5rem 1.5rem;
}

.values-list li {
    color: var(--text-light);
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li:hover {
    color: var(--primary-blue);
}

.story-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.why-melloo-section {
    padding: 5rem 0;
    background: var(--white);
}

.why-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 1.2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-lightest), var(--green-lightest));
    transition: all 0.4s ease;
    z-index: 0;
}

.why-card:hover::before {
    top: 0;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(144, 122, 255, 0.2);
    border-color: var(--primary-purple);
}

.why-card > * {
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(144, 122, 255, 0.3);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--accent-gradient-3);
    transform: rotateY(180deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.why-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-hero-section {
    padding-top: 120px;
    padding-bottom: 3rem;
    background: var(--hero-gradient);
}

.contact-breadcrumb {
    color: var(--primary-purple);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-info-section {
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(17, 46, 69, 0.1);
    border: 2px solid var(--border-color);
}

.contact-info-item {
    padding: 2.5rem;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gradient-1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-info-item:hover::before {
    transform: scaleY(1);
}

.contact-info-item:hover {
    background: var(--purple-lightest);
}

.contact-info-item:nth-child(2n) {
    border-right: none;
}

.contact-info-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.contact-info-label {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-value {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 500;
}

.contact-info-value a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value a:hover {
    color: var(--primary-purple);
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.2rem;
    box-shadow: 0 8px 30px rgba(17, 46, 69, 0.1);
    border: 2px solid var(--border-color);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.25rem rgba(144, 122, 255, 0.15);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    background: var(--accent-gradient-1);
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(144, 122, 255, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(144, 122, 255, 0.4);
}

.form-message {
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
}

.form-message.success {
    background-color: var(--green-lightest);
    color: var(--green-dark);
    border: 2px solid var(--primary-green);
}

.form-message.error {
    background-color: #ffe8ea;
    color: #c41e3a;
    border: 2px solid #e57373;
}

.contact-cta-section {
    padding: 3rem 0;
    background: var(--white);
}

.contact-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 0.75rem;
}

.btn-outline-primary {
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(144, 122, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-image-container {
        margin-top: 2rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-image {
        margin-top: 2rem;
    }
    
    .story-content {
        font-size: 1rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-item {
        border-right: none;
    }
    
    .contact-info-item:last-child {
        border-bottom: none;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
    }
    
    .contact-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .schedule-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .benefit-card,
    .feature-card,
    .reason-card {
        margin-bottom: 1.5rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-icon,
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i,
    .why-icon i {
        font-size: 2rem;
    }
}

.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--accent-gradient-1);
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-gradient-1);
    opacity: 0.9;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}