/* Hekam public site — Travolo-inspired theme (hekam.co.uk) */
:root {
    --theme-color: #ff681a;
    --theme-color2: #37d4d9;
    --vs-secondary-color: #111330;
    --title-color: #1c1c1c;
    --body-color: #505050;
    --smoke-color: #f7f7f7;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--body-color);
}

/* Section eyebrow label */
.section-eyebrow {
    color: var(--theme-color);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

/* Section titles */
.section-title {
    color: var(--title-color);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Primary button */
.btn-theme {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--theme-color);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    transition: background-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.btn-theme:hover {
    background-color: #e55a10;
    color: #fff;
    transform: translateY(-1px);
}

.btn-theme-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    transition: all 0.2s;
    text-decoration: none;
    background: transparent;
}

.btn-theme-outline:hover {
    background-color: var(--theme-color);
    color: #fff;
}

/* Page banner (inner pages) */
.page-banner {
    background: linear-gradient(135deg, var(--vs-secondary-color) 0%, #1a1d4a 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Feature / info cards */
.travolo-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(17, 19, 48, 0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}

.travolo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(17, 19, 48, 0.12);
}

/* Icon circle */
.icon-circle {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 104, 26, 0.1);
    color: var(--theme-color);
    flex-shrink: 0;
}

.icon-circle-teal {
    background: rgba(55, 212, 217, 0.15);
    color: var(--theme-color2);
}

/* Checklist */
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--body-color);
}

.check-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--theme-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Stats counter */
.stat-box {
    text-align: center;
    padding: 2rem 1.5rem;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--theme-color);
    line-height: 1;
}

.stat-label {
    color: var(--body-color);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* CTA offer banner */
.cta-banner {
    background: linear-gradient(135deg, var(--vs-secondary-color) 0%, #1e2255 60%, var(--theme-color) 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}

.cta-banner::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: rgba(55, 212, 217, 0.15);
}

/* Testimonial card */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(17, 19, 48, 0.08);
    border-left: 4px solid var(--theme-color);
}

/* Contact info box */
.contact-info-box {
    background: var(--smoke-color);
    border-radius: 1rem;
    padding: 1.75rem;
    border-left: 4px solid var(--theme-color);
}

.contact-info-box h3 {
    color: var(--title-color);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

/* Form inputs */
.form-input-travolo {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--title-color);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.form-input-travolo:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 3px rgba(255, 104, 26, 0.15);
}

/* Hero overlay */
.hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(17, 19, 48, 0.55) 0%,
        rgba(17, 19, 48, 0.75) 100%
    );
}

/* Nav active state */
.nav-active {
    color: var(--theme-color) !important;
    font-weight: 600;
}
