/* =============================================================
   welcome.css — Welcome (home) page specific styles
   ============================================================= */

/* Navigation — home page has no logo, so links are right-aligned */
nav {
    justify-content: flex-end;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #58a4b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero .tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.hero .location {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Icon */
.icon {
    display: inline-block;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

/* Services / content grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.card {
    padding: 2rem;
}

.card h3 {
    margin-top: 1.5rem;
}

.card-link-row {
    margin-top: 1.5rem;
}

/* CTA */
.cta-section {
    text-align: center;
    padding: 1rem 2rem 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #58a4b0 0%, #4a8a94 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(88, 164, 176, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(88, 164, 176, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Client tools section */
.client-section {
    margin: 1rem 0 3rem;
    padding: 2.5rem;
    background: rgba(88, 164, 176, 0.06);
    border: 1px solid rgba(88, 164, 176, 0.2);
    border-radius: 16px;
}

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

.client-section-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #58a4b0;
    margin-bottom: 0.4rem;
}

.client-section-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

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

.tool-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.tool-card:hover {
    background: rgba(88, 164, 176, 0.12);
    border-color: rgba(88, 164, 176, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.tool-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.tool-card-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.tool-card-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        justify-content: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .client-tools-grid {
        grid-template-columns: 1fr;
    }
}
