:root {
    --primary: #0096a6; /* Teal */
    --primary-dark: #007a87;
    --secondary: #f0831a; /* Orange */
    --secondary-dark: #cc6c10;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --bg-dark: #1a202c;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="ltr"] { font-family: 'Inter', sans-serif; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-block; padding: 12px 28px; border-radius: 8px;
    font-weight: 700; cursor: pointer; transition: var(--transition);
    text-align: center; border: none;
}
.btn-primary { background-color: var(--primary); color: white; }
.btn-primary:hover { background-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background-color: var(--secondary); color: white; }
.btn-secondary:hover { background-color: var(--secondary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

/* Header */
.site-header {
    background-color: var(--bg-white); box-shadow: var(--shadow);
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 50px; }
.logo-text { display: flex; flex-direction: column; }
.logo-ar { font-weight: 800; font-size: 1.2rem; color: var(--primary); line-height: 1; }
.logo-en { font-size: 0.8rem; color: var(--secondary); font-family: 'Inter', sans-serif; }

.nav-list { display: flex; gap: 25px; align-items: center; }
.nav-link { font-weight: 600; color: var(--text-dark); transition: var(--transition); position: relative; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0;
    height: 2px; background-color: var(--primary); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; right: 0; background: var(--bg-white);
    min-width: 200px; box-shadow: var(--shadow-lg); border-radius: 8px;
    opacity: 0; visibility: hidden; transition: var(--transition);
    transform: translateY(10px); padding: 10px 0; z-index: 10;
}
[dir="ltr"] .dropdown-menu { right: auto; left: 0; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 10px 20px; border-bottom: 1px solid #eee; }
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { background-color: var(--bg-light); padding-right: 25px; }
[dir="ltr"] .dropdown-menu li a:hover { padding-right: 20px; padding-left: 25px; }

.header-actions { display: flex; align-items: center; gap: 15px; }
.lang-toggle {
    background: none; border: 1px solid #ccc; padding: 5px 10px; border-radius: 20px;
    cursor: pointer; display: flex; align-items: center; gap: 5px; font-weight: 600; transition: var(--transition);
}
.lang-toggle:hover { background-color: var(--bg-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background-color: var(--text-dark); transition: var(--transition); }

/* Main Content Padding */
.main-content { padding-top: 80px; min-height: 80vh; }

/* Sections */
.section-padding { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; font-weight: 800; }
.section-title p { color: var(--text-light); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0,150,166,0.1) 0%, rgba(240,131,26,0.1) 100%);
    padding: 100px 0; text-align: center; position: relative;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 3rem; font-weight: 900; color: var(--text-dark); margin-bottom: 20px; line-height: 1.3; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 1.2rem; color: var(--text-light); margin-bottom: 40px; }
.hero-cta { display: flex; gap: 20px; justify-content: center; }

/* Features/Services Grid */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; align-items: center; }

.service-card {
    background: var(--bg-white); padding: 30px; border-radius: 12px;
    box-shadow: var(--shadow); text-align: center; transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.service-card i { font-size: 3rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.service-card p { color: var(--text-light); margin-bottom: 20px; }

/* About Section */
.about-image img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.about-content h3 { font-size: 2rem; color: var(--primary); margin-bottom: 20px; }
.about-content p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 20px; }
.about-features { list-style: none; margin-top: 30px; }
.about-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; font-size: 1.1rem; font-weight: 600; }
.about-features i { color: var(--secondary); font-size: 1.2rem; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.portfolio-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); }
.portfolio-item img { width: 100%; height: 300px; object-fit: cover; transition: var(--transition); }
.portfolio-overlay {
    position: absolute; inset: 0; background: rgba(0,150,166,0.9);
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transition: var(--transition); color: white; text-align: center; padding: 20px;
}
.portfolio-item:hover img { transform: scale(1.1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* Contact */
.contact-container { background: var(--bg-white); border-radius: 12px; box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-info { background: var(--primary); color: white; padding: 40px; }
.contact-info h3 { font-size: 2rem; margin-bottom: 20px; }
.info-item { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; font-size: 1.1rem; }
.info-item i { font-size: 1.5rem; color: var(--secondary); }
.contact-form { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%; padding: 12px 15px; border: 1px solid #ddd;
    border-radius: 8px; font-family: inherit; transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(0,150,166,0.1); }
textarea.form-control { height: 150px; resize: vertical; }

/* Footer */
.site-footer { background-color: var(--bg-dark); color: white; position: relative; margin-top: 50px; }
.footer-wave { position: absolute; top: -119px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.footer-content { padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-img { height: 40px; background: white; padding: 5px; border-radius: 5px; }
.footer-social { display: flex; gap: 15px; margin-top: 20px; }
.footer-social a {
    display: flex; justify-content: center; align-items: center; width: 40px; height: 40px;
    background: rgba(255,255,255,0.1); border-radius: 50%; color: white; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); transform: translateY(-3px); }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--primary); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cbd5e0; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-right: 5px; }
[dir="ltr"] .footer-links a:hover { padding-right: 0; padding-left: 5px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 15px; color: #cbd5e0; align-items: center; }
.footer-contact i { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #cbd5e0; }

/* Floating Buttons */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center;
    font-size: 30px; box-shadow: 2px 2px 3px #999; z-index: 100;
    display: flex; justify-content: center; align-items: center; transition: var(--transition);
}
[dir="ltr"] .whatsapp-float { right: auto; left: 30px; }
.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); }
.whatsapp-tooltip {
    position: absolute; right: 75px; background: #333; color: white;
    padding: 5px 10px; border-radius: 5px; font-size: 14px; white-space: nowrap;
    opacity: 0; visibility: hidden; transition: var(--transition); font-family: 'Tajawal', sans-serif;
}
[dir="ltr"] .whatsapp-tooltip { right: auto; left: 75px; font-family: 'Inter', sans-serif; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }

.scroll-top {
    position: fixed; bottom: 100px; right: 35px; width: 50px; height: 50px;
    background: var(--primary); color: white; border: none; border-radius: 50%;
    cursor: pointer; font-size: 20px; box-shadow: var(--shadow); z-index: 99;
    opacity: 0; visibility: hidden; transition: var(--transition);
    display: flex; justify-content: center; align-items: center;
}
[dir="ltr"] .scroll-top { right: auto; left: 35px; }
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--secondary); transform: translateY(-3px); }

/* Trust Indicators */
.trust-indicators { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text-dark); }
.trust-item i { color: var(--secondary); font-size: 1.5rem; }

/* Page Content Template */
.page-header { background: var(--primary); color: white; padding: 60px 0; text-align: center; margin-bottom: 50px; }
.page-header h1 { font-size: 2.5rem; margin-bottom: 15px; font-weight: 800; }
.page-header p { font-size: 1.2rem; opacity: 0.9; }

/* Media Queries */
@media (max-width: 992px) {
    .nav-list {
        position: fixed; top: 80px; right: -100%; width: 300px; height: calc(100vh - 80px);
        background: var(--bg-white); flex-direction: column; align-items: flex-start;
        padding: 30px; box-shadow: -5px 0 15px rgba(0,0,0,0.1); transition: 0.4s ease-in-out;
    }
    [dir="ltr"] .nav-list { right: auto; left: -100%; box-shadow: 5px 0 15px rgba(0,0,0,0.1); }
    .nav-list.active { right: 0; }
    [dir="ltr"] .nav-list.active { left: 0; }
    .hamburger { display: flex; }
    .nav-dropdown .dropdown-menu { position: static; box-shadow: none; visibility: visible; opacity: 1; transform: none; display: none; padding-right: 20px; }
    [dir="ltr"] .nav-dropdown .dropdown-menu { padding-right: 0; padding-left: 20px; }
    .nav-dropdown.active .dropdown-menu { display: block; }
    .header-cta { display: none; }
    .hero-title { font-size: 2.2rem; }
    .trust-indicators { flex-direction: column; align-items: center; gap: 15px; }
}

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; }
    .contact-container { display: flex; flex-direction: column; }
}

/* Success Partners Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
}

.marquee-wrapper::before, .marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light) 0%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light) 0%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-rtl 30s linear infinite;
    white-space: nowrap;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.partner-box {
    padding: 20px 40px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.2rem;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--secondary);
    color: var(--primary);
}

@keyframes scroll-rtl {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

/* Service Request Modal */
.modal {
    display: none; position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.5);
    align-items: center; justify-content: center;
}
.modal.active { display: flex; }
.modal-content {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalFadeIn 0.3s ease;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
[dir="ltr"] .close-modal { right: auto; left: 20px; }
.close-modal:hover { color: var(--text-dark); }

/* Fix for body x-overflow caused by AOS sometimes */
body {
    overflow-x: hidden;
}

/* Banner Utilities */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* Honeypot field - hidden from real users, bots fill it */
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Skip to content link (Accessibility) */
.skip-link {
    position: absolute; top: -40px; right: 0; background: var(--primary); color: #fff;
    padding: 8px 16px; z-index: 2000; text-decoration: none; font-weight: 700;
    border-radius: 0 0 0 8px; transition: top 0.2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid var(--secondary); outline-offset: 2px; }
[dir="ltr"] .skip-link { right: auto; left: 0; border-radius: 0 0 8px 0; }
.banner-link { display: block; border-radius: 8px; transition: background-color 0.3s ease; }
.banner-link:hover { background-color: rgba(255, 255, 255, 0.15); box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.3); }

/* ===========================================
   ENHANCED NAVIGATION BUTTONS
   =========================================== */
.nav-store-btn {
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    margin: 0 10px;
    font-weight: 700;
    padding: 9px 18px !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.92rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.nav-store-btn:hover {
    background: var(--primary) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,150,166,0.25);
}
.nav-store-btn i { font-size: 0.85rem; }

.header-cta-pulse {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)) !important;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 800;
    padding: 9px 20px !important;
    font-size: 0.92rem;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(240,131,26,0.3);
    transition: all 0.3s;
}
.header-cta-pulse:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(240,131,26,0.45);
    filter: brightness(1.05);
}
.header-cta-pulse i { font-size: 0.85rem; }

/* Portfolio Dropdown Items */
.dropdown-menu li a i {
    color: var(--secondary);
    width: 18px;
    text-align: center;
    margin-left: 6px;
    font-size: 0.9rem;
}

/* ===========================================
   WHATSAPP FLOAT ENHANCED
   =========================================== */
.whatsapp-float-enhanced {
    width: auto !important;
    padding: 0 18px 0 14px;
    border-radius: 50px !important;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35) !important;
    overflow: visible !important;
}
.whatsapp-float-enhanced i.fa-whatsapp {
    font-size: 28px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.whatsapp-float-enhanced .wa-tooltip {
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    font-family: 'Tajawal', sans-serif;
    padding-left: 4px;
}
.whatsapp-float-enhanced .wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #25d366;
    z-index: -1;
    animation: waPulse 2s ease-in-out infinite;
    opacity: 0;
}
@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* ===========================================
   STICKY MOBILE CTA BAR
   =========================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.12);
    display: none;
    z-index: 99;
    padding: 8px;
    gap: 6px;
    border-top: 1px solid #e5e7eb;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.sticky-mobile-cta.visible {
    transform: translateY(0);
}
.smc-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    transition: all 0.2s;
    font-family: inherit;
}
.smc-btn i { font-size: 1.15rem; }
.smc-btn-call { background: rgba(0, 150, 166, 0.1); color: var(--primary); }
.smc-btn-call:hover { background: var(--primary); color: #fff; }
.smc-btn-wa { background: rgba(37, 211, 102, 0.12); color: #128c7e; }
.smc-btn-wa:hover { background: #25d366; color: #fff; }
.smc-btn-quote { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); color: #fff; }
@media (max-width: 768px) {
    .sticky-mobile-cta { display: flex; }
    body { padding-bottom: 70px; }
    .whatsapp-float-enhanced { bottom: 85px; padding: 0 14px 0 10px; }
    .whatsapp-float-enhanced .wa-tooltip { display: none; }
    .whatsapp-float-enhanced i.fa-whatsapp { width: 32px; height: 32px; font-size: 24px; }
}

/* ===========================================
   IMAGE SKELETON LOADER
   =========================================== */
.img-loading {
    background: linear-gradient(90deg, #f0f2f5 25%, #e5e7eb 50%, #f0f2f5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    min-height: 100px;
}
.img-loaded { animation: imgFadeIn 0.4s ease forwards; }
@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
@keyframes imgFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===========================================
   NEWSLETTER FOOTER STRIP
   =========================================== */
.newsletter-strip {
    background: linear-gradient(135deg, rgba(240,131,26,0.1) 0%, rgba(0,150,166,0.1) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
}
.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter-text { flex: 1; min-width: 250px; }
.newsletter-text h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex; align-items: center; gap: 8px;
}
.newsletter-text h4 i { color: var(--secondary); }
.newsletter-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin: 0;
}
.newsletter-form {
    display: flex;
    gap: 8px;
    flex: 1;
    max-width: 500px;
    min-width: 280px;
}
.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.25s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus {
    background: rgba(255,255,255,0.18);
    border-color: var(--secondary);
}
.newsletter-form button {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    border: none;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(240,131,26,0.3);
    font-family: inherit;
    white-space: nowrap;
}
.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(240,131,26,0.4);
}
.newsletter-msg {
    flex-basis: 100%;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 6px;
}
@media (max-width: 768px) {
    .newsletter-inner { gap: 16px; }
    .newsletter-form { width: 100%; }
}

/* ===========================================
   PRICING TAGS (for services cards)
   =========================================== */
.price-card { display: flex; flex-direction: column; }
.price-card p { flex: 1; margin-bottom: 18px; }
.price-tag {
    background: linear-gradient(135deg, rgba(0,150,166,0.08), rgba(240,131,26,0.08));
    border: 1.5px dashed var(--primary);
    border-radius: 12px;
    padding: 14px 12px;
    margin: 0 -8px 16px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.price-label { font-size: 0.82rem; color: var(--text-light); font-weight: 700; }
.price-amount { font-size: 1.6rem; font-weight: 900; color: var(--primary); line-height: 1; }
.price-currency { font-size: 0.85rem; color: var(--text-dark); font-weight: 700; }
.price-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 6px 16px rgba(240,131,26,0.25);
}
.price-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(240,131,26,0.35); }

/* ============ Footer extra: visitor counter + staff login ============ */
.footer-bottom .footer-extra{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:10px 22px;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid rgba(255,255,255,.12);}
.footer-extra .visitor-counter{display:inline-flex;align-items:center;gap:7px;font-size:.86rem;color:rgba(255,255,255,.78);}
.footer-extra .visitor-counter i{color:#0096a6;}
.footer-extra .visitor-counter strong{color:#fff;font-weight:700;letter-spacing:.5px;}
.footer-extra .employee-login{display:inline-flex;align-items:center;gap:7px;font-size:.85rem;color:rgba(255,255,255,.72);text-decoration:none;padding:5px 14px;border-radius:20px;border:1px solid rgba(255,255,255,.18);transition:all .25s ease;}
.footer-extra .employee-login:hover{color:#fff;border-color:#0096a6;background:rgba(0,150,166,.18);}

/* ============ Digital products / SpaSuit section (SpaSuit brand: teal + gold) ============ */
.home-products{background:linear-gradient(135deg,#0e3f3c 0%,#15605c 60%,#1a6b66 100%);color:#fff;}
.home-products .section-title h2{color:#fff;}
.home-products .section-title p{color:rgba(255,255,255,.78);}
.home-products .home-section-tag{background:rgba(201,160,99,.18);color:#e9c993;}
.product-feature{display:grid;grid-template-columns:.85fr 1.25fr;gap:36px;align-items:center;background:rgba(255,255,255,.05);border:1px solid rgba(201,160,99,.28);border-radius:22px;padding:32px;max-width:980px;margin:0 auto;box-shadow:0 24px 60px rgba(0,0,0,.28);}
.product-feature-visual{display:flex;align-items:center;justify-content:center;background:#f6f1e8;border-radius:16px;padding:34px 26px;min-height:190px;}
.product-logo{max-width:100%;max-height:140px;width:auto;height:auto;display:block;}
.product-feature-body{min-width:0;}
.product-badge{display:inline-flex;align-items:center;gap:7px;font-size:.8rem;font-weight:700;background:rgba(201,160,99,.16);color:#e9c993;padding:5px 14px;border-radius:20px;}
.product-feature-body h3{font-size:1.4rem;margin:12px 0;color:#fff;line-height:1.5;}
.product-feature-body>p{color:rgba(255,255,255,.8);line-height:1.95;margin-bottom:18px;}
.product-features{list-style:none;padding:0;margin:0 0 24px;display:grid;grid-template-columns:1fr 1fr;gap:11px 18px;}
.product-features li{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.9);font-size:.92rem;}
.product-features li i{color:#c9a063;}
.product-cta{display:inline-flex;align-items:center;gap:9px;background:linear-gradient(135deg,#c9a063,#b8935a);color:#13302e;padding:13px 30px;border-radius:30px;font-weight:800;text-decoration:none;box-shadow:0 8px 20px rgba(201,160,99,.3);transition:transform .2s ease,box-shadow .2s ease;}
.product-cta:hover{transform:translateY(-2px);box-shadow:0 12px 26px rgba(201,160,99,.45);}
@media(max-width:768px){.product-feature{grid-template-columns:1fr;padding:22px;gap:22px;}.product-features{grid-template-columns:1fr;}}
