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

body {
    font-family: 'Lato', 'Segoe UI', sans-serif;
    background: #ece8e0;
    background-image: 
        linear-gradient(rgba(255, 248, 240, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 248, 240, 0.3) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    direction: rtl;
}

.card {
    max-width: 520px;
    width: 100%;
    background: #fcf9f5;
    padding: 32px 28px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8dfd4;
    transition: box-shadow 0.2s ease;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.logo-icon {
    font-size: 32px;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.logo-text .title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1a2a3a;
    letter-spacing: 1px;
}

.logo-text .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #c9a24d;
    letter-spacing: 2px;
    margin-top: -4px;
}

.badge {
    background: #1a2a3a;
    color: #faf8f5;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.gold-line {
    width: 60px;
    height: 2px;
    background: #c9a24d;
    margin: 12px auto 16px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tagline {
    font-size: 17px;
    font-weight: 300;
    color: #5a6a7a;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.divider-gold {
    width: 40px;
    height: 2px;
    background: #c9a24d;
    margin: 12px auto 16px;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3a4a;
    margin-bottom: 20px;
    font-weight: 300;
}

.description strong {
    color: #1a2a3a;
    font-weight: 700;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.features span {
    background: #f0ebe3;
    color: #1a2a3a;
    font-size: 13px;
    font-weight: 400;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    border: 1px solid #e0d6ca;
}

/* WhatsApp Button – classic solid */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #25a35a;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    max-width: 320px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 0 #1a7a42;
    margin: 8px auto 12px;
    font-family: 'Lato', sans-serif;
}

.whatsapp-btn:hover {
    background: #1f8f4e;
}

.whatsapp-btn:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #1a7a42;
}

.whatsapp-btn:focus-visible {
    outline: 3px solid #c9a24d;
    outline-offset: 3px;
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    flex-shrink: 0;
}

.whatsapp-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.whatsapp-btn .btn-text small {
    font-weight: 300;
    font-size: 13px;
    opacity: 0.85;
}

/* Status */
.status-msg {
    font-size: 14px;
    color: #3a4a5a;
    background: #f0ebe3;
    padding: 8px 16px;
    border-radius: 30px;
    margin: 8px auto 12px;
    display: inline-block;
    min-height: 40px;
    backdrop-filter: none;
    border: 1px solid #e0d6ca;
}

/* Business info */
.business-info {
    background: #f5f0e9;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0 14px;
    border: 1px solid #e8dfd4;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    font-size: 15px;
    color: #1a2a3a;
    font-weight: 400;
}

.info-row .icon {
    font-size: 18px;
    width: 28px;
    text-align: center;
    color: #c9a24d;
}

.info-row a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s;
}

.info-row a:hover {
    border-bottom-color: #c9a24d;
}

/* Map */
.map-container {
    margin: 12px 0 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0d6ca;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: none;
}

/* Contact row */
.contact-row {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    border-top: 1px solid #e8dfd4;
    padding-top: 18px;
}

.contact-row a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.contact-row a:hover {
    color: #c9a24d;
}

.contact-row span {
    color: #5a6a7a;
}

/* Footer links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 13px;
}

.footer-links a {
    color: #5a6a7a;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
    transition: border-color 0.2s, color 0.2s;
}

.footer-links a:hover {
    border-bottom-color: #c9a24d;
    color: #1a2a3a;
}

.footer-note {
    font-size: 12px;
    color: #8a9aa8;
    margin-top: 14px;
    opacity: 0.8;
}

/* Touch targets */
.whatsapp-btn,
.contact-row a,
.footer-links a,
.info-row a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Responsive – mobile */
@media (max-width: 480px) {
    body {
        padding: 12px;
    }
    .card {
        padding: 24px 16px 28px;
    }
    .logo-text .title {
        font-size: 22px;
    }
    .logo-text .subtitle {
        font-size: 15px;
    }
    h1 {
        font-size: 24px;
    }
    .description {
        font-size: 15px;
    }
    .whatsapp-btn {
        font-size: 18px;
        padding: 14px 20px;
        max-width: 100%;
    }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
    .map-container iframe {
        height: 170px;
    }
}

@media (max-width: 380px) {
    .header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    .logo-text .title {
        font-size: 20px;
    }
    h1 {
        font-size: 20px;
    }
    .features span {
        font-size: 11px;
        padding: 2px 10px;
    }
    .business-info {
        padding: 10px 12px;
    }
    .info-row {
        font-size: 13px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .card {
        max-width: 600px;
        padding: 40px 36px 48px;
    }
    .logo-text .title {
        font-size: 32px;
    }
    h1 {
        font-size: 32px;
    }
    .whatsapp-btn {
        max-width: 380px;
        font-size: 22px;
        padding: 18px 32px;
    }
    .map-container iframe {
        height: 280px;
    }
}

/* Landscape small screens */
@media (max-width: 600px) and (orientation: landscape) {
    .card {
        padding: 16px 14px 20px;
    }
    .logo-text .title {
        font-size: 18px;
    }
    h1 {
        font-size: 18px;
    }
    .whatsapp-btn {
        font-size: 14px;
        padding: 10px 16px;
        max-width: 260px;
    }
    .map-container iframe {
        height: 120px;
    }
}