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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utility Classes */
.text-red {
    color: #DC2626;
}

.text-blue {
    color: #215F9A;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #DC2626;
    color: white;
}

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

.btn-secondary {
    background-color: white;
    color: #215F9A;
    border: 2px solid #215F9A;
}

.btn-secondary:hover {
    background-color: #215F9A;
    color: white;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FEF2F2;
    color: #DC2626;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-description {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-bar {
    background-color: #215F9A;
    color: white;
    padding: 0.5rem 0;
}

.contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #E5E7EB;
}

.contact-info-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar {
    background-color: white;
    border-bottom: 1px solid #E5E7EB;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-image {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #DC2626;
}

.btn-contact {
    background-color: #DC2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
}

.btn-contact:hover {
    background-color: #B91C1C;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

.mobile-nav {
    display: none;
    background-color: white;
    border-top: 1px solid #E5E7EB;
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: #374151;
    font-weight: 500;
    border-bottom: 1px solid #F3F4F6;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #DC2626;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #FEF2F2;
    color: #DC2626;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.feature i {
    color: #10B981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature h3 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature p {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

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

.hero-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-card-header i {
    font-size: 4rem;
    color: #DC2626;
    margin-bottom: 1rem;
}

.hero-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.hero-card-header p {
    color: #6B7280;
    margin-bottom: 0;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: #F9FAFB;
    border-radius: 0.5rem;
}

.service-item span {
    font-weight: 500;
    color: #374151;
}

.service-item i {
    color: #10B981;
    font-size: 1.25rem;
}

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

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

.about .section-badge {
    background-color: rgba(33, 95, 154, 0.1);
    color: #215F9A;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.point-icon {
    width: 3rem;
    height: 3rem;
    background-color: #FEF2F2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-icon i {
    color: #DC2626;
    font-size: 1.5rem;
}

.about-point h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-point p {
    color: #6B7280;
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-red {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
}

.stat-blue {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.stat-green {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.stat-purple {
    background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-red .stat-number {
    color: #DC2626;
}

.stat-blue .stat-number {
    color: #215F9A;
}

.stat-green .stat-number {
    color: #10B981;
}

.stat-purple .stat-number {
    color: #8B5CF6;
}

.stat-label {
    color: #1F2937;
    font-weight: 500;
}

.values-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
}

.values-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.values-card h3 i {
    color: #DC2626;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.value-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #DC2626;
    border-radius: 50%;
    flex-shrink: 0;
}

.value-item span {
    color: #374151;
    font-weight: 500;
}

/* Services Section */
.services {
    background-color: #F9FAFB;
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: #FEF2F2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #FEE2E2;
}

.service-icon i {
    color: #DC2626;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.service-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: #DC2626;
    border-radius: 50%;
    flex-shrink: 0;
}

.additional-services {
    background-color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 4rem;
}

.additional-services h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.additional-services p {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.additional-service {
    text-align: center;
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-2px);
}

.additional-service-icon {
    width: 5rem;
    height: 5rem;
    background-color: rgba(33, 95, 154, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s ease;
}

.additional-service:hover .additional-service-icon {
    background-color: rgba(33, 95, 154, 0.2);
}

.additional-service-icon i {
    color: #215F9A;
    font-size: 2.5rem;
}

.additional-service h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.additional-service p {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0;
}

.services-cta {
    background: linear-gradient(135deg, #DC2626 0%, #215F9A 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.services-cta .btn {
    background-color: white;
    color: #DC2626;
    font-weight: 700;
    font-size: 1.125rem;
}

.services-cta .btn:hover {
    background-color: #F3F4F6;
}

/* Standards Section */
.standards {
    background-color: white;
}

.standards .section-badge {
    background-color: rgba(33, 95, 154, 0.1);
    color: #215F9A;
}

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

.standard-card {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
    transition: box-shadow 0.3s ease;
}

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

.standard-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.standard-icon {
    width: 4rem;
    height: 4rem;
    background-color: #FEF2F2;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard-icon i {
    color: #DC2626;
    font-size: 2rem;
}

.standard-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

.standard-subtitle {
    color: #DC2626;
    font-weight: 600;
    margin-bottom: 0;
}

.standard-card p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.standard-points h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.standard-points .point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.standard-points .point i {
    color: #10B981;
    flex-shrink: 0;
}

.standard-points .point span {
    color: #374151;
}

.pitometry-section {
    background: linear-gradient(135deg, #215F9A 0%, #1E40AF 100%);
    color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    margin-bottom: 4rem;
}

.pitometry-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pitometry-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.pitometry-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pitometry-icon i {
    color: white;
    font-size: 2rem;
}

.pitometry-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.pitometry-header p {
    color: rgba(191, 219, 254, 1);
    margin-bottom: 0;
}

.pitometry-text p {
    font-size: 1.125rem;
    color: rgba(191, 219, 254, 1);
    line-height: 1.7;
}

.pitometry-applications {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
}

.pitometry-applications h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.application {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.application-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.application span {
    color: rgba(191, 219, 254, 1);
}

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

.certification-icon {
    width: 5rem;
    height: 5rem;
    background-color: #F0FDF4;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.certification-icon i {
    color: #10B981;
    font-size: 2.5rem;
}

.certification-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.certification-section p {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    text-align: center;
}

.cert-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.certification-item:nth-child(1) .cert-icon {
    background-color: #F0FDF4;
}

.certification-item:nth-child(1) .cert-icon i {
    color: #10B981;
}

.certification-item:nth-child(2) .cert-icon {
    background-color: #EFF6FF;
}

.certification-item:nth-child(2) .cert-icon i {
    color: #3B82F6;
}

.certification-item:nth-child(3) .cert-icon {
    background-color: #FAF5FF;
}

.certification-item:nth-child(3) .cert-icon i {
    color: #8B5CF6;
}

.certification-item h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.certification-item p {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0;
}

/* Projects Section */
.projects {
    background-color: #F9FAFB;
}

.projects .section-badge {
    background-color: #F0FDF4;
    color: #10B981;
}

.project-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.project-type {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.project-type-icon {
    width: 4rem;
    height: 4rem;
    background-color: #EFF6FF;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background-color 0.3s ease;
}

.project-type:hover .project-type-icon {
    background-color: #DBEAFE;
}

.project-type-icon i {
    color: #215F9A;
    font-size: 2rem;
}

.project-type h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.project-type p {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.project-count {
    font-size: 2rem;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 0.5rem;
}

.project-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.project-highlight {
    font-size: 0.75rem;
    color: #6B7280;
    padding-top: 1rem;
    border-top: 1px solid #F3F4F6;
}

.recent-projects {
    background-color: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.recent-projects h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 1rem;
}

.recent-projects > p {
    font-size: 1.125rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 3rem;
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

.project-item:hover {
    border-color: #FCA5A5;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.project-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
}

.project-status {
    background-color: #F0FDF4;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.meta-item i {
    font-size: 1rem;
}

.project-info p {
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.project-type-badge {
    background-color: #FEF2F2;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: right;
}

.type-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.25rem;
}

.type-value {
    font-weight: 700;
    color: #DC2626;
}

.project-stats {
    background: linear-gradient(135deg, #DC2626 0%, #215F9A 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.project-stats h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-stats p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat {
    text-align: center;
}

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

.stat-label {
    color: rgba(191, 219, 254, 1);
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact .section-badge {
    background-color: #FEF2F2;
    color: #DC2626;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method:nth-child(1) .contact-icon {
    background-color: #FEF2F2;
}

.contact-method:nth-child(1) .contact-icon i {
    color: #DC2626;
}

.contact-method:nth-child(2) .contact-icon {
    background-color: #EFF6FF;
}

.contact-method:nth-child(2) .contact-icon i {
    color: #215F9A;
}

.contact-method:nth-child(3) .contact-icon {
    background-color: #F0FDF4;
}

.contact-method:nth-child(3) .contact-icon i {
    color: #10B981;
}

.contact-method h4 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.contact-method a {
    color: #DC2626;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #B91C1C;
}

.contact-method p {
    color: #6B7280;
    margin-bottom: 0;
}

.service-note {
    font-size: 0.875rem;
}

.whatsapp-btn {
    background: none;
    border: none;
    color: #10B981;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.whatsapp-btn:hover {
    color: #059669;
}

.schedule-card {
    background-color: #F9FAFB;
    padding: 1.5rem;
    border-radius: 1rem;
}

.schedule-card h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.schedule-item span:first-child {
    color: #6B7280;
}

.schedule-item span:last-child {
    font-weight: 500;
}

.emergency {
    color: #DC2626;
    font-weight: 600;
}

.contact-form-container {
    background-color: #F9FAFB;
    padding: 2rem;
    border-radius: 1rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.success-message {
    background-color: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.success-message i {
    color: #10B981;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-message p {
    margin-bottom: 0;
}

.success-message p:first-child {
    font-weight: 500;
    color: #166534;
}

.success-message p:last-child {
    color: #10B981;
    font-size: 0.875rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: none;
}

.emergency-contact {
    background: linear-gradient(135deg, #215F9A 0%, #1E40AF 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
}

.emergency-contact h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.emergency-contact p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background-color: #1F2937;
    color: white;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    max-width: none;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.footer-info p {
    color: #D1D5DB;
    text-align: center;
    max-width: 400px;
    margin-bottom: 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item i {
    color: #DC2626;
}

.contact-item a {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-item a:hover {
    color: #DC2626;
}

.footer-bottom {
    border-top: 1px solid #374151;
    background-color: #111827;
    padding: 1rem 3rem;
    text-align: right;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0;
}