/* Custom CSS for Arlette VIP Consulting */

:root {
    --primary-color: #2c3e50;
    --secondary-color: #f1cc5d;
    --accent-color: #fef8e8;
    --dark-color: #1a252f;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --border-color: #e9ecef;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --soft-blue: #fef8e8;
    --soft-gray: #bdc3c7;
    --professional-green: #16a085;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color)) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

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

.logo-container {
    animation: fadeInDown 1s ease-out;
    margin-top: 2rem;
}

.company-logo {
    max-height: 200px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.slogan {
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1.5s ease-out;
}

/* Professional hero styling */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.cta-buttons {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--professional-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 204, 93, 0.4);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

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

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2.5rem;
    box-shadow: 0 5px 20px rgba(241, 204, 93, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--secondary-color), var(--professional-green));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(241, 204, 93, 0.4);
    background: var(--primary-color);
    color: var(--secondary-color);
}

.service-card:hover .service-icon::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-image-container {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--light-color), white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.founder-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Contact Cards */
.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.contact-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* Social Links */
.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color)) !important;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card, .contact-card {
        margin-bottom: 2rem;
    }
    
    .construction-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-lg {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .h3 {
        font-size: 1.5rem;
    }
    
    .service-card, .contact-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading animation for page */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loader.show {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

/* Services List in About Section */
.services-list {
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.service-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.service-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Team Section */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.team-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
}

.pricing-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-body {
    padding: 2rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Coaching Items */
.coaching-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.coaching-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.coaching-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.coaching-header h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.coaching-price {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.coaching-sessions {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Partners Section */
.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.partner-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-logo img {
    max-height: 200px;
    max-width: 100%;
    object-fit: contain;
}

.solarxpro-logo {
    height: 150px;
    margin-bottom: 1.5rem;
}

.solarxpro-logo img {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
}

.partner-card h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item i {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .coaching-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .coaching-price {
        align-self: flex-end;
    }
    
    .team-card, .partner-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .price {
        font-size: 2rem;
    }
    
    .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-body {
        padding: 1.5rem;
    }
    
    .coaching-item {
        padding: 1rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

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

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--primary-color);
    font-weight: 600;
}

/* Service Detail Cards */
.service-detail-card {
    display: flex;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-detail-card .service-icon {
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-detail-card .service-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Service Detail Content */
.service-detail-content {
    padding: 2rem;
}

.service-detail-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-large-icon {
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.1;
    text-align: center;
    display: block;
}

.service-image {
    text-align: center;
    padding: 2rem;
}

/* Objectives and Themes Lists */
.objectives-list, .coaching-themes, .funding-services {
    margin-top: 2rem;
}

.objective-item, .theme-item, .funding-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.objective-item i, .theme-item i, .funding-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Strategic Services */
.strategic-services {
    margin-top: 2rem;
}

.strategic-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--soft-blue);
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
}

.strategic-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.strategic-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Founder Details */
.founder-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--soft-blue);
    border-radius: 10px;
}

.detail-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.detail-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Founder Image */
.founder-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.founder-photo-large {
    width: 100%;
    height: auto;
    display: block;
}

.founder-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-control, .contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(241, 204, 93, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Hours Cards */
.hours-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.hours-card i {
    font-size: 2.5rem;
}

.hours-card h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Location Info */
.location-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.location-info i {
    font-size: 3rem;
}

.location-info h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Active Navigation */
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

/* Professional Button Styles */
.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 204, 93, 0.4);
}

/* Responsive adjustments for new styles */
@media (max-width: 768px) {
    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-card .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
    
    .strategic-item, .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .strategic-item i, .detail-item i {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .service-large-icon {
        font-size: 5rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .value-item {
        padding: 1rem;
    }
    
    .value-item i {
        font-size: 2rem;
    }
    
    .service-large-icon {
        font-size: 4rem;
    }
}

/* Team Member Cards */
.team-member-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--professional-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.member-placeholder i {
    font-size: 4rem;
}

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.team-member-card:hover .member-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-info {
    padding: 2rem;
}

.member-name {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-expertise h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-expertise ul {
    list-style: none;
    padding: 0;
}

.member-expertise li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.member-expertise li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--professional-green));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Partner Cards Enhanced */
.partner-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--secondary-color);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.partner-name {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.partner-details {
    margin-bottom: 2rem;
}

.partner-details .detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
}

.partner-details .detail-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.partnership-benefits {
    background: var(--soft-blue);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
}

.partnership-benefits h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partnership-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partnership-benefits li {
    padding: 0.3rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--professional-green));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Partnership Criteria */
.partnership-criteria {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.partnership-criteria h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.criteria-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.criteria-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Pricing Footer */
.pricing-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

/* Responsive adjustments for new components */
@media (max-width: 768px) {
    .team-member-card .member-info {
        padding: 1.5rem;
    }
    
    .member-image {
        height: 250px;
    }
    
    .partner-card {
        padding: 2rem;
    }
    
    .partnership-benefits {
        text-align: center;
    }
    
    .partnership-benefits ul {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .member-image {
        height: 200px;
    }
    
    .member-placeholder i {
        font-size: 3rem;
    }
    
    .partner-card {
        padding: 1.5rem;
    }
    
    .value-card, .benefit-card {
        padding: 1.5rem;
    }
}

/* About Section Organization */
.about-section {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--secondary-color);
}

.about-section h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section h3 i {
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 50%;
    padding: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-right: 10px;
}

/* Values Grid for About Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
}

.value-item i {
    margin-right: 0.8rem;
    font-size: 1.3rem;
    color: var(--success-color);
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
}

/* Services Overview */
.services-overview {
    margin-top: 1rem;
}

.service-overview-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
}

.service-overview-item:last-child {
    border-bottom: none;
}

.service-overview-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    width: 25px;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

/* About Image Overlay */
.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.about-image-container:hover .about-overlay {
    transform: translateY(0);
}

.about-overlay .overlay-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-overlay .overlay-content p {
    margin-bottom: 0.3rem;
}

.about-overlay .overlay-content .small {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
    .about-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.5rem;
    }
    
    .value-item {
        font-size: 0.9rem;
    }
    
    .service-overview-item {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .service-overview-item i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-overlay {
        padding: 1.5rem;
    }
    
    .about-overlay .overlay-content h4 {
        font-size: 1.1rem;
    }
}