:root {
    --primary: #f05721;
    --primary-light: #ff8b5e;
    --primary-soft: #fff4ef;
    --text: #1a1a1a;
    --muted: #555555;
    --bg: #ffffff;
    --bg-alt: #fcfcfc;
    --border: #eef0f2;
    --shadow-soft: 0 10px 30px rgba(240, 87, 33, 0.05);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}

.nav {
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: 140px;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary);
}

.nav-button {
    background: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 87, 33, 0.2);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 87, 33, 0.4);
}

/* ================= HERO ================= */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 90vh;
    background: radial-gradient(circle at 85% 20%, #fff0e8, transparent 40%);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(240, 87, 33, 0.15);
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    color: #111;
}

.hero h1 span {
    color: var(--primary);
}

.hero h2 {
    font-size: 28px;
    margin: 20px 0;
    line-height: 1.4;
    color: #333;
    font-weight: 700;
}

.hero p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 580px;
}

.actions {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.primary-btn {
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(240, 87, 33, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(240, 87, 33, 0.4);
}

.outline-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    background: transparent;
}

.outline-btn:hover {
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.advantages {
    display: flex;
    gap: 15px;
    margin-top: 50px;
}

.advantages div {
    background: white;
    border: 1px solid var(--border);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.advantages strong {
    font-size: 18px;
}

/* ================= PRODUCT MOCKUP ================= */
.product-preview {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(240, 87, 33, 0.15);
    filter: blur(80px);
    z-index: 1;
}

.laptop {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    padding: 12px;
    background: #f0f0f0;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.8);
}

.screen {
    height: 290px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-dark);
    color: #222;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.7);
    animation: float 5s ease-in-out infinite;
}

.card-one {
    top: 10%;
    left: -5%;
}

.card-two {
    bottom: 10%;
    right: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ================= TRUST CARDS SECTION ================= */
.trust-cards-section {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trust-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-light);
}

.trust-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.trust-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ================= FEATURES ================= */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-heading span, .tag {
    color: var(--primary);
    background: var(--primary-soft);
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.section-heading h2 {
    font-size: 36px;
    margin: 15px 0;
    font-weight: 800;
    color: #111;
}

.section-heading p {
    color: var(--muted);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 40px 35px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(240, 87, 33, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ================= ABOUT ================= */
.about-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin: 20px 0;
    font-weight: 800;
}

.about-text p {
    line-height: 1.8;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 20px;
}

/* تنسيق الكارت المحتوي على الأيقونة */
.about-card {
    background: linear-gradient(135deg, var(--primary), #ff7842);
    color: white;
    padding: 40px 30px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(240, 87, 33, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* التحكم في حجم الأيقونة الضخمة وتحويلها للون الأبيض */
.about-card-logo {
    width: 100%;
    max-width: 120px; /* تحديد الحجم الأقصى بدقة لتفادي الـ 2050px */
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* سحر الـ CSS لتحويل أي لوجو ملون إلى أبيض ناصع */
    object-fit: contain;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

.about-card div {
    font-size: 64px;
    margin-bottom: 20px;
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

/* ================= WORKFLOW ================= */
.workflow {
    padding: 100px 0;
    background: white;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

.timeline-item {
    background: var(--bg-alt);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-item:hover {
    background: white;
    box-shadow: var(--shadow-dark);
    border-color: var(--primary-light);
}

.number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(240, 87, 33, 0.3);
}

.timeline-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--muted);
}

/* ================= OFFLINE SECTION ================= */
.offline-section {
    padding: 60px 0;
}

.offline-content {
    background: #11141a;
    color: white;
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    gap: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.offline-content h2 {
    font-size: 38px;
    margin: 20px 0;
    font-weight: 800;
}

.offline-content p {
    line-height: 1.8;
    color: #b3b9c1;
    font-size: 16px;
    margin-bottom: 25px;
}

.offline-list {
    list-style: none;
}

.offline-list li {
    margin: 12px 0;
    font-weight: 600;
    font-size: 15px;
    color: #e2e5e9;
}

.offline-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.offline-card div {
    font-size: 64px;
    margin-bottom: 15px;
}

.offline-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.offline-card p {
    font-size: 13px;
    color: #a0a6b0;
    margin-bottom: 0;
}

/* ================= NOOR SECTION ================= */
.noor-section {
    padding: 60px 0;
}

.noor-box {
    background: linear-gradient(135deg, #fff, #fff6f2);
    padding: 50px 60px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    gap: 40px;
}

.noor-text h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.noor-text p {
    font-size: 16px;
    color: var(--muted);
    max-width: 750px;
}

.saudi {
    font-size: 90px;
    line-height: 1;
}

/* ================= PRICING PLANS ================= */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 45px 35px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

.pricing-card h3 {
    font-size: 24px;
    color: #222;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 800;
}

.offer {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.price {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin: 15px 0;
    line-height: 1.2;
}

.price small {
    font-size: 15px;
    color: var(--muted);
    font-weight: 600;
}

.trial {
    background: #f8fafc;
    padding: 12px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card ul li {
    margin: 14px 0;
    font-size: 14.5px;
    color: #444;
    font-weight: 600;
}

.pricing-btn, .whatsapp-btn {
    display: block;
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 87, 33, 0.2);
}

.pricing-btn:hover {
    box-shadow: 0 8px 25px rgba(240, 87, 33, 0.4);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.outline-style {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}
.outline-style:hover {
    background: var(--primary-soft);
}

.featured {
    border: 3px solid var(--primary);
    transform: scale(1.03);
}
.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.popular {
    position: absolute;
    top: -18px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.note {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

/* ================= VIDEOS ================= */
.videos-section {
    padding: 100px 0;
    background: white;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-alt);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.video-thumbnail {
    height: 200px;
    background: linear-gradient(45deg, #ffe0d3, #fff1eb);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(240, 87, 33, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover .play {
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
    text-align: center;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* ================= FAQ ================= */
.faq-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.faq-item p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.7;
}

/* ================= CONTACT ================= */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary), #e0440e);
    color: white;
    padding: 60px;
    border-radius: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(240, 87, 33, 0.3);
}

.contact-text-side h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-text-side p {
    font-size: 16px;
    opacity: 0.9;
}

.contact-btn {
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* ================= FOOTER ================= */
.footer {
    background: #11141a;
    color: #8a94a6;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #1e232d;
}

.footer img {
    width: 130px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* يجعل اللوجو يظهر باللون الأبيض ليتناسب مع الخلفية المظلمة */
}

.footer p {
    font-size: 14px;
}

/* ================= WHATSAPP FLOATING ================= */
.whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ================= RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .hero-grid { gap: 40px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: auto; }
    .featured { transform: none; }
    .featured:hover { transform: translateY(-10px); }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    nav { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero p { margin: auto; }
    .actions, .advantages { justify-content: center; flex-wrap: wrap; }
    .product-preview { margin-top: 50px; }
    .about-grid, .offline-content, .noor-box, .contact-box { grid-template-columns: 1fr; flex-direction: column; text-align: center; }
    .noor-box { padding: 40px; }
    .saudi { margin-top: 20px; }
    .videos-grid { grid-template-columns: 1fr; max-width: 400px; margin: auto; }
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: 'Cairo',sans-serif;
    font-size: 15px;
    transition: .3s;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #ff6744;
        outline: none;
    }

.contact-form textarea {
    resize: vertical;
    margin-bottom: 20px;
}

.w-100 {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

    .info-card .icon {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .info-card h3 {
        margin-bottom: 10px;
    }

    .info-card a {
        color: #ff6744;
        text-decoration: none;
    }

.trust-image {
    text-align: center;
    margin-top: 10px;
}

    .trust-image img {
        max-width: 100%;
    }

    .trust-image p {
        margin-top: 10px;
        font-weight: 700;
    }

.success-message {
    margin-top: 20px;
    background: #dcfce7;
    color: #166534;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.error-message {
    margin-top: 20px;
    background: #fee2e2;
    color: #991b1b;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.recaptcha-note {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

    .recaptcha-note a {
        color: #ff6744;
    }

@media(max-width:992px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   Modern Contact Section
========================== */


.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}



.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    margin-top: 50px;
    align-items: start;
}



/* Form */

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}



.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}



.form-group {
    margin-bottom: 22px;
}



    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #334155;
        font-weight: 700;
    }



.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-family: 'Cairo';
    font-size: 15px;
    transition: .3s;
}



    .modern-form input:focus,
    .modern-form textarea:focus {
        background: white;
        border-color: #ff6744;
        box-shadow: 0 0 0 4px rgba(37,99,235,.12);
        outline: none;
    }



.modern-form textarea {
    resize: none;
}



.contact-submit {
    width: 100%;
    border: 0;
    padding: 16px;
    border-radius: 15px;
    background: linear-gradient(135deg,#ff6744,#ff6744);
    color: white;
    font-size: 17px;
    font-family: 'Cairo';
    cursor: pointer;
    transition: .3s;
}



    .contact-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(37,99,235,.3);
    }



    .contact-submit span {
        margin-right: 8px;
    }



/* Information Cards */


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.info-card {
    background: white;
    padding: 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}



.info-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eff6ff;
    border-radius: 50%;
    font-size: 30px;
}



.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}



.info-card a {
    color: #ff6744;
    text-decoration: none;
}



.info-card p {
    color: #64748b;
}



/* Trust */


.trust-image {
    background: white;
    padding: 25px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}



    .trust-image img {
        max-width: 170px;
    }



    .trust-image strong {
        color: #ff6744;
    }



.recaptcha-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #64748b;
}



/* Responsive */

@media(max-width:900px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .contact-form {
        padding: 25px;
    }
}

.video-card {
    position: relative;
}

.video-number {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    width: 42px;
    height: 42px;
    background: #f05721;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}