.hero-pattern {
    background-color: #fff7ed;
    background-image: 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='%23ea580c' fill-opacity='0.05'%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");
}

.menu-pattern {
    background-color: #fcfaf8;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L22.5 16l2.5-2.5V16h15v2H25v2.5L22.5 18l-2.5 2.5zm0 0v2.5l2.5-2.5L25 23v-2.5h15v-2H25v-2.5l-2.5 2.5L20 16v-2.5l2.5-2.5L25 9.5v-2h15v-2H25v-2.5L22.5 5.5 20 8V5.5l2.5-2.5L25 5.5v-2h15v-2H25V-1L22.5 1.5 20-1v2.5L17.5 4 15 1.5v-2H0v2h15v2.5L17.5 1.5 20 4v2.5l-2.5 2.5L15 6.5v-2H0v2h15v2.5L17.5 6.5 20 9v2.5l-2.5 2.5L15 11.5v-2H0v2h15v2.5L17.5 11.5 20 14v2.5l-2.5 2.5L15 16.5v-2H0v2h15v2.5L17.5 16.5 20 19v1.5z' fill='%23e7e5e4' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.fade-in {
    animation: fadeIn 0.4s ease-in-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-float {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hover-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #f97316, #ea580c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.hover-card:hover::before {
    transform: scaleX(1);
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(-6deg) scale(1.05); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0px) rotate(15deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.animate-float-1 { animation: float-1 7s ease-in-out infinite; }
.animate-float-2 { animation: float-2 5s ease-in-out infinite 1s; }
.animate-float-3 { animation: float-3 8s ease-in-out infinite 2s; }

/* WhatsApp icon — Font Awesome brand icon, sized consistently */
.wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

.wa-icon--sm { font-size: 1.125rem; }
.wa-icon--md { font-size: 1.25rem; }
.wa-icon--lg { font-size: 1.5rem; }
.wa-icon--xl { font-size: 1.875rem; }

.wa-float .wa-icon {
    font-size: 1.75rem;
}

/* ── Copy protection (deterrent layer) ── */

.protected-site {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.protected-site img {
    -webkit-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

.protected-site a,
.protected-site button {
    -webkit-user-select: none;
    user-select: none;
}

body.devtools-detected {
    overflow: hidden;
}

body.devtools-detected::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99998;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(44, 31, 28, 0.85);
}

body.devtools-detected::after {
    content: '© 2026 Amina Javed · Protected Content';
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff7ed;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 600;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
}
