/*
Theme Name: Siyal Sales Simple
Theme URI: https://makadi-heights.com
Author: Orascom Development Egypt  
Description: Ultra-simple sales page for Siyal - Makadi Heights. No complex features.
Version: 1.0.0
Text Domain: siyal-simple
Tags: landing-page, sales, responsive, simple
*/

/* Reset and Base */
*{margin:0;padding:0;box-sizing:border-box}

body {
    font-family: 'Cairo', -apple-system, Arial, sans-serif;
    background: linear-gradient(135deg, #f0f4f7 0%, #e8eef2 100%);
    color: #79797C;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.5;
}

/* Custom background when set */
body.has-background {
    background: 
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
        var(--bg-image) !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
}

@media (max-width: 768px) {
    body.has-background { background-attachment: scroll !important; }
}

/* Main Card */
.sales-card {
    background: rgba(255,255,255,0.98);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.sales-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6C7B8A, #25D366, #6C7B8A);
}

/* Header */
.sales-header {
    background: linear-gradient(135deg, #6C7B8A, #79797C);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

.logo-area {
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-logo {
    max-height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.default-logo {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
}

.project-title {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.launch-badge {
    background: rgba(255,255,255,0.25);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
}

/* Content */
.sales-content {
    padding: 30px 25px;
}

.main-title {
    font-size: 24px;
    font-weight: bold;
    color: #79797C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main-subtitle {
    font-size: 16px;
    color: #919497;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Buttons */
.action-buttons {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-call {
    background: linear-gradient(135deg, #6C7B8A, #4E5D6C);
    color: white;
    box-shadow: 0 6px 20px rgba(108,123,138,0.3);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Info Box */
.info-box {
    background: #f8f9fc;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-right: 4px solid #6C7B8A;
}

.info-box h3 {
    font-size: 16px;
    color: #79797C;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: #919497;
    line-height: 1.6;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pulse { animation: pulse 2s infinite; }

/* Responsive */
@media (max-width: 480px) {
    body { padding: 15px; }
    .sales-card { margin: 0; border-radius: 15px; }
    .sales-header { padding: 25px 20px; }
    .sales-content { padding: 25px 20px; }
    .project-title { font-size: 24px; }
    .main-title { font-size: 20px; }
    .main-subtitle { font-size: 15px; }
    .action-btn { padding: 16px; font-size: 15px; }
    .info-box { padding: 18px; }
}

@media (min-width: 768px) {
    .sales-card { max-width: 500px; }
    .sales-header { padding: 35px 30px; }
    .sales-content { padding: 35px 30px; }
    .project-title { font-size: 32px; }
    .main-title { font-size: 26px; }
    .action-btn { padding: 20px; font-size: 17px; }
}

/* LTR Support */
body.ltr .info-box {
    border-right: none;
    border-left: 4px solid #6C7B8A;
}