@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #08090B;
    --bg-soft: #101216;
    --card: rgba(255, 255, 255, 0.045);
    --card-strong: rgba(255, 255, 255, 0.075);
    --text: #F4F4F4;
    --muted: #B7BBC2;
    --muted-2: #8F949C;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --accent: #18C7D8;
    --accent-2: #74F3FF;
    --silver: #D7D8DA;
    --dark-metal: #14171C;
    --shadow: rgba(0, 0, 0, 0.55);
    --whatsapp: #25D366;
    --danger: #FF6B6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(24, 199, 216, 0.16), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(180deg, #0B0C0F 0%, #060708 100%);
    color: var(--text);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 500;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent 75%);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.header {
    width: 100%;
    padding: 16px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(8, 9, 11, 0.74);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(116, 243, 255, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(116, 243, 255, 0.18);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.brand span {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--silver);
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    color: #DADCE0;
    font-size: 14px;
    font-weight: 700;
    flex-wrap: wrap;
}

.nav a {
    position: relative;
    opacity: 0.86;
    transition: 0.25s;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: 0.25s;
}

.nav a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.logout-form {
    margin: 0;
    display: inline-flex;
}

.header-btn,
.primary-btn,
.secondary-btn,
.secondary-header-btn,
.account-header-btn,
.pricing-btn,
.form-btn,
.instagram-btn,
.whatsapp-btn {
    user-select: none;
}

.header-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #061013;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(24, 199, 216, 0.22);
    transition: 0.25s;
    border: none;
    min-height: 46px;
    white-space: nowrap;
}

.logout-btn {
    cursor: pointer;
    font-family: 'Tajawal', Arial, sans-serif;
}

.header-btn:hover,
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(24, 199, 216, 0.32);
}

.secondary-btn,
.secondary-header-btn,
.account-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.035);
    transition: 0.25s;
    min-height: 46px;
    white-space: nowrap;
}

.secondary-btn:hover,
.secondary-header-btn:hover,
.account-header-btn:hover {
    border-color: rgba(24, 199, 216, 0.55);
    color: var(--accent-2);
    transform: translateY(-3px);
    background: rgba(24, 199, 216, 0.08);
}

.account-header-btn {
    gap: 10px;
}

.account-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background:
        radial-gradient(circle at 50% 34%, var(--accent-2) 0 4px, transparent 5px),
        radial-gradient(circle at 50% 78%, var(--accent-2) 0 8px, transparent 9px),
        rgba(24, 199, 216, 0.12);
    border: 1px solid rgba(116, 243, 255, 0.45);
    box-shadow: 0 0 18px rgba(24, 199, 216, 0.22);
}

.hero {
    min-height: calc(100vh - 91px);
    padding: 105px 7% 125px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 58px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #060708;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/images/cooz-hero-bg.jpeg') center center / cover no-repeat;
    opacity: 0.92;
    transform: scale(1.03);
    animation: heroBgFloat 14s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 8, 10, 0.84), rgba(6, 8, 10, 0.38), rgba(6, 8, 10, 0.78)),
        linear-gradient(180deg, rgba(6, 8, 10, 0.22), rgba(6, 8, 10, 0.38) 42%, rgba(6, 8, 10, 0.92) 100%),
        radial-gradient(circle at 72% 34%, rgba(24, 199, 216, 0.18), transparent 32%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 100% 100%, 58px 58px, 58px 58px;
}

@keyframes heroBgFloat {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }

    to {
        transform: scale(1.07) translate3d(-12px, 8px, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-2);
    background: rgba(24, 199, 216, 0.09);
    border: 1px solid rgba(24, 199, 216, 0.28);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 20px;
}

.badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px var(--accent);
}

.hero h1 {
    max-width: 760px;
    font-size: 58px;
    line-height: 1.16;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #FFFFFF;
    text-shadow:
        0 6px 0 rgba(0, 0, 0, 0.16),
        0 18px 60px rgba(0, 0, 0, 0.78);
}

.hero p {
    color: #E1E6EA;
    max-width: 650px;
    font-size: 17px;
    margin-bottom: 34px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
    z-index: 3;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
        rgba(8, 10, 14, 0.76);
    border: 1px solid rgba(116, 243, 255, 0.14);
    border-radius: 34px;
    padding: 32px;
    box-shadow:
        0 35px 90px var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: 0.35s;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 34px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(24,199,216,0.48), transparent 35%, rgba(255,255,255,0.18));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card:hover {
    transform: translateY(-8px);
}

.card-top {
    height: 260px;
    border-radius: 26px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 50% 38%, rgba(24, 199, 216, 0.16), transparent 48%),
        linear-gradient(145deg, #15181D, #090B0E);
    position: relative;
}

.card-top::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    pointer-events: none;
    border: 1px solid rgba(116, 243, 255, 0.12);
    background:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
}

.card-top img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    padding: 0;
    position: relative;
    z-index: 1;
    filter: none;
}

.card-label {
    display: inline-block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    font-weight: 900;
    color: #FFFFFF;
}

.hero-card p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 14px;
}

.card-description {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 18px;
}

.card-description p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #D9DEE3;
}

.section {
    padding: 92px 7%;
    position: relative;
    background:
        linear-gradient(180deg, rgba(6, 8, 10, 0.94), rgba(6, 8, 10, 0.90));
}

.section::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24,199,216,0.09), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    right: -130px;
    top: 80px;
}

.section-heading {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.section-heading span {
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 900;
}

.section-heading h2 {
    font-size: 42px;
    margin-top: 10px;
    font-weight: 900;
    color: #FFFFFF;
}

.section-subtitle {
    max-width: 760px;
    margin: 14px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.services-grid,
.work-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.service-card,
.work-card,
.pricing-card {
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
        rgba(10, 13, 17, 0.76);
    border: 1px solid rgba(116, 243, 255, 0.10);
    border-radius: 28px;
    padding: 32px;
    transition: 0.3s;
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.service-card::before,
.work-card::before,
.pricing-card::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(24,199,216,0.12), transparent 65%);
}

.service-card:hover,
.work-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(24, 199, 216, 0.42);
    box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}

.service-number {
    display: inline-block;
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 18px;
}

.service-card h3,
.work-card h3,
.pricing-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
    font-weight: 900;
    color: #FFFFFF;
}

.service-card p,
.work-card p,
.pricing-desc {
    color: var(--muted);
    font-size: 14px;
}

.service-card ul {
    margin-top: 20px;
    list-style: none;
    display: grid;
    gap: 10px;
}

.service-card li {
    color: #D8DBDF;
    font-size: 14px;
    padding-right: 18px;
    position: relative;
}

.service-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 9px;
    box-shadow: 0 0 14px rgba(24,199,216,0.55);
}

.work-section {
    background:
        linear-gradient(180deg, rgba(6, 8, 10, 0.90), rgba(6, 8, 10, 0.92));
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.work-preview {
    height: 190px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(24, 199, 216, 0.55), rgba(255, 255, 255, 0.08)),
        linear-gradient(145deg, #181B21, #0B0D10);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.work-preview::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background:
        linear-gradient(rgba(255,255,255,0.08) 12px, transparent 12px),
        linear-gradient(90deg, rgba(255,255,255,0.07), transparent);
    background-size: 100% 34px, 100% 100%;
}

.pricing-card.featured {
    border-color: rgba(24, 199, 216, 0.65);
    background:
        linear-gradient(145deg, rgba(24, 199, 216, 0.15), rgba(255,255,255,0.045)),
        rgba(10, 13, 17, 0.82);
    transform: translateY(-8px);
}

.popular {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #061013;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 18px;
}

.price {
    color: var(--accent-2);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
}

.pricing-card li {
    color: #D8DBDF;
    font-size: 14px;
}

.pricing-card li::before {
    content: "— ";
    color: var(--accent);
    font-weight: 900;
}

.pricing-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.92);
    color: #08090B;
    padding: 13px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    transition: 0.25s;
}

.pricing-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transform: translateY(-3px);
}

.contact {
    margin: 65px 7% 95px;
    padding: 52px;
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.02)),
        rgba(8, 10, 14, 0.78);
    border: 1px solid rgba(116, 243, 255, 0.12);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
    box-shadow: 0 35px 90px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.contact::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    left: -120px;
    top: -140px;
    background: radial-gradient(circle, rgba(24,199,216,0.16), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

.contact-content,
.contact-form-wrapper,
.contact-login-card {
    position: relative;
    z-index: 1;
}

.contact-content h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.contact-content p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 26px;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.instagram-btn,
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color: #fff;
    padding: 15px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}

.instagram-btn {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.whatsapp-btn {
    background: var(--whatsapp);
}

.instagram-btn:hover,
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    background: rgba(6, 7, 9, 0.66);
    border: 1px solid rgba(116, 243, 255, 0.10);
    border-radius: 28px;
    padding: 30px;
    display: grid;
    gap: 18px;
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.contact-login-card {
    max-width: none;
}

.contact-login-card .auth-heading {
    margin-bottom: 0;
}

.contact-login-card h2 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-login-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.success-message {
    display: none;
    background: rgba(24, 199, 216, 0.12);
    border: 1px solid rgba(24, 199, 216, 0.42);
    color: var(--text);
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 9, 11, 0.82);
    color: var(--text);
    border-radius: 16px;
    padding: 14px 15px;
    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 14px;
    outline: none;
    transition: 0.25s;
}

.form-group textarea {
    resize: vertical;
    min-height: 125px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.38);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(24, 199, 216, 0.12);
}

.form-btn {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #061013;
    padding: 14px 20px;
    border-radius: 999px;
    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    transition: 0.25s;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(24,199,216,0.25);
}

/* AUTH PAGES */

.auth-section {
    min-height: calc(100vh - 91px);
    padding: 82px 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.auth-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: 8%;
    top: 12%;
    background: radial-gradient(circle, rgba(24, 199, 216, 0.14), transparent 68%);
    filter: blur(12px);
    pointer-events: none;
}

.auth-card {
    width: 100%;
    max-width: 560px;
    position: relative;
    z-index: 2;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.022)),
        rgba(15, 17, 22, 0.88);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 38px;
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    overflow: hidden;
}

.auth-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 34px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(24,199,216,0.42), transparent 38%, rgba(255,255,255,0.14));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.auth-heading {
    margin-bottom: 28px;
}

.auth-heading h1 {
    font-size: 34px;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.auth-heading p {
    color: var(--muted);
    font-size: 15px;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-error {
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.35);
    color: #FFD6D6;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.field-error {
    display: block;
    color: #FFB3B3;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
}

.field-hint {
    display: block;
    color: var(--muted-2);
    font-size: 12.5px;
    line-height: 1.6;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field input {
    padding-left: 52px;
}

.password-toggle {
    position: absolute;
    left: 10px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.password-toggle:hover {
    border-color: rgba(24, 199, 216, 0.55);
    background: rgba(24, 199, 216, 0.08);
}

.eye-icon {
    width: 21px;
    height: 14px;
    display: inline-block;
    position: relative;
    border: 2px solid rgba(244, 244, 244, 0.78);
    border-radius: 50% / 60%;
    transition: 0.25s;
}

.eye-icon::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-2);
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 0 12px rgba(116, 243, 255, 0.55);
    transition: 0.25s;
}

.eye-icon::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: rgba(244, 244, 244, 0.78);
    right: -5px;
    top: 6px;
    transform: rotate(-35deg);
    transition: 0.25s;
}

.password-toggle.is-visible .eye-icon {
    border-color: var(--accent-2);
    box-shadow: 0 0 14px rgba(24, 199, 216, 0.22);
}

.password-toggle.is-visible .eye-icon::after {
    opacity: 0;
    transform: rotate(0deg) scaleX(0);
}

.password-toggle.is-visible .eye-icon::before {
    background: #FFFFFF;
}

.terms-box {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px 16px;
    display: grid;
    gap: 8px;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.8;
    cursor: pointer;
}

.terms-label input {
    margin-top: 6px;
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.terms-label span {
    display: inline-block;
}

.terms-label a {
    color: var(--accent-2);
    font-weight: 900;
}

.terms-label a:hover {
    text-decoration: underline;
}

.legal-card {
    max-width: 960px;
}

.legal-content {
    display: grid;
    gap: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 2;
}

.legal-content h2 {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 900;
    margin-top: 14px;
}

.legal-content p {
    color: var(--muted);
}

.legal-content ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 4px 0 10px;
}

.legal-content li {
    position: relative;
    color: #D8DBDF;
    padding-right: 22px;
}

.legal-content li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(24, 199, 216, 0.55);
}

.legal-content hr {
    border: none;
    height: 1px;
    background: var(--line);
    margin: 24px 0 10px;
}

/* PROFILE PAGE */

.profile-section {
    align-items: flex-start;
}

.profile-layout {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.profile-card {
    max-width: none;
}

.profile-hero {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 86px;
    height: 86px;
    border-radius: 26px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 35% 25%, rgba(116, 243, 255, 0.38), transparent 35%),
        linear-gradient(135deg, rgba(24, 199, 216, 0.22), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(116, 243, 255, 0.28);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(24, 199, 216, 0.14);
}

.profile-avatar span {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.profile-heading {
    margin-bottom: 0;
}

.profile-info {
    display: grid;
    gap: 14px;
}

.profile-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
}

.profile-row span {
    color: var(--muted-2);
    font-size: 14px;
    font-weight: 800;
}

.profile-row strong {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    word-break: break-word;
}

.status-active {
    color: var(--accent-2) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-active::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(24, 199, 216, 0.75);
}

.profile-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.profile-actions a {
    flex: 1;
}

.profile-actions .profile-logout-form {
    flex: 1;
    display: flex;
    margin: 0;
}

.profile-logout-btn {
    width: 100%;
    cursor: pointer;
    font-family: 'Tajawal', Arial, sans-serif;
}

.profile-side-card {
    max-width: none;
}

.profile-side-card h2 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 24px;
}

.profile-feature-list {
    display: grid;
    gap: 16px;
}

.profile-feature {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    transition: 0.25s;
}

.profile-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 199, 216, 0.42);
    background: rgba(24, 199, 216, 0.055);
}

.profile-feature > span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #061013;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-size: 13px;
    font-weight: 900;
}

.profile-feature h3 {
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 6px;
}

.profile-feature p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

/* REQUESTS SECTION */

.requests-empty {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 34px 22px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(24, 199, 216, 0.13), transparent 42%),
        rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
}

.requests-empty h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
}

.requests-empty p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    max-width: 420px;
}

.requests-empty .primary-btn {
    margin-top: 8px;
    min-width: 180px;
}

.requests-list {
    display: grid;
    gap: 16px;
}

.request-card {
    padding: 20px;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
        rgba(8, 9, 11, 0.48);
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    transition: 0.25s;
}

.request-card:hover {
    transform: translateY(-4px);
    border-color: rgba(24, 199, 216, 0.42);
    background:
        linear-gradient(145deg, rgba(24,199,216,0.085), rgba(255,255,255,0.018)),
        rgba(8, 9, 11, 0.58);
}

.request-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.request-id {
    display: inline-block;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 6px;
}

.request-card h3 {
    color: #FFFFFF;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.4;
}

.request-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #061013;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(24, 199, 216, 0.18);
}

.request-message {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 18px;
    padding: 14px 16px;
    margin-bottom: 14px;
    word-break: break-word;
}

.request-meta {
    display: grid;
    gap: 9px;
    color: var(--muted-2);
    font-size: 13px;
}

.request-meta span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.request-meta strong {
    color: #FFFFFF;
    font-weight: 900;
    text-align: left;
    word-break: break-word;
}

.auth-switch {
    margin-top: 22px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.auth-switch a {
    color: var(--accent-2);
    font-weight: 900;
}

.auth-switch a:hover {
    text-decoration: underline;
}

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--whatsapp);
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.45);
    z-index: 999;
    transition: 0.25s;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

.footer {
    padding: 30px 7%;
    text-align: center;
    color: var(--muted-2);
    border-top: 1px solid var(--line);
    font-size: 14px;
    background: rgba(6, 8, 10, 0.92);
}

/* ADMIN STATUS UPDATE */

.admin-status-form {
    margin-top: 16px;
    padding: 16px;
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(24, 199, 216, 0.07), rgba(255, 255, 255, 0.018)),
        rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.075);
    display: grid;
    gap: 14px;
}

.admin-status-control {
    display: grid;
    gap: 8px;
}

.admin-status-control label {
    color: var(--text);
    font-size: 13px;
    font-weight: 900;
}

.admin-status-control select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 9, 11, 0.88);
    color: var(--text);
    border-radius: 16px;
    padding: 13px 15px;
    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 14px;
    font-weight: 800;
    outline: none;
    transition: 0.25s;
    cursor: pointer;
}

.admin-status-control select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(24, 199, 216, 0.12);
}

.admin-status-control option {
    background: #101216;
    color: #FFFFFF;
}

.admin-status-btn {
    width: 100%;
    min-height: 44px;
}

.admin-client-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-client-box div {
    display: grid;
    gap: 5px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid rgba(255, 255, 255, 0.055);
}

.admin-client-box span {
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 900;
}

.admin-client-box strong {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 900;
    word-break: break-word;
}

.admin-requests-card {
    overflow: visible;
}

.admin-request-card {
    position: relative;
}

.admin-request-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(24, 199, 216, 0.35), transparent);
    opacity: 0.65;
}

/* ADMIN FILTER STATS */

.admin-stats-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.admin-stat-card {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: 0.25s;
}

.admin-stat-card span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.admin-stat-card strong {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 900;
}

.admin-stat-card:hover,
.admin-stat-card.active-filter {
    transform: translateY(-3px);
    border-color: rgba(24, 199, 216, 0.55);
    background: rgba(24, 199, 216, 0.08);
}

.admin-stat-card.active-filter span,
.admin-stat-card.active-filter strong {
    color: var(--accent-2);
}

/* ADMIN WHATSAPP BUTTON */

.admin-whatsapp-btn {
    margin-top: 10px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: #FFFFFF;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transition: 0.25s;
    box-shadow: 0 12px 26px rgba(37, 211, 102, 0.18);
}

.admin-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(37, 211, 102, 0.28);
}

@media (max-width: 1050px) {
    .header {
        gap: 22px;
    }

    .nav {
        gap: 18px;
    }

    .hero h1 {
        font-size: 48px;
    }
}

@media (max-width: 900px) {
    body {
        font-size: 14px;
    }

    .header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 5%;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand span {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        font-size: 13px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        display: grid;
        grid-template-columns: 1fr;
    }

    .header-btn,
    .secondary-header-btn,
    .account-header-btn {
        width: 100%;
    }

    .logout-form {
        width: 100%;
    }

    .logout-btn {
        width: 100%;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 72px 5% 84px;
        gap: 34px;
    }

    .hero::before {
        opacity: 0.70;
        background-position: center top;
        animation: none;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.25;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-actions a {
        width: 100%;
    }

    .hero-card {
        padding: 24px;
        border-radius: 26px;
    }

    .card-top {
        height: 210px;
    }

    .section {
        padding: 72px 5%;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .services-grid,
    .work-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .contact {
        grid-template-columns: 1fr;
        padding: 30px;
        margin: 50px 5% 82px;
    }

    .contact-content h2 {
        font-size: 30px;
    }

    .contact-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .instagram-btn,
    .whatsapp-btn {
        width: 100%;
        font-size: 14px;
        padding: 14px 20px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-login-actions {
        grid-template-columns: 1fr;
    }

    .contact-login-card h2 {
        font-size: 26px;
    }

    .auth-section {
        padding: 54px 5%;
        min-height: auto;
    }

    .auth-card {
        padding: 28px;
        border-radius: 28px;
    }

    .auth-heading h1 {
        font-size: 28px;
    }

    .terms-box {
        padding: 13px 14px;
    }

    .terms-label {
        font-size: 13px;
    }

    .legal-content {
        font-size: 14px;
        line-height: 1.9;
    }

    .legal-content h2 {
        font-size: 19px;
    }

    .profile-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .profile-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-avatar {
        width: 74px;
        height: 74px;
        border-radius: 22px;
    }

    .profile-avatar span {
        font-size: 32px;
    }

    .profile-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .profile-row strong {
        text-align: right;
    }

    .profile-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .profile-actions .profile-logout-form {
        width: 100%;
    }

    .profile-side-card h2 {
        font-size: 26px;
    }

    .requests-empty {
        min-height: 230px;
        padding: 28px 18px;
    }

    .request-card {
        padding: 18px;
    }

    .request-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-status {
        width: fit-content;
    }

    .request-meta span {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .request-meta strong {
        text-align: right;
    }

    .admin-status-form {
        padding: 14px;
        border-radius: 18px;
    }

    .admin-status-control select {
        font-size: 13px;
        padding: 12px 14px;
    }

    .admin-client-box div {
        padding: 11px 13px;
    }

    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 18px;
        left: 18px;
    }
}