.amezam-hero-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* Tabs */
.amezam-hero-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.amezam-hero-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: .05em;
    cursor: pointer;
    position: relative;
}

.amezam-hero-tab.active::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: -1px;
    height: 3px;
    border-radius: 999px;
    background: #f3c94b;
}

/* Panels */
.amezam-hero-panels {
    margin-top: 0.5rem;
}

.amezam-hero-panel {
    display: none;
}

.amezam-hero-panel.active {
    display: block;
}

/* Mini tracking form */
.amezam-hero-track-row {
    display: flex;
    margin-top: 0.5rem;
}

.amezam-hero-track-row input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 999px 0 0 999px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.amezam-hero-track-row button {
    padding: 0.75rem 1.5rem;
    border-radius: 0 999px 999px 0;
    border: none;
    background: #f3c94b;
    font-weight: 600;
    cursor: pointer;
}

/* CONTACT WIDGET STYLING */
.amezam-contact-widget {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.amezam-contact-widget .acw-row {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Phone number with WhatsApp icon */
.acw-number {
    text-decoration: none;
    color: #5A2AB5; /* purple */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.acw-number .fa-whatsapp {
    color: #25D366;   /* WhatsApp green */
    font-size: 20px;
}

/* Email */
.acw-email {
    text-decoration: none;
    color: #5A2AB5;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.acw-email .fa-envelope {
    font-size: 18px;
    color: #5A2AB5;
}

/* Team link */
.acw-team-link {
    text-decoration: none;
    color: #5A2AB5;
    font-weight: 600;
}

/* HERO SCHEDULE FORM */
.amezam-schedule-hero {
    font-size: 14px;
    color: #333;
}

.amezam-schedule-hero .ash-heading {
    margin-bottom: 8px;
}

.amezam-schedule-hero .ash-sub {
    margin-bottom: 12px;
}

.amezam-schedule-hero .ash-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amezam-schedule-hero .ash-form select {
    padding: 10px;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.amezam-schedule-hero .ash-form button {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 999px;
    border: none;
    background: #f3c94b;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}
/* RATES HERO BLOCK */
.amezam-rates-hero {
    font-size: 14px;
    color: #333;
}

.amezam-rates-hero p {
    margin-bottom: 10px;
}

.amezam-rates-hero .arh-button {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    background: #f3c94b;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

/* Hero card: centered, nice desktop width */
.amezam-hero-card {
    width: 100%;
    max-width: 960px;      /* how wide the card can get on desktop */
    margin: 0 auto;        /* center it */
    box-sizing: border-box;
    text-align: center;

}

/* Mobile: almost full width, but still padded */
@media (max-width: 768px) {
    .amezam-hero-card {
        max-width: 95%;
    }
}

