* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Import base styles from main stylesheet */
/* Top Header Bar */
.top-header {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 12px 0;
    font-size: 14px;
}

.top-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Main Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    border-top: #03bef7 3px solid;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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: 10px;
}

.logo img {
    width: 100px;
    height: 70px;
    padding: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.active {
    color: #4a90e2 !important;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #4a90e2;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.dropdown-arrow::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.nav-toggle .bar {
    width: 28px;
    height: 3px;
    background: #357abd;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}


/* Schedule Hero Section */
.schedule-hero {
    position: relative;
    min-height: 400px;
    padding: 100px 0 80px 30px;
    background: url('medics.png') center center/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 1;
    overflow: hidden;
}

.schedule-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(44, 65, 104, 0.66); /* semi-transparent gray overlay */
    z-index: 1;
}

.schedule-hero-content {
     color: #fff;
    position: relative;
    font-family: 'Times New Roman', Times, serif;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.34,1.56,.64,1), transform 1s cubic-bezier(.34,1.56,.64,1);
    z-index:    2;
}

.schedule-hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.schedule-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.schedule-hero p {
    font-size: 1.5rem;
    color:rgb(221, 223, 221);
    margin-bottom: 0;
}

/* Application Form Section */
.application-form-section {
    background: #f8fbff;
    padding: 80px 0;
    position: relative;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    color: #357abd;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.application-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-section {
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e3f0ff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
    font-weight: 500;
}

/* Upload Section */
.upload-note {
    background: #e3f0ff;
    padding: 15px;
    border-radius: 8px;
    color: #357abd;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-left: 4px solid #4a90e2;
}

/* File Upload Grid */
.upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.upload-item {
    background: #f8fbff;
    border: 2px dashed #e0e6ed;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.upload-item:hover {
    border-color: #4a90e2;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
}

.upload-item label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: block;
}

/* File Upload Wrapper */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
    /* Only cover the upload display area, not the files list */
    bottom: 0;
    pointer-events: none;
}

.file-upload-display {
    background: white;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
}

.file-upload-display:hover {
    border-color: #4a90e2;
    background: #f8fbff;
}

.file-upload-display i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 10px;
}

.file-upload-display span {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.file-limit {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Make sure the file input only responds to clicks on the display area */
.file-upload-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    cursor: pointer;
}

/* File counter display */
.file-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4a90e2;
    color: white;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.upload-item.has-files .file-counter {
    background: #28a745;
}

.upload-item.has-files .file-upload-display::after {
    content: " (Click to add more)";
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}

/* Enhanced file list styling */
.files-list {
    margin-top: 15px;
    max-height: 300px; /* Increased height for multiple files */
    overflow-y: auto;
    position: relative;
    z-index: 4;
    pointer-events: auto;
}

.files-list:empty::before {
    content: "No files selected";
    display: block;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 20px;
}

/* Enhanced file item styling for multiple files */
.file-item {
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    position: relative;
    z-index: 5;
}

.file-item:hover {
    background: #f8fbff;
    border-color: #4a90e2;
    transform: translateX(2px);
}

.file-item:nth-child(even) {
    background: #fafbfc;
}

.file-item:nth-child(even):hover {
    background: #f0f8ff;
}

.file-remove {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s ease;
    position: relative;
    z-index: 6;
    pointer-events: auto;
}

.file-remove:hover {
    background: #c0392b;
}

/* File info styling */
.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0; /* Allow text truncation */
}

.file-icon {
    width: 32px;
    height: 32px;
    background: #4a90e2;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.file-details {
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
    word-break: break-word;
    line-height: 1.3;
}

.file-size {
    font-size: 0.8rem;
    color: #666;
}

/* Progress indicator for multiple files */
.upload-progress {
    margin-top: 10px;
    padding: 10px;
    background: #f8fbff;
    border-radius: 6px;
    border-left: 4px solid #4a90e2;
    font-size: 0.9rem;
    color: #357abd;
}

/* File type specific icons */
.file-icon.pdf { background: #e74c3c; }
.file-icon.doc, .file-icon.docx { background: #2980b9; }
.file-icon.jpg, .file-icon.jpeg, .file-icon.png { background: #27ae60; }

/* Enhanced remove button */
.file-remove {
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.file-remove:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Enhanced drag and drop for multiple files */
.file-upload-wrapper.dragover .file-upload-display::before {
    content: "Drop multiple files here";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(74, 144, 226, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 10;
}

.file-upload-wrapper.dragover .file-upload-display i {
    color: #357abd;
    animation: bounce 0.6s ease infinite alternate;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-5px); }
}

/* File Upload Success State */
.upload-item.has-files {
    border-color: #28a745;
    background: #f8fff9;
}

.upload-item.has-files .file-upload-display {
    border-color: #28a745;
    background: #f0fff4;
}

.upload-item.has-files .file-upload-display i {
    color: #28a745;
}

/* File Upload Error State */
.upload-item.has-error {
    border-color: #e74c3c;
    background: #fff8f8;
}

.upload-item.has-error .file-upload-display {
    border-color: #e74c3c;
    background: #fff5f5;
}

.upload-item.has-error .file-upload-display i {
    color: #e74c3c;
}

/* File Progress Bar (for future use) */
.file-progress {
    width: 100%;
    height: 4px;
    background: #e0e6ed;
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.file-progress-bar {
    height: 100%;
    background: #4a90e2;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

/* File limit warning */
.file-limit-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 0.85rem;
    display: none;
}

.file-limit-warning.show {
    display: block;
}

/* Total files summary */
.files-summary {
    margin-top: 15px;
    padding: 12px;
    background: #e8f5e8;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    font-size: 0.9rem;
    color: #155724;
    display: none;
}

.files-summary.show {
    display: block;
}

.files-summary strong {
    color: #0f5132;
}

/* Responsive Design for Upload Section */
@media (max-width: 768px) {
    .upload-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .upload-item {
        padding: 15px;
    }
    
    .file-upload-display {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .file-upload-display i {
        font-size: 2rem;
    }
    
    .file-item {
        padding: 10px 12px;
    }
    
    .file-name {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .upload-grid {
        gap: 15px;
    }
    
    .upload-item {
        padding: 12px;
    }
    
    .file-upload-display {
        padding: 20px 10px;
        min-height: 90px;
    }
    
    .file-upload-display i {
        font-size: 1.8rem;
    }
    
    .file-upload-display span {
        font-size: 0.9rem;
    }
    
    .file-limit {
        font-size: 0.8rem;
    }
}
/* Responsive updates for multiple files */
@media (max-width: 768px) {
    .files-list {
        max-height: 250px;
    }
    
    .file-item {
        padding: 10px 12px;
    }
    
    .file-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .file-name {
        font-size: 0.85rem;
    }
    
    .file-remove {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .files-list {
        max-height: 200px;
    }
    
    .file-item {
        padding: 8px 10px;
    }
    
    .file-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    
    .file-name {
        font-size: 0.8rem;
    }
    
    .file-size {
        font-size: 0.75rem;
    }
    
    .file-remove {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* Animation for file list items */
.file-item {
    animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for multiple file additions */
.file-item {
    animation: slideInUp 0.3s ease;
}

.file-item.removing {
    animation: slideOutRight 0.3s ease forwards;
}

@keyframes slideOutRight {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Custom scrollbar for files list */
.files-list::-webkit-scrollbar {
    width: 6px;
}

.files-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.files-list::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 3px;
}

.files-list::-webkit-scrollbar-thumb:hover {
    background: #357abd;
}


/* Submit Section */
.form-submit {
    padding: 40px;
    text-align: center;
    background: #f8fbff;
}

.submit-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    min-width: 200px;
    justify-content: center;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn.loading span {
    opacity: 0;
}

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* Success Message */
.success-message {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #28a745, #20c457);
    color: white;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(40, 167, 69, 0.3);
}

.success-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.success-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.success-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Calendly Section Updates */
.calendly-section {
    transition: opacity 0.5s ease, pointer-events 0.5s ease;
}

.calendly-header {
    text-align: center;
    margin-bottom: 40px;
}

.calendly-header h2 {
    font-size: 2.2rem;
    color: #357abd;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calendly-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design for Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .upload-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .file-upload-display {
        padding: 25px 15px;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .success-message {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
    }
    
    .calendly-header h2 {
        font-size: 1.8rem;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .application-form-section {
        padding: 60px 0;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .file-upload-display {
        padding: 20px 10px;
    }
    
    .file-upload-display i {
        font-size: 1.5rem;
    }
    
    .success-message {
        margin: 0 10px;
        padding: 30px 20px;
    }
    
    .success-content i {
        font-size: 3rem;
    }
    
    .success-content h3 {
        font-size: 1.3rem;
    }
}

/* Form Animation Effects */
.form-section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.form-section:nth-child(1) { animation-delay: 0.1s; }
.form-section:nth-child(2) { animation-delay: 0.2s; }
.form-section:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* File Upload Drag and Drop Effects */
.file-upload-wrapper.dragover .file-upload-display {
    border-color: #4a90e2;
    background: #e3f0ff;
    transform: scale(1.02);
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input.success,
.form-group select.success {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* Progress Indicator */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #f0f0f0;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: #4a90e2;
    color: white;
}

.progress-step.completed {
    background: #28a745;
    color: white;
}

.progress-step i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    padding: 60px 20px 30px;
}

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e8f4f8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text {
    font-size: 0.9rem;
    color: #e8f4f8;
    max-width: 600px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        display: none;
        z-index: 1001;
    }
    
    .nav-menu.open {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 15px 30px;
        color: #23406e;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }   
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Simple WhatsApp Button */
.simple-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.simple-whatsapp-btn:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.simple-whatsapp-btn i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .simple-whatsapp-btn span {
        display: none;
    }
    
    .simple-whatsapp-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }
    
    .simple-whatsapp-btn i {
        font-size: 24px;
    }
}



