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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
}

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

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

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(to right, #2563eb, #0d9488);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #f0fdfa 100%);
    padding: 2rem 0 7rem;
    position: relative;
}

@media (min-width: 1024px) {
    .hero {
        padding: 7rem 0;
    }
}

/* Enrollment Sticker */
.enrollment-sticker {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
    transform: rotate(3deg);
    animation: pulse 2s infinite;
}

.sticker-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticker-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticker-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sticker-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fef3c7;
}

.sticker-description {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

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

/* Mobile responsiveness for sticker */
@media (max-width: 768px) {
    .enrollment-sticker {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        transform: rotate(2deg);
    }
    
    .sticker-content {
        gap: 0.5rem;
    }
    
    .sticker-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .sticker-number {
        font-size: 1.25rem;
    }
    
    .sticker-description {
        font-size: 0.625rem;
    }
}

/* Enrollment Sticker */
.enrollment-sticker {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
    transform: rotate(3deg);
    animation: pulse 2s infinite;
}

.sticker-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticker-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sticker-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sticker-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fef3c7;
}

.sticker-description {
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
}

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

/* Mobile responsiveness for sticker */
@media (max-width: 768px) {
    .enrollment-sticker {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        transform: rotate(2deg);
    }
    
    .sticker-content {
        gap: 0.5rem;
    }
    
    .sticker-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .sticker-number {
        font-size: 1.25rem;
    }
    
    .sticker-description {
        font-size: 0.625rem;
    }
}

/* Enrollment Form Section */
.enrollment-form-section {
    padding: 3rem 0;
    background: white;
    border-radius: 1rem;
    margin: 2rem 0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.enrollment-form-container {
    max-width: 48rem;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .form-title {
        font-size: 2.25rem;
    }
}

.form-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.enrollment-form {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-footer {
    text-align: center;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #2563eb, #0d9488);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.form-submit-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.form-submit-btn i {
    transition: transform 0.2s ease;
}

.form-submit-btn:hover i {
    transform: translateX(4px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 500;
}

.form-disclaimer strong {
    color: #dc2626;
    font-weight: 600;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #2563eb, #0d9488);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.feature-icon.green {
    color: #059669;
}

.feature-icon.blue {
    color: #2563eb;
}

.feature-icon.teal {
    color: #0d9488;
}

.feature-text {
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, transparent 100%);
    border-radius: 1rem;
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-button.primary {
    background: linear-gradient(to right, #2563eb, #0d9488);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(to right, #1d4ed8, #0f766e);
}

.cta-button.secondary {
    background: white;
    color: #1f2937;
}

.cta-button.secondary:hover {
    background: #f9fafb;
}

.cta-button i {
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Lead Form Section */
.lead-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e5e7eb;
}

.lead-form-container {
    display: grid;
    gap: 3rem;
    align-items: start;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .lead-form-container {
        grid-template-columns: 1fr 1fr;
    }
}

.form-content {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

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

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 1.75rem;
    }
}

.form-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.lead-form .form-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

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

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

.lead-form .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.lead-form .form-input {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    background: white;
    transition: all 0.2s ease;
}

.lead-form .form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.lead-form .form-input::placeholder {
    color: #9ca3af;
}

.lead-form .form-footer {
    text-align: center;
}

.lead-form .form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #2563eb, #0d9488);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.lead-form .form-submit-btn:hover {
    background: linear-gradient(to right, #1d4ed8, #0f766e);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.lead-form .form-submit-btn i {
    transition: transform 0.2s ease;
}

.lead-form .form-submit-btn:hover i {
    transform: translateX(4px);
}

.lead-form .form-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
    font-weight: 500;
}

/* Form Benefits */
.form-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    height: fit-content;
}

.benefits-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.benefit-item span {
    color: #6b7280;
    line-height: 1.5;
    font-size: 0.875rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    gap: 1rem;
}

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

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.card-icon.blue {
    color: #2563eb;
}

.card-icon.teal {
    color: #0d9488;
}

.card-icon.purple {
    color: #7c3aed;
}

.card-icon.orange {
    color: #ea580c;
}

.card-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card-description {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Challenges Section */
.challenges-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.challenges-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.challenge-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.challenge-card.diagnostic {
    border-left-color: #dc2626;
}

.challenge-card.access {
    border-left-color: #ea580c;
}

.challenge-card.advanced {
    border-left-color: #d97706;
}

.challenge-card.therapy {
    border-left-color: #7c3aed;
}

.challenge-card.transplant {
    border-left-color: #2563eb;
}

.challenge-card.disparity {
    border-left-color: #0d9488;
}

.challenge-card.cost {
    border-left-color: #059669;
}

.challenge-card.quality {
    border-left-color: #be185d;
}

.challenge-card.education {
    border-left-color: #7c2d12;
}

.challenge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.challenge-card.diagnostic .challenge-icon {
    background: #dc2626;
}

.challenge-card.access .challenge-icon {
    background: #ea580c;
}

.challenge-card.advanced .challenge-icon {
    background: #d97706;
}

.challenge-card.therapy .challenge-icon {
    background: #7c3aed;
}

.challenge-card.transplant .challenge-icon {
    background: #2563eb;
}

.challenge-card.disparity .challenge-icon {
    background: #0d9488;
}

.challenge-card.cost .challenge-icon {
    background: #059669;
}

.challenge-card.quality .challenge-icon {
    background: #be185d;
}

.challenge-card.education .challenge-icon {
    background: #7c2d12;
}

.challenge-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.challenge-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

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

.cta-content-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 48rem;
    margin: 0 auto;
}

.cta-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.cta-box-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
    background: white;
}

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

.section-title-large {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .section-title-large {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.course-card {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s ease;
}

.course-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-card.blue {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.course-card.teal {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

.course-card.purple {
    background: linear-gradient(135deg, #e9d5ff, #ddd6fe);
}

.course-card.orange {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.course-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.course-card.blue .course-icon {
    background: #2563eb;
}

.course-card.teal .course-icon {
    background: #0d9488;
}

.course-card.purple .course-icon {
    background: #7c3aed;
}

.course-card.orange .course-icon {
    background: #ea580c;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.course-description {
    color: #6b7280;
}

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

/* Final CTA Section */
/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(to right, #1f2937, #1e40af, #0d9488);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }
}

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

.cta-benefits p {
    font-size: 0.875rem;
    color: #d1d5db;
    margin: 0.25rem 0;
}

.cta-image {
    padding-top: 2rem;
}

.cta-image img {
    width: 100%;
    max-width: 32rem;
    height: 300px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 0.9;
    margin: 0 auto;
    display: block;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

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

/* Content Attribution Styles */
.content-attribution {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.attribution-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.attribution-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.attribution-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid #2563eb;
}

.attribution-item strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.attribution-item p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.attribution-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    line-height: 1.5;
    font-style: italic;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin: 0;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-btn {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: white;
    font-size: 1.25rem;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.email-btn {
    background: #2563eb;
}

.email-btn:hover {
    background: #1d4ed8;
}

/* Floating buttons animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.floating-btn {
    animation: float 3s ease-in-out infinite;
}

/* Mobile responsiveness for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title-large {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .header-info {
        display: none;
    }
}