/* ============================================
   Azooroo - Thème Tourisme Arabe RTL
   Inspiré de Royagasht
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&display=swap');

:root {
    --yellow: #F59E0B;
    --yellow-light: #FEF3C7;
    --yellow-dark: #D97706;
    --black: #0F172A;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --gray-lighter: #E2E8F0;
    --white: #FFFFFF;
    --bg: #F8FAFC;
    --green: #22C55E;
    --green-light: #86EFAC;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --font: 'Vazirmatn', system-ui, sans-serif;
    --max-width: 1200px;
}

/* Reset */
.az-home {
    font-family: var(--font);
    direction: rtl;
    background: var(--bg);
    color: var(--black);
    margin: 0;
    overflow-x: hidden;
}

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

/* ===================== */
/* HEADER                */
/* ===================== */
.az-header {
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.az-header__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 32px;
}

.az-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.az-logo__icon {
    flex-shrink: 0;
}

.az-logo__text {
    font-family: var(--font);
    font-size: 26px;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.5px;
}

.az-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.az-nav__list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.az-nav__list a {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 0;
}

.az-nav__list a:hover,
.az-nav__list .current-menu-item a {
    color: var(--yellow);
}

.az-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.az-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    white-space: nowrap;
}

.az-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.az-btn--header {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

.az-btn--header:hover {
    background: var(--yellow);
    color: white;
    transform: translateY(-1px);
}

/* ===================== */
/* FOOTER                */
/* ===================== */
.az-footer {
    background: var(--black);
    color: white;
    padding: 60px 24px 40px;
    margin-top: 80px;
}

.az-footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.az-footer__brand .az-logo__text {
    color: white;
    font-size: 22px;
}

.az-footer__desc {
    color: var(--gray-light);
    font-size: 14px;
    margin-top: 8px;
}

.az-footer__copy {
    color: var(--gray-light);
    font-size: 13px;
}

@media (max-width: 768px) {
    .az-header__container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .az-nav {
        order: 3;
        flex-basis: 100%;
        overflow-x: auto;
    }
    
    .az-nav__list {
        gap: 20px;
    }
    
    .az-header__phone span {
        display: none;
    }
    
    .az-footer__container {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================== */
/* HERO SECTION          */
/* ===================== */
.az-hero {
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
    background: var(--bg);
}

.az-hero__bg-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, var(--yellow-light) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
    pointer-events: none;
}

.az-hero__container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.az-hero__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.az-hero__title-line {
    display: block;
    color: var(--black);
}

.az-hero__title--highlight {
    color: var(--yellow);
    position: relative;
}

.az-hero__star {
    display: inline-block;
    vertical-align: super;
    margin-right: -12px;
    margin-left: 4px;
}

.az-hero__dash-line {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.az-hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* ===================== */
/* SEARCH BAR            */
/* ===================== */
.az-search {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 50px;
    box-shadow: var(--shadow);
    padding: 6px;
    border: 1px solid var(--gray-lighter);
}

.az-search__icon-leaf {
    flex-shrink: 0;
    margin: 0 16px 0 8px;
}

.az-search__input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: 16px;
    color: var(--black);
    background: transparent;
    padding: 12px 0;
    text-align: right;
}

.az-search__input::placeholder {
    color: var(--gray-light);
}

.az-search__btn {
    flex-shrink: 0;
    background: var(--yellow);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 13px 28px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}

.az-search__btn:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
}

/* ===================== */
/* MAIN VISUAL GRID      */
/* ===================== */
.az-main-visual {
    padding: 40px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.az-main-visual__grid {
    display: grid;
    grid-template-columns: 280px 1fr 260px;
    grid-template-rows: auto;
    gap: 20px;
    align-items: end;
}

/* ===================== */
/* DESTINATION CARDS     */
/* ===================== */
.az-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.az-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.az-card--tall {
    height: 420px;
    grid-row: span 2;
}

.az-card--short {
    height: 200px;
}

.az-card__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.az-card:hover .az-card__image {
    transform: scale(1.05);
}

.az-card__expand {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.az-card:hover .az-card__expand {
    opacity: 1;
}

.az-card__label {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
}

/* ===================== */
/* CENTER HERO IMAGE     */
/* ===================== */
.az-main-visual__center {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}

.az-hero-image {
    position: relative;
    text-align: center;
}

.az-hero-image__woman {
    position: relative;
    z-index: 2;
    max-width: 320px;
    margin: 0 auto;
}

.az-hero-image__woman img {
    width: 100%;
    height: auto;
    display: block;
}

.az-hero-image__woman--placeholder {
    width: 280px;
    height: 380px;
    background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
    border-radius: var(--radius-lg);
}

.az-hero-image__suitcase {
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 140px;
    height: 100px;
    background: var(--yellow);
    border-radius: 16px 16px 8px 8px;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.az-hero-image__suitcase::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: var(--yellow-dark);
    border-radius: 2px;
}

/* Card stack */
.az-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===================== */
/* FEATURED SECTION      */
/* ===================== */
.az-featured {
    padding: 60px 24px 100px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.az-featured__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--black);
}

.az-featured__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.az-featured-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

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

.az-featured-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.az-featured-card__title {
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
}

/* ===================== */
/* HEADER OVERRIDES      */
/* ===================== */
.az-home .site-header {
    background: var(--white) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    padding: 0 24px;
}

.az-home .site-header .wp-block-site-title a {
    font-family: var(--font);
    font-weight: 700;
    font-size: 24px;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */
@media (max-width: 1024px) {
    .az-main-visual__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .az-main-visual__center {
        grid-column: 1 / -1;
        grid-row: 1;
        order: -1;
        margin-bottom: 24px;
    }
    
    .az-card--tall {
        height: 300px;
    }
    
    .az-card--short {
        height: 160px;
    }
    
    .az-hero-image__woman {
        max-width: 200px;
    }
    
    .az-hero-image__woman--placeholder {
        width: 180px;
        height: 250px;
    }
    
    .az-hero-image__suitcase {
        width: 100px;
        height: 70px;
    }
    
    .az-featured__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .az-main-visual__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .az-card-stack {
        flex-direction: row;
    }
    
    .az-card--short {
        flex: 1;
        height: 160px;
    }
    
    .az-card--tall {
        height: 280px;
    }
    
    .az-hero {
        padding: 80px 16px 60px;
    }
    
    .az-hero__title {
        font-size: 28px;
    }
    
    .az-hero__subtitle {
        font-size: 15px;
    }
    
    .az-search {
        flex-direction: column;
        border-radius: 24px;
        padding: 8px;
        gap: 8px;
    }
    
    .az-search__input {
        width: 100%;
        text-align: center;
    }
    
    .az-search__btn {
        width: 100%;
    }
    
    .az-featured__grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== */
/* ANIMATIONS            */
/* ===================== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.az-hero-image {
    animation: float 4s ease-in-out infinite;
}

@media (prefers-reduced-motion) {
    .az-hero-image {
        animation: none;
    }
}

/* Footer spacing */
.az-home .site-footer {
    margin-top: 80px;
}

/* ===================== */
/* CATEGORY PAGE         */
/* ===================== */
.az-category {
    padding: 40px 24px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.az-category__header {
    text-align: center;
    margin-bottom: 48px;
}

.az-category__title {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.az-category__desc {
    font-family: var(--font);
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Posts Grid */
.az-category__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

/* Post Card */
.az-post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.az-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.az-post-card__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.az-post-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.az-post-card:hover .az-post-card__img {
    transform: scale(1.05);
}

.az-post-card__content {
    padding: 20px;
}

.az-post-card__title {
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
}

.az-post-card__title a {
    color: var(--black);
    text-decoration: none;
}

.az-post-card__title a:hover {
    color: var(--yellow-dark);
}

.az-post-card__excerpt {
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 12px;
}

.az-post-card__link {
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--yellow-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.az-post-card__link:hover {
    color: var(--black);
}

.az-category__empty {
    text-align: center;
    font-family: var(--font);
    color: var(--gray);
    font-size: 1.1rem;
    padding: 60px 0;
}

/* ===================== */
/* PAGINATION            */
/* ===================== */
.az-pagination {
    text-align: center;
    padding: 20px 0;
}

.az-pagination .page-numbers {
    display: inline-flex;
    gap: 6px;
    font-family: var(--font);
}

.az-pagination .page-numbers > * {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--white);
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: all 0.2s;
}

.az-pagination .page-numbers .current {
    background: var(--yellow);
    color: var(--white);
    font-weight: 700;
}

.az-pagination .page-numbers a:hover {
    background: var(--yellow-light);
    color: var(--yellow-dark);
}

/* ===================== */
/* SINGLE POST           */
/* ===================== */
.az-single {
    padding: 40px 24px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.az-single__container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.az-single__header {
    margin-bottom: 32px;
}

.az-single__title {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.az-single__meta {
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray);
}

.az-single__cats {
    display: flex;
    gap: 8px;
}

.az-single__cats a {
    background: var(--yellow-light);
    color: var(--yellow-dark);
    padding: 4px 12px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.az-single__featured {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
}

.az-single__featured img {
    width: 100%;
    height: auto;
    display: block;
}

.az-single__content {
    font-family: var(--font);
    font-size: 1.1rem;
    line-height: 2;
    color: var(--black);
}

.az-single__content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--black);
}

.az-single__content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 32px 0 12px;
}

.az-single__content p {
    margin-bottom: 16px;
}

.az-single__content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 24px 0;
}

.az-single__content ul, .az-single__content ol {
    margin: 16px 0;
    padding-right: 24px;
}

.az-single__content li {
    margin-bottom: 8px;
}

/* ===================== */
/* RESPONSIVE            */
/* ===================== */
@media (max-width: 768px) {
    .az-category__grid {
        grid-template-columns: 1fr;
    }

    .az-category__title {
        font-size: 1.5rem;
    }

    .az-single__container {
        padding: 24px;
    }

    .az-single__title {
        font-size: 1.5rem;
    }
}


/* ===================== */
/* HOMEPAGE V2           */
/* ===================== */

/* Hero */
.az-hero {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 50%, #FFFBEB 100%);
    position: relative;
    overflow: hidden;
}

.az-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(245,158,11,0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 30%, rgba(245,158,11,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.az-hero__container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.az-hero__title {
    font-family: var(--font);
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 20px;
}

.az-hero__title--highlight {
    color: var(--yellow-dark);
    display: block;
}

.az-hero__subtitle {
    font-family: var(--font);
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.az-hero__search {
    display: flex;
    max-width: 480px;
    margin: 0 auto 48px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-radius: 60px;
    overflow: hidden;
}

.az-hero__search-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    outline: none;
    color: var(--black);
    direction: rtl;
}

.az-hero__search-btn {
    padding: 16px 28px;
    background: var(--yellow);
    color: var(--white);
    border: none;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.az-hero__search-btn:hover {
    background: var(--yellow-dark);
}

.az-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.az-hero__stat {
    text-align: center;
}

.az-hero__stat strong {
    display: block;
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow-dark);
}

.az-hero__stat span {
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--gray);
}

/* Categories Grid */
.az-cats {
    padding: 80px 24px;
    background: var(--white);
}

.az-cats__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.az-section-title {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    text-align: center;
    margin-bottom: 40px;
}

.az-cats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.az-cat-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}

.az-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow-light);
}

.az-cat-card__icon {
    margin-bottom: 16px;
}

.az-cat-card__title {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.az-cat-card__desc {
    font-family: var(--font);
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Article Sections */
.az-section {
    padding: 60px 24px;
}

.az-section:nth-child(even) {
    background: var(--bg);
}

.az-section__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.az-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.az-section__header .az-section-title {
    margin-bottom: 0;
    text-align: right;
}

.az-section__more {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--yellow-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.az-section__more:hover {
    color: var(--black);
}

.az-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.az-article-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.az-article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.az-article-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.az-article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.az-article-card:hover .az-article-card__img img {
    transform: scale(1.05);
}

.az-article-card__body {
    padding: 16px;
}

.az-article-card__title {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CTA Section */
.az-cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    text-align: center;
}

.az-cta__container {
    max-width: 600px;
    margin: 0 auto;
}

.az-cta__title {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.az-cta__desc {
    font-family: var(--font);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.az-btn--cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--yellow-dark);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.az-btn--cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .az-hero__title {
        font-size: 2rem;
    }

    .az-hero__stats {
        gap: 24px;
    }

    .az-hero__stat strong {
        font-size: 1.5rem;
    }

    .az-cats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .az-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .az-section__header {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .az-cta__title {
        font-size: 1.5rem;
    }
}


/* ===================== */
/* CONTACT FORM          */
/* ===================== */
.az-contact {
    padding: 80px 24px;
    background: var(--bg);
}

.az-contact__container {
    max-width: 600px;
    margin: 0 auto;
}

.az-contact__desc {
    text-align: center;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.az-contact .wpcf7-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.az-contact .wpcf7-form input[type="text"],
.az-contact .wpcf7-form input[type="email"],
.az-contact .wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1rem;
    color: var(--black);
    background: var(--bg);
    transition: border-color 0.2s;
    direction: rtl;
    margin-bottom: 16px;
}

.az-contact .wpcf7-form input:focus,
.az-contact .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--white);
}

.az-contact .wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.az-contact .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 16px;
    background: var(--yellow);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.az-contact .wpcf7-form input[type="submit"]:hover {
    background: var(--yellow-dark);
}

.az-contact .wpcf7-not-valid-tip {
    font-family: var(--font);
    font-size: 0.85rem;
    color: #DC2626;
    margin-top: -12px;
    margin-bottom: 12px;
}

.az-contact .wpcf7-response-output {
    font-family: var(--font);
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    margin-top: 16px;
}
