/* ==========================================
   Social Cards Isolated CSS
   ========================================== */
:root {
    --sc-primary: #0b1b3f;
    --sc-gold: #c5a45c;
    --sc-bg: #f8f9fa;
    --sc-text: #444;
}

.sc-landing { font-family: 'Inter', sans-serif; background: var(--sc-bg); color: var(--sc-text); overflow-x: hidden; }

/* إخفاء السوشيال ميديا من الهيدر الأساسي */
.social-col { display: none !important; }

/* Header Back Button */
.back-to-home-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197, 164, 92, 0.1); color: var(--sc-primary);
    padding: 10px 20px; border-radius: 50px; font-weight: 600; text-decoration: none; transition: 0.3s;
}
.back-to-home-btn:hover { background: var(--sc-primary); color: #fff; }

/* =========================================
   Hero Section - Split Layout
   ========================================= */
.sc-landing .hero { padding: 100px 0; background: var(--sc-primary); color: white; }
.sc-landing .hero-container { display: flex; align-items: center; justify-content: space-between; gap: 50px; max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.sc-landing .hero-text { flex: 1.2; text-align: left; }
.sc-landing .gc-badge { display: inline-block; background: rgba(197, 164, 92, 0.2); color: var(--sc-gold); padding: 6px 18px; border-radius: 20px; font-size: 0.85rem; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 1px; }
.sc-landing .hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 800; }
.sc-landing .hero-text h1 span { color: var(--sc-gold); }
.sc-landing .hero-text p { font-size: 1.15rem; color: #cbd5e0; line-height: 1.6; max-width: 550px; }

/* أزرار الهيرو ونون وأمازون */
.sc-landing .hero-actions { display: flex; flex-direction: column; align-items: flex-start; }
.gc-btn-primary { background: var(--sc-gold); color: #fff; border: none; padding: 18px 45px; border-radius: 50px; font-size: 1.1rem; font-weight: 800; cursor: pointer; box-shadow: 0 5px 15px rgba(197, 164, 92, 0.2); transition: all 0.3s ease; }
.gc-btn-primary:hover { background: #fff; color: var(--sc-primary); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(197, 164, 92, 0.4); }

.noon-btn, .amazon-btn { width: 120px !important; height: 38px !important; border-radius: 8px !important; display: flex !important; align-items: center; justify-content: center; padding: 0 !important; text-decoration: none; transition: transform 0.3s ease, background-color 0.3s ease !important; box-sizing: border-box !important; }
.noon-btn { background-color: #FCE819 !important; border:none; }
.noon-btn:hover { background-color: #f0dd15 !important; transform: scale(1.05); }
.noon-svg { height: 34px !important; width: auto !important; display: block; }
.amazon-btn { background-color: #FF9900 !important; color: #000 !important; font-weight: 800 !important; font-size: 15px !important; gap: 6px; border:none; }
.amazon-btn:hover { background-color: #e88a00 !important; transform: scale(1.05); }
.amazon-btn i { font-size: 16px; margin-top: 1px; }

/* 3D Interactive Card (Dynamic Images) */
.sc-landing .hero-visuals { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; perspective: 1200px; }
.sc-landing .interactive-card-scene { width: 340px; height: 215px; perspective: 1000px; margin-bottom: 20px; position: relative; z-index: 10; cursor: pointer; }
.sc-landing .int-card { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.5); }
.sc-landing .int-card.is-flipped { transform: rotateY(180deg); }
.sc-landing .int-card.switching { animation: spinSwitch 0.6s ease-in-out; }
.sc-landing .card-face { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 16px; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,0.1); transition: background-image 0.2s ease-in-out; }
.sc-landing .cf-back { transform: rotateY(180deg); }

@keyframes spinSwitch { 0% { transform: rotateY(0deg) scale(1); } 50% { transform: rotateY(90deg) scale(0.8); } 100% { transform: rotateY(0deg) scale(1); } }

/* Platform Switcher Buttons */
.sc-landing .platform-bar { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 12px; background: rgba(255,255,255,0.1); border-radius: 50px; backdrop-filter: blur(10px); }
.sc-landing .p-btn { width: 45px; height: 45px; border-radius: 50%; border: none; background: rgba(255,255,255,0.1); color: white; font-size: 20px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; }
.sc-landing .p-btn:hover { background: var(--sc-gold); color: white; transform: translateY(-5px); }
.sc-landing .p-btn.active { transform: translateY(-5px) scale(1.1); background: white; }
.sc-landing .p-btn.active[data-type="google"] { color: #EA4335; }
.sc-landing .p-btn.active[data-type="instagram"] { color: #E1306C; }
.sc-landing .p-btn.active[data-type="tiktok"] { color: #000; }
.sc-landing .p-btn.active[data-type="whatsapp"] { color: #25D366; }
.sc-landing .p-btn.active[data-type="snapchat"] { color: #FFFC00; background: black; }
.sc-landing .p-btn.active[data-type="facebook"] { color: #1877F2; }
.sc-landing .p-btn.active[data-type="linkedin"] { color: #0077b5; }
.sc-landing .p-btn.active[data-type="youtube"] { color: #FF0000; }
.sc-landing .p-btn.active[data-type="x"] { color: #000; }
.sc-landing .svg-icon { width: 24px; height: 24px; }
.sc-landing .ta-fill { fill: white; transition: 0.3s; }
.sc-landing .p-btn.active[data-type="tripadvisor"] .ta-fill { fill: #34E0A1; }

/* Dynamic Platform Config Form */
.platform-config-row { background: #f8f9fa; padding: 12px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #ddd; display: flex; gap: 15px; align-items: center; transition: 0.3s; }
.platform-config-row:hover { border-color: var(--sc-gold); background: #fff; }
.platform-config-row select { flex: 1; padding: 10px; border-radius: 6px; border: 1px solid #ccc; font-family: inherit; font-size: 14px; outline: none; }
.platform-config-row select:focus { border-color: var(--sc-gold); }

/* =========================================
   Mobile Responsive Adjustments
   ========================================= */
@media (max-width: 991px) {
    .sc-landing .hero-container { flex-direction: column; text-align: center; gap: 40px; }
    .sc-landing .hero-text { text-align: center; }
    .sc-landing .hero-actions { align-items: center; }
    .gc-trust-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .gc-trust-links span { width: 100%; text-align: center; margin-bottom: 2px; }
    .sc-landing .interactive-card-scene { width: 280px; height: 175px; }
    .sc-landing .f-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .gc-checkout-grid { grid-template-columns: 1fr; padding: 0 15px; }
    .platform-config-row { flex-direction: column; align-items: flex-start; gap: 5px; }
    .platform-config-row select { width: 100%; }
}