/*
Theme Name: CLAS Leadership
Theme URI: https://leadership-ascendancy.com
Description: Carter Leadership Ascendancy Solutions Custom Theme
Author: Dr. Kimberly Carter
Version: 1.0
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Brand Colors - Matching Phoenix Logo */
:root {
    --primary-cyan: #00d4ff;
    --primary-blue: #0099ff;
    --primary-purple: #8b5cf6;
    --dark-purple: #6d28d9;
    --accent-magenta: #c026d3;
    --dark-navy: #1e293b;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #666;
    --gold-accent: #d4af37;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

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

.logo-text h2 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.company-name {
    color: var(--text-medium);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

.maxwell-logo-header {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h2 {
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-purple);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #ddd6fe 100%);
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-text h2 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.hero-image {
    flex: 1;
    padding: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Hero Pain Points */
.hero-pain-points {
    margin: 1.5rem 0;
    padding: 0;
}

.hero-pain-points p {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: var(--primary-purple);
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3e7ed 100%);
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-magnet-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guide-mockup {
    perspective: 1000px;
}

.guide-cover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    width: 350px;
    height: 450px;
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: rotateY(-10deg);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.guide-cover:hover {
    transform: rotateY(0deg);
}

.guide-cover h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.guide-cover p {
    font-size: 1.25rem;
    color: #d4af37;
    font-weight: 600;
    line-height: 1.4;
}

.guide-badge {
    margin-top: auto;
    text-align: center;
}

.guide-badge img {
    height: 80px;
    width: auto;
}

.lead-magnet-form-container h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.lead-magnet-subtitle {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lead-magnet-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1rem;
    color: #333;
}

.benefit-icon {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.lead-magnet-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.lead-magnet-form input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.lead-magnet-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.lead-magnet-form button {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.lead-magnet-success {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.lead-magnet-success h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead-magnet-success p {
    font-size: 1.1rem;
    color: #555;
    margin: 1rem 0;
}

.lead-magnet-success .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

/* Leadership Challenges Section */
.challenges {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
    color: white;
}

.challenges h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.challenges-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

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

.challenge-card {
    background: white;
    color: #333;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.challenge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.challenge-card p {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left;
}

.challenge-impact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    color: #666;
    border-left: 4px solid var(--primary-purple);
    text-align: left;
    font-size: 0.9rem;
}

.challenges-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.challenges-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.challenges-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

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

.about-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.about-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.about-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    align-items: start;
}

.service-column {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.service-image img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
}

.service-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.service-content li:before {
    content: "•";
    color: #ffd700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-content strong {
    color: #ffd700;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.contact h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-container input {
    margin-right: 10px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-magenta) 100%);
    transform: translateY(-2px);
}

.recaptcha-text {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #666;
}

.recaptcha-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ccc;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: #d4af37;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #d4af37;
    color: #1a1a1a;
    transform: translateY(-3px);
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom a {
    color: #d4af37;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Maxwell Leadership Badge Styles */
.maxwell-badge-nav {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.maxwell-badge-nav img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.maxwell-badge-nav img:hover {
    transform: scale(1.05);
}

/* About Section - Professional Photo & Credentials */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    align-items: start;
}

.about-photo {
    text-align: center;
}

.professional-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
}

.credentials {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.credentials p {
    margin: 0.5rem 0;
    color: #333;
}

.credentials strong {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.credentials-badge {
    height: 80px;
    width: auto;
    margin-top: 1rem;
}

.maxwell-certification-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.maxwell-badge-large {
    height: 120px;
    width: auto;
    flex-shrink: 0;
}

.certification-text {
    text-align: left;
}

.certification-text h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.certification-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-maxwell-badge {
    margin: 1rem 0;
}

.footer-maxwell-badge img {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo-text h2 {
        font-size: 1.5rem;
    }
    
    .company-name {
        font-size: 0.5rem;
    }
    
    .maxwell-logo-header {
        height: 45px;
    }
    
    .maxwell-badge-nav {
        display: none;
    }
    
    .lead-magnet-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guide-cover {
        width: 280px;
        height: 360px;
        padding: 2rem 1.5rem;
        transform: rotateY(0deg);
    }
    
    .guide-cover h3 {
        font-size: 1.5rem;
    }
    
    .guide-cover p {
        font-size: 1rem;
    }
    
    .guide-badge img {
        height: 60px;
    }
    
    .lead-magnet-form-container h2 {
        font-size: 1.8rem;
    }
    
    .lead-magnet-subtitle {
        font-size: 1rem;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .professional-photo {
        max-width: 280px;
    }
    
    .credentials-badge {
        height: 60px;
    }
    
    .maxwell-certification-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .maxwell-badge-large {
        height: 100px;
    }
    
    .certification-text {
        text-align: center;
    }
    
    .certification-text h3 {
        font-size: 1.25rem;
    }
    
    .certification-text p {
        font-size: 0.9rem;
    }
    
    .footer-maxwell-badge img {
        height: 60px;
    }
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-accept {
    padding: 10px 20px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--primary-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

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

    .services-grid {
        gap: 2rem;
    }

    .service-column {
        min-width: auto;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Schedule Section Styles */
.schedule {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.schedule h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.schedule-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

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

.schedule-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.schedule-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.schedule-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.schedule-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.schedule-btn:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.calendly-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calendly-container h3 {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Hero Buttons Styles */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

/* Calendly Placeholder Styles */
.calendly-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed var(--primary-purple);
    border-radius: 10px;
    padding: 3rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content h4 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.placeholder-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.placeholder-steps {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.placeholder-steps p {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.placeholder-steps ol,
.placeholder-steps ul {
    margin: 0.5rem 0 0 1rem;
    color: #333;
}

.placeholder-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.placeholder-steps li strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.placeholder-content a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
}

.placeholder-content a:hover {
    color: var(--primary-purple);
}

/* Responsive adjustments for schedule section */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .schedule-options {
        grid-template-columns: 1fr;
    }
    
    .calendly-container {
        padding: 1rem;
    }
    
    .schedule h2 {
        font-size: 2rem;
    }
    
    .calendly-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .placeholder-content h4 {
        font-size: 1.5rem;
    }
    
    .placeholder-steps {
        padding: 1rem;
    }
    
    .challenges h2 {
        font-size: 2rem;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .challenge-card {
        padding: 1.5rem;
    }
    
    .challenges-cta {
        padding: 2rem 1rem;
    }
    
    .hero-pain-points p {
        font-size: 0.9rem;
    }
}