/* Rapid Dry Restoration of the Thumb - Placeholder Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    color: #1a2b3c;
    line-height: 1.6;
    background: #f8fafc;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #0b4d7a;
}

.logo i {
    color: #1d8fd6;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #1d8fd6;
}

.cta-btn {
    background: #d93025;
    color: #fff;
    padding: 0.65rem 1.15rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #b3251d;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0b4d7a 0%, #1d8fd6 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.primary-btn {
    background: #fff;
    color: #0b4d7a;
    padding: 0.9rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.15s, box-shadow 0.15s;
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Services */
.services {
    padding: 5rem 0;
    background: #fff;
}

.services h2,
.about h2,
.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #0b4d7a;
}

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

.service-card {
    background: #f8fafc;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card i {
    font-size: 2.5rem;
    color: #1d8fd6;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #1a2b3c;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* About */
.about {
    padding: 5rem 0;
    background: #f1f5f9;
}

.about p {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: #475569;
    font-size: 1.05rem;
}

/* Contact */
.contact {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.contact p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #0b4d7a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.2s;
}

.contact-item:hover {
    border-color: #1d8fd6;
    color: #1d8fd6;
}

/* Footer */
.footer {
    background: #0b4d7a;
    color: #cbd5e1;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0.25rem 0;
}

.footer-small {
    font-size: 0.85rem;
    opacity: 0.75;
}

/* Responsive */
@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}
