/* CSS for Global Multi Care Solution */

:root {
    --primary-color: #0d47a1;
    --primary-light: #5472d3;
    --primary-dark: #002171;
    --accent-color: #ff6d00;
    --accent-hover: #ff9e40;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --whatsapp-color: #25D366;
    --call-color: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, .logo, .badge {
    font-family: var(--font-heading);
}

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

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

/* Base Buttons */
.primary-btn, .secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.primary-btn {
    background-color: var(--accent-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 109, 0, 0.3);
}

.primary-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 109, 0, 0.4);
}

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

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

.primary-btn.large, .secondary-btn.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Floating Actions */
.floating-btn {
    position: fixed;
    right: 20px;
    padding: 12px 24px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn .call-text {
    font-size: 1.05rem;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.call-btn {
    bottom: 30px;
    background-color: var(--call-color);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    padding: 12px 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-white);
    transition: color 0.3s ease;
}

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

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
    transform: scale(1.5);
    transform-origin: left center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s;
}

.navbar.scrolled .menu-toggle,
.menu-toggle.menu-open {
    color: var(--primary-color) !important;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.mobile-cta {
    display: none;
}

.nav-links a {
    color: var(--bg-white);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: #0f172a; /* Dark sleek background */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/background.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    text-align: center;
}

.hero-text {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    justify-content: center;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.stat i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.booking-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.booking-text {
    flex: 1;
}

.booking-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.booking-features p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.booking-features i {
    color: var(--whatsapp-color); /* green tick style */
    font-size: 1.2rem;
}

/* Booking Form */
.booking-form-wrapper {
    flex: 0 0 450px;
    background: var(--bg-light);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 5px;
}

.hero-form {
    background: var(--bg-white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    color: var(--text-main);
    scroll-margin-top: 100px;
}

.hero-form h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

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

.hero-form input, .hero-form select, .hero-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--bg-light);
}

.hero-form textarea {
    resize: vertical;
}

.hero-form input:focus, .hero-form select:focus, .hero-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

.hero-actions-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.book-btn {
    background-color: var(--whatsapp-color);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.book-btn:hover {
    background-color: #1DA851;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--bg-white);
    color: var(--call-color);
    border: 2px solid var(--call-color);
}

.call-btn-large:hover {
    background-color: var(--call-color);
    color: var(--bg-white);
}

.card-btn {
    margin-top: 20px;
}

/* Section Common */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.service-img {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,33,113,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.service-img i {
    color: var(--bg-white);
    font-size: 2.5rem;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--text-muted);
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    text-align: center;
    width: 200px;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border: 2px solid var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.step:hover .step-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.connector {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 40px;
    position: relative;
    z-index: 1;
    border-style: dashed;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cities-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cities-list i {
    color: #e63946; /* Red color for location marker */
    margin-top: 4px;
}

.about-contact {
    flex: 0 0 400px;
}

.contact-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.contact-card p {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-card i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 4px;
}

.contact-card .primary-btn {
    margin-top: 10px;
}

/* Why Choose Us */
.bg-light {
    background-color: var(--bg-light);
}

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

.feature-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ section */
.faq {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: var(--text-main);
    margin: 0;
    cursor: pointer;
}

.faq-item h4 i.fa-question-circle {
    color: var(--primary-color);
    margin-right: 12px;
}

.faq-item h4 i.toggle-icon {
    transition: transform 0.3s;
}

.faq-item.active h4 i.toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    color: var(--text-muted);
    line-height: 1.6;
    margin-left: 32px;
    margin-top: 15px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Footer */
.footer {
    background-color: var(--text-main);
    color: var(--bg-white);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col.links h3 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-col.links a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col.links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom strong {
    color: rgba(255,255,255,0.8);
}

/* Legal Pages Styles */
.legal-page {
    padding: 120px 0 60px;
}

.legal-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content p, .legal-content ul {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 1.05rem;
}

.legal-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

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

/* Responsive */
@media (max-width: 992px) {
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1000;
        gap: 30px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-main);
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    .nav-cta { display: none; }
    .mobile-cta { display: block; width: 100%; }

    .hero-content { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-text { max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero h1 { font-size: 2.2rem; } /* Optimized for mobile */
    .hero p { font-size: 1rem; }
    .booking-form-wrapper { width: 100%; max-width: 500px; flex: auto; }
    
    .section-title h2 { font-size: 2rem; }
    .about-content h2 { font-size: 2rem; }
    
    .booking-container { flex-direction: column; text-align: center; gap: 40px; }
    .booking-features { display: flex; flex-direction: column; align-items: center; }
    
    .about-container { flex-direction: column; }
    .about-contact { width: 100%; flex: 1; }
    .process-steps { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .connector { display: none; }
}

@media (max-width: 768px) {
    .hero { padding-top: 100px; }
    .hero h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
    .hero-cta-buttons { flex-direction: column; width: 100%; max-width: 400px; margin: 30px auto 0; }
    .hero-cta-buttons a { width: 100%; }
    .footer-content { grid-template-columns: 1fr; }
}

