/* Theme CSS - Colors and Components */

:root {
    /* Palette inferred from industry standards and request */
    --color-primary: #2c3e50;
    /* Dark Blue/Charcoal */
    --color-secondary: #f39c12;
    /* Orange Accent */
    --color-accent: #e67e22;
    --color-text: #333333;
    --color-light-grey: #f8f9fa;
    --color-border: #e9ecef;

    /* CTA Specific */
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #128c7e;
    --color-white: #ffffff;
}

/* Headers */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Header */
header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../img/hero.gif') no-repeat center center/cover;
    /* Ideally background needs an image. Using a fallback or pattern */
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
}

.icon-cta {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--color-secondary);
    text-align: center;
}

.feature-card h3 {
    margin-top: 15px;
}

/* Workflow Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    counter-reset: step;
}

.step-item {
    flex: 1;
    min-width: 250px;
    background: var(--color-light-grey);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.step-item::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Types List */
.types-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.types-list li {
    background: var(--color-white);
    padding: 15px;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-light-grey);
}

.testimonial-card {
    background: var(--color-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    color: var(--color-primary);
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.faq-q {
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #7f8c8d;
    padding: 40px 0;
    font-size: 0.9rem;
}

footer h4 {
    color: #bdc3c7;
}

footer p {
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

footer .legal-info {
    opacity: 0.5;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }
}

/* Pulsating Animation */
#loc-highlight, .pulsate-red {
    color: #e74c3c !important;
    /* Red color */
    animation: pulsered 2s infinite;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: 800;
    display: block !important;
    /* Force display */
}

@keyframes pulsered {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}