/* ===================================
   Nitisha Data Recovery - Main Stylesheet
   =================================== */

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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --success-color: #27ae60;
    --warning-color: #f39c12;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

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

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

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.logo-primary {
    color: var(--primary-color);
}

.logo-secondary {
    color: var(--secondary-color);
}

.tagline {
    font-size: 12px;
    color: var(--gray);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #c0392b;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(52, 152, 219, 0.9)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 10px;
}

.hero-experience {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.feature-badge i {
    font-size: 24px;
    color: var(--warning-color);
}

.hero-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Profile Section */
.profile-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.profile-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.profile-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-color);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

.service-link i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.service-link:hover i {
    margin-left: 10px;
}

/* Facility Section */
.facility-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.facility-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.facility-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.facility-text p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.facility-text strong {
    color: var(--dark-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 48px;
    color: var(--white);
}

.feature-box h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--gray);
    line-height: 1.6;
}

/* Recovery Process Section */
.recovery-process {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-column p {
    color: var(--light-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-color);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.contact-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-list i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--light-color);
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
}

/* Services Detail Page */
.services-detail {
    padding: 80px 0;
    background-color: var(--light-color);
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-color);
}

.service-detail-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon i {
    font-size: 48px;
    color: var(--white);
}

.service-detail-header h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.service-detail-header p {
    font-size: 18px;
    color: var(--gray);
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-column h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.feature-column ul {
    list-style: none;
}

.feature-column ul li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-column ul li i {
    color: var(--success-color);
    font-size: 18px;
}

/* Pricing Page */
.pricing-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 18px;
    color: var(--gray);
}

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

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.pricing-header h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 20px;
    color: var(--gray);
    margin-left: 5px;
}

.amount-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features ul li {
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid var(--light-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features ul li i {
    color: var(--success-color);
}

.pricing-btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.pricing-btn:hover {
    background-color: #c0392b;
}

.pricing-note {
    text-align: center;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 10px;
    margin-top: 40px;
}

.pricing-note p {
    font-size: 16px;
    color: var(--gray);
}

/* Pricing Factors */
.pricing-factors {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pricing-factors h2 {
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.factor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.factor-icon i {
    font-size: 36px;
    color: var(--white);
}

.factor-card h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.factor-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* No Fee Guarantee */
.no-fee-guarantee {
    padding: 80px 0;
    background-color: var(--white);
}

.guarantee-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    background-color: var(--light-color);
    padding: 60px;
    border-radius: 15px;
}

.guarantee-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 60px;
    color: var(--white);
}

.guarantee-text h2 {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.guarantee-text ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.guarantee-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}

.guarantee-text ul li i {
    color: var(--success-color);
    font-size: 18px;
}

/* About Page */
.about-content {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

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

.about-card {
    background-color: var(--light-color);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.about-icon i {
    font-size: 36px;
    color: var(--white);
}

.about-card h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.expertise-section h2 {
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

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

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

.expertise-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.expertise-item h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.expertise-item p {
    color: var(--gray);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--white);
}

.why-choose-section h2 {
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.choose-item {
    padding: 30px;
    text-align: center;
}

.choose-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-item h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.choose-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-section h2 {
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.team-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-info h3 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.team-info p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.certifications h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.certifications ul {
    list-style: none;
}

.certifications ul li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.certifications ul li i {
    color: var(--success-color);
}'''

/* Contact Page */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-form-container p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-content h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-content p {
    color: var(--gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
}

.social-media-section {
    margin-top: 40px;
}

.social-media-section h3 {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    transition: transform 0.3s;
}

.social-links-large a:hover {
    transform: scale(1.1);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.map-section h2 {
    font-size: 36px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--warning-color), var(--primary-color));
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 36px;
    color: var(--warning-color);
}

.emergency-text {
    flex: 1;
}

.emergency-text h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.emergency-text p {
    font-size: 16px;
    color: var(--white);
}

.emergency-btn {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: transform 0.3s;
}

.emergency-btn:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .profile-content,
    .facility-content,
    .team-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-icon {
        margin: 0 auto;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 24px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}'''

/* =================================
   Image Scroller Styles (Corrected)
   ================================= */
.image-scroller {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  padding: 10px 0;
  background: transparent; /* change if you want a background */
}

.scroller-track {
  display: flex;
  gap: 12px; /* Restored gap */
  align-items: center;
  will-change: transform;
}

.scroller-item {
  flex: 0 0 20%; /* Restored: 5 items visible (100/5 = 20%) */
  box-sizing: border-box;
}

.scroller-item img {
  display: block;
  width: 100%;
  height: 140px; /* Restored original height */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Smaller screens: 1 image visible */
@media (max-width: 768px) {
  .scroller-track { gap: 0; } /* Remove gap on mobile */
  .scroller-item { flex: 0 0 100%; }
  .scroller-item img { 
      height: 462px; /* mobile height */
      border-radius: 0;
  } 
}

/* Optional: adjust height on very large screens */
@media (min-width: 1400px) {
  .scroller-item img { height: 480px; }
}