/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand a {
    text-decoration: none;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #007bff;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: #007bff;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
}

.btn-sidebar {
    background: #28a745;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    background: #218838;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
}

.hero-service {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero-simple {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-simple h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Sections */
.advantages, .services, .about, .testimonials, .content-section, .faq-content, .about-story, .values, .services-overview, .why-choose-us, .certifications, .testimonials-full, .mission, .contact-content, .map-section, .quick-contact {
    padding: 80px 0;
}

.advantages {
    background: white;
}

.advantages h2, .services h2, .about h2, .testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.advantage-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
}

/* Services Grid */
.services {
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: block;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #007bff;
    font-weight: 600;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    color: #2c3e50;
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial cite {
    color: #666;
    font-weight: 600;
    font-style: normal;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Service Pages */
.service-page {
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-content {
    font-size: 16px;
    line-height: 1.7;
}

.main-content h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 35px;
}

.main-content h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.main-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.main-content li {
    margin-bottom: 8px;
}

.main-content p {
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    position: relative;
}

.step-number {
    background: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    font-size: 18px;
}

.step h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    text-align: center;
    font-weight: 600;
}

/* Info boxes and components */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.info-box h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.job-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.job-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.job-category h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.evaluation-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.component {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.component h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.advantages-list {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.advantages-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

/* Sidebar */
.sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3, .sidebar h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.benefits-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.testimonials-sidebar {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}

.testimonial-small {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-small p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-small cite {
    font-size: 12px;
    color: #666;
}

.contact-sidebar {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #dee2e6;
}

.contact-sidebar p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-sidebar a {
    color: #007bff;
    text-decoration: none;
}

.important-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.important-note h4 {
    margin-bottom: 15px;
    color: #856404;
}

.important-note p, .important-note ul {
    font-size: 14px;
    color: #856404;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question.active:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FAQ Page */
.faq-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.faq-nav-btn {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.faq-nav-btn.active, .faq-nav-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.faq-section {
    display: none;
}

.faq-section.active {
    display: block;
}

.faq-section h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
}

.contact-details small {
    color: #666;
    font-size: 14px;
}

.business-hours {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.hours-schedule {
    margin: 15px 0;
}

.day-schedule {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.day-schedule:last-child {
    border-bottom: none;
}

.hours-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.form-privacy {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

input[type="checkbox"]:checked + .checkbox-custom {
    background: #007bff;
    border-color: #007bff;
}

input[type="checkbox"]:checked + .checkbox-custom:after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="checkbox"] {
    display: none;
}

.form-note {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}

/* Contact Options */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-option {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option:hover {
    transform: translateY(-3px);
}

.contact-option span {
    font-size: 32px;
    display: block;
    margin-bottom: 15px;
}

.contact-option h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.quick-contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.quick-option {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.quick-option:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}

.quick-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.quick-option h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.quick-option span {
    color: #666;
    font-size: 14px;
}

/* About page specific styles */
.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-content {
    font-size: 18px;
    line-height: 1.7;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-overview {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-overview .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-overview h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-overview a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.reason-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.reason-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.certification-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.certification-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.testimonial-full {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 16px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

.mission-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Message styles */
.message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.4;
    animation: slideIn 0.3s ease-out;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 25px;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
}

.footer-certifications {
    margin-top: 20px;
}

.footer-certifications strong {
    color: #fff;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 25px;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.legal-links a:hover {
    color: white;
}

.trust-elements {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #dee2e6;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.trust-grid div {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Map */
.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 60px 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px dashed #dee2e6;
}

.map-placeholder p:first-child {
    font-size: 24px;
    margin-bottom: 15px;
}

.map-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.map-info h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-info ul {
    list-style: none;
    padding: 0;
}

.map-info li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

/* Special page-specific elements */
.analyses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.analysis-category {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.analysis-category h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.preparation-info {
    background: #e7f3ff;
    border: 1px solid #b3d7ff;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.preparation-info h4 {
    color: #0066cc;
    margin-bottom: 15px;
}

.timing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.timing-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.timing-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.price-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.price-info h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.package {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 4px solid #007bff;
}

.package h5 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.package p {
    font-size: 13px;
    color: #666;
}

/* Legal pages */
.legal-page .legal-content {
    padding: 60px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}

.legal-text h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 8px;
}

.legal-text a {
    color: #007bff;
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 1rem;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .legal-links {
        justify-content: center;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .faq-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .contact-alternatives {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .contact-alternatives a {
        color: white;
        text-decoration: none;
        font-size: 14px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .advantages, .services, .about, .testimonials, .content-section {
        padding: 50px 0;
    }

    .advantages h2, .services h2, .about h2, .testimonials h2 {
        font-size: 28px;
    }

    .service-card, .advantage-item {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   ADVANCED FEATURES & ANIMATIONS - SSM MEDICAL
   ============================================================= */

/* Font Awesome Icons & Success Colors */
.text-success {
    color: #28a745;
}

/* Loading States & Animations */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Form Messages with Animations */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.message-close:hover {
    opacity: 1;
}

/* Enhanced Form Field States */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* Scroll-Triggered Animations */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-ready.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Service Cards Hover Animations */
.service-card {
    transition: all 0.3s ease;
}

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

.service-icon i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

/* Advantage Items Hover Effects */
.advantage-item {
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: scale(1.02);
}

.advantage-icon i {
    transition: color 0.3s ease;
}

.advantage-item:hover .advantage-icon i {
    color: #3498db;
}

/* Contact Items Interactive Hover */
.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.contact-icon i {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon i {
    color: #3498db;
    transform: scale(1.1);
}

/* Quick Options with Shimmer Effect */
.quick-option {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.quick-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.quick-option::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.quick-option:hover::before {
    left: 100%;
}

/* Enhanced Button Hover Effects */
.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* FAQ Interactive Improvements */
.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
    color: #3498db;
}

.faq-item.active .faq-question {
    background: #e3f2fd;
    color: #1976d2;
}

/* Logo Hover Animation */
.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Universal Icon Micro-interactions */
.fas, .fab {
    transition: all 0.25s ease-out;
}

a:hover .fas, a:hover .fab {
    transform: scale(1.1);
}

/* Trust Elements Animation */
.trust-grid div {
    transition: all 0.3s ease;
}

.trust-grid div:hover {
    transform: translateY(-2px);
    color: #3498db;
}

/* Mobile Navigation Enhancements */
.nav-menu-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    backdrop-filter: blur(10px);
}

body.nav-open {
    overflow: hidden;
}

/* Performance Optimizations */
* {
    will-change: auto;
}

.service-card:hover,
.advantage-item:hover,
.contact-item:hover,
.quick-option:hover {
    will-change: transform, box-shadow;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* Mobile actions for all pages */
.mobile-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 10px 0;
    display: none;
}

@media (max-width: 768px) {
    .mobile-actions {
        display: grid;
    }
    
    body {
        padding-bottom: 70px;
    }
}

.mobile-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 44px;
}

.mobile-action i {
    font-size: 20px;
    margin-bottom: 4px;
    color: #3498db;
}

.mobile-action:hover {
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.mobile-action.primary {
    background: #3498db;
    color: white;
    border-radius: 8px;
    margin: 0 5px;
}

.mobile-action.primary i {
    color: white;
}

/* Professional Medical Colors - Updated for SSM Medical */
:root {
    --primary-blue: #2c5aa0;
    --secondary-blue: #3498db;  
    --medical-green: #27ae60;
    --trust-blue: #1e3a8a;
    --light-blue: #e3f2fd;
    --medical-gray: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

/* Update primary colors to maintain medical branding */
.hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
}

.btn-primary {
    background: var(--secondary-blue);
    border-color: var(--secondary-blue);
}

.btn-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.service-card:hover,
.advantage-item:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-blue);
}

.header {
    border-bottom: 3px solid var(--secondary-blue);
}

