/* === Base Styles === */
body {
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.site-logo {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    /* charcoal */
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
}

.logo-accent {
    color: #e32020;
    /* deep red accent */
    font-weight: 800;
}
.logo-accent {
    color: #ff2d2d;
    /* brighter red for contrast */
}
.site-logo {
    letter-spacing: 0.5px;
    -webkit-font-smoothing: antialiased;
}
.site-logo {
    color: #f2f2f2;
    /* light gray/white text */
}

.logo-accent {
    color: #ff3b3b;
    /* vivid red accent */
}

header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    padding: 15px 0;
}

header h1 {
    font-size: 2rem;
    margin: 0;
}

.intro-text {
    max-width: 850px;
    margin: 20px auto 5px;
    /* reduced bottom spacing */
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    padding: 0 15px;
}

.intro-text strong {
    color: #e32020;
    font-weight: 700;
}


/* === Profile Grid === */
.profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 5%;
    animation: fadeIn 1.5s ease;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-4px);
}

.profile-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.profile-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.profile-card p {
    margin: 0 0 10px;
    font-size: 0.95rem;
}

/* === Buttons === */
.cta {
    display: inline-block;
    padding: 10px 22px;
    margin: 6px 4px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: subtlePulse 2.8s infinite;
    cursor: pointer;
    white-space: nowrap;
}

/* Call Now (red) */
.cta {
    background: #e40046;
    color: #fff;
}

.cta:hover {
    background: #ff3369;
    transform: scale(1.03);
}

/* Text Now (teal) */
.cta.secondary {
    background: #1cb8a3;
    color: #fff;
}

.cta.secondary:hover {
    background: #22d2ba;
    transform: scale(1.03);
}

/* Labels for desktop vs mobile */
.cta .mobile-label {
    display: none;
}

.cta .desktop-label {
    display: inline;
}

/* Show the right label on each device */
@media (max-width: 768px) {
    .cta .mobile-label {
        display: inline;
    }

    .cta .desktop-label {
        display: none;
    }
}

/* Subtle Pulse Animation */
@keyframes subtlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

/* Price text */
.price {
    font-size: 0.9rem;
    color: #777;
    margin: 10px 0 20px;
}

/* === SEO Section === */
.seo-text {
    background: #fff;
    max-width: 900px;
    margin: 60px auto 40px;
    padding: 40px 6%;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.5s ease;
}

.seo-text h2,
.seo-text h3 {
    color: #e40046;
    margin-top: 30px;
    margin-bottom: 10px;
}

.seo-text p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

/* === FAQ Section === */
.faq {
    background: #f8f8f8;
    border-top: 2px solid #eee;
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 40px 6%;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    animation: fadeIn 1.8s ease;
}

.faq h2 {
    color: #e40046;
    margin-bottom: 25px;
    text-align: center;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #e40046;
    margin-bottom: 5px;
}

.faq-item p {
    font-size: 0.95rem;
    margin: 0;
    color: #444;
}

/* === Footer === */
.site-footer {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    background-color: #111;
    padding: 25px 10px;
    line-height: 1.6;
}

.site-footer a {
    color: #ff2b2b;
    text-decoration: none;
    margin: 0 5px;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer strong {
    color: #fff;
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive Adjustments === */
@media (max-width: 600px) {
    .cta {
        display: block;
        width: 80%;
        margin: 8px auto;
    }

    .profile-card img {
        height: 240px;
    }

    .seo-text,
    .faq {
        padding: 30px 7%;
    }
}