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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(52, 152, 219, 0.1);
    border-bottom: 3px solid #3498db;
}

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

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

.brand-logo i {
    font-size: 2.5rem;
    color: #e74c3c;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.3);
}

.brand-text h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}

.tagline {
    font-size: 0.8rem;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #3498db;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.hero-pattern {
    background-image: 
        repeating-linear-gradient(45deg, #3498db, #3498db 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(-45deg, #2ecc71, #2ecc71 1px, transparent 1px, transparent 20px);
    height: 100%;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 40px 40px, -40px 40px; }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #f1f8ff);
    color: #3498db;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    border: 1px solid #e3f2fd;
    margin-bottom: 2rem;
}

.hero-badge i {
    color: #e74c3c;
}

.hero h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.3rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.feature i {
    color: #2ecc71;
    font-size: 1.1rem;
}

.feature span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.1);
}

.btn-outline:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.indicator {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    min-width: 120px;
}

.number {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #3498db;
    text-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
}

.label {
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.care-dashboard {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    max-width: 400px;
    width: 100%;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.dashboard-header i {
    font-size: 2rem;
    color: #e74c3c;
}

.dashboard-header h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.health-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.metric-icon.safety {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.metric-icon.maintenance {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.metric-icon.cleanliness {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.metric-info {
    flex: 1;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #5a6c7d;
    font-weight: 500;
}

.metric-value {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 700;
    margin-top: 0.2rem;
}

.metric-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.metric-status.excellent {
    background: #2ecc71;
}

.metric-status.good {
    background: #3498db;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.care-schedule {
    border-top: 2px solid #f8f9fa;
    padding-top: 1.5rem;
}

.care-schedule h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.appointment {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 1px solid #bbdefb;
}

.appointment i {
    color: #3498db;
    font-size: 1rem;
}

.appointment span {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #f1f8ff);
    color: #3498db;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
    border: 1px solid #e3f2fd;
    margin-bottom: 1.5rem;
}

.section-badge i {
    color: #e74c3c;
}

.section-header h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: #ffffff;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.care-philosophy {
    margin-bottom: 3rem;
}

.care-philosophy h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.care-philosophy p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

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

.principle {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.principle:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.principle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.principle:nth-child(1) .principle-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.principle:nth-child(2) .principle-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.principle:nth-child(3) .principle-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.principle:nth-child(4) .principle-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.principle-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.principle-content p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.about-visual {
    flex: 1;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.stat-info {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    display: block;
    color: #5a6c7d;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

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

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.service-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.service-badge.urgent {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.service-badge.routine {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.service-badge.preventive {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.service-badge.emergency {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.service-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features .feature {
    background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
    color: #3498db;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bbdefb;
}

/* Why Choose Us Section */
.why-choose {
    background: #ffffff;
}

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

.reason-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.reason-card:hover::before {
    transform: scale(1);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
    background: #ffffff;
}

.reason-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.reason-card:nth-child(1) .reason-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.reason-card:nth-child(2) .reason-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.reason-card:nth-child(3) .reason-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.reason-card:nth-child(4) .reason-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.reason-card h3 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.reason-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.care-level {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Warranty Section */
.warranty {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.warranty-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.warranty-text {
    flex: 1;
}

.warranty-text h2 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.warranty-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.warranty-plans {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.plan-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.plan:nth-child(1) .plan-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.plan:nth-child(2) .plan-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.plan:nth-child(3) .plan-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.plan-content {
    flex: 1;
}

.plan-content h4 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.plan-content p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.coverage {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.warranty-visual {
    flex: 1;
}

.protection-chart {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.chart-header i {
    font-size: 2rem;
    color: #3498db;
}

.chart-header h4 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.coverage-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.coverage-bar {
    flex: 1;
    height: 8px;
    background: #f1f3f4;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.coverage-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #2ecc71, #3498db);
    border-radius: 4px;
    animation: coverageLoad 2s ease-out;
}

.coverage-bar[data-coverage="95"]::after { width: 95%; }
.coverage-bar[data-coverage="90"]::after { width: 90%; }
.coverage-bar[data-coverage="100"]::after { width: 100%; }
.coverage-bar[data-coverage="85"]::after { width: 85%; }

@keyframes coverageLoad {
    from { width: 0; }
    to { width: inherit; }
}

.coverage-label {
    font-weight: 600;
    color: #2c3e50;
    min-width: 140px;
}

.coverage-percent {
    font-weight: 700;
    color: #3498db;
    min-width: 40px;
}

/* Testimonials Section */
.testimonials {
    background: #ffffff;
}

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

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #3498db;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    border-color: #3498db;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #f39c12;
    font-size: 1.1rem;
}

.care-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-card p {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.author-info strong {
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.author-info span {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
}

.care-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
    font-size: 0.9rem;
}

.care-duration i {
    color: #2ecc71;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.care-center-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.care-center-info h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.contact-details h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.4;
}

.care-hours {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.care-hours h4 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.hours-schedule {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.schedule-item.emergency {
    background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
    border-color: #3498db;
}

.schedule-item .day {
    font-weight: 600;
    color: #2c3e50;
}

.schedule-item .time {
    color: #5a6c7d;
    font-weight: 500;
}

.schedule-item.emergency .time {
    color: #3498db;
    font-weight: 600;
}

.consultation-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.form-header i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #5a6c7d;
    margin: 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    background: #ffffff;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.2);
}

.radio-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.radio-option:hover {
    border-color: #3498db;
    background: #ffffff;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-mark {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #bdc3c7;
    position: relative;
    transition: all 0.3s ease;
}

.radio-mark.routine {
    border-color: #2ecc71;
}

.radio-mark.urgent {
    border-color: #e67e22;
}

.radio-mark.emergency {
    border-color: #e74c3c;
}

.radio-option input[type="radio"]:checked + .radio-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.radio-option input[type="radio"]:checked + .radio-mark.routine::after {
    background: #2ecc71;
}

.radio-option input[type="radio"]:checked + .radio-mark.urgent::after {
    background: #e67e22;
}

.radio-option input[type="radio"]:checked + .radio-mark.emergency::after {
    background: #e74c3c;
}

.radio-label {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.9rem;
}

.consultation-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 18px 30px;
}

.form-success {
    background: linear-gradient(135deg, #d5f4e6, #a8e6cf);
    border: 1px solid #2ecc71;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    display: none;
    animation: successSlide 0.5s ease;
}

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

.success-icon {
    margin-bottom: 1rem;
}

.success-icon i {
    font-size: 3rem;
    color: #2ecc71;
}

.form-success h4 {
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.form-success p {
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ecf0f1;
    padding: 4rem 0 2rem;
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand .brand-logo {
    margin-bottom: 1rem;
}

.footer-brand .brand-logo i {
    font-size: 2rem;
}

.footer-brand .brand-text h3 {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand .brand-text span {
    color: #3498db;
}

.footer-brand p {
    color: #bdc3c7;
    line-height: 1.6;
    margin: 0;
}

.footer-section h4 {
    color: #ecf0f1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #3498db;
    padding-left: 10px;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 6px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 0;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.4);
    padding-left: 0;
}

.social-links a::before {
    display: none;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badges .badge {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legal Content Styles */
.legal-content {
    margin-top: 80px;
    padding: 100px 0;
    background: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid #3498db;
}

.legal-header h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.last-updated {
    color: #5a6c7d;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tech-badge {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-text p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    color: #5a6c7d;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin: 2rem 0;
}

.contact-details p {
    margin: 0.5rem 0;
}

.tech-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #3498db;
    margin: 2rem 0;
}

.tech-notice i {
    color: #3498db;
    font-size: 2rem;
    margin-top: 0.3rem;
}

.tech-notice h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tech-notice p {
    color: #5a6c7d;
    margin: 0;
    line-height: 1.6;
}

/* Newsletter Page Styles */
.newsletter-page {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.newsletter-content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 4rem;
}

.newsletter-info {
    flex: 1;
}

.newsletter-header h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.tech-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.newsletter-benefits h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.tech-level {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form-container {
    flex: 1;
}

.newsletter-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
}

.newsletter-form h3 {
    font-family: 'Nunito Sans', sans-serif;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    position: relative;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.newsletter-form .form-group input:focus + .input-glow,
.newsletter-form .form-group select:focus + .input-glow {
    opacity: 1;
}

.tech-preferences {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.tech-preferences h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #bdc3c7;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #3498db;
    background: #3498db;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.radio-content small {
    color: #5a6c7d;
    font-size: 0.85rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .checkbox-custom {
    border-color: #3498db;
    background: #3498db;
}

.checkbox-container input[type="checkbox"]:checked + .checkbox-label .checkbox-custom i {
    color: white;
    font-size: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: #5a6c7d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 18px 30px;
    margin-top: 1rem;
}

.newsletter-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8f4f8;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.feature-card i {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-testimonials {
    background: #ffffff;
    padding: 100px 0;
}

.newsletter-testimonials h3 {
    font-family: 'Nunito Sans', sans-serif;
    text-align: center;
    color: #2c3e50;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .care-dashboard {
        max-width: 100%;
    }
    
    .about-content,
    .warranty-content,
    .newsletter-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .care-principles {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid,
    .reasons-grid,
    .testimonials-grid,
    .newsletter-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}