/* Global Styles */
:root {
    /* Brand Colors - Extracted from Logo */
    --primary-color: #340093;
    /* Deep Royal Purple */
    --primary-dark: #24006b;
    /* Darker Purple for text/hover */
    --primary-light: #5e35b1;
    /* Lighter Purple for gradients */

    /* Accents */
    --accent-color: #ffca40;
    /* Golden Amber - perfect for buttons */
    --accent-hover: #ffb300;

    /* Backgrounds */
    --secondary-bg: #f3e5f5;
    /* Light Purple Tint */
    --white: #ffffff;
    --light-gray: #f9fafb;

    /* Text */
    --text-color: #1a1a2e;
    /* Very Dark Purple (almost black) */
    --text-light: #4a4a6a;
    /* Muted Purple-Gray */

    /* UI Elements */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(52, 0, 147, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(52, 0, 147, 0.1), 0 2px 4px -2px rgba(52, 0, 147, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(52, 0, 147, 0.15), 0 4px 6px -4px rgba(52, 0, 147, 0.1);
}

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

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-weight: 600;
    color: var(--text-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    /* Premium large hero */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/images/hero_new_v2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--secondary-bg);
}


.services-badge {
    background: linear-gradient(135deg, #00b4db, #0083b0);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-horizontal {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Horizontal Service Card */
.service-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(52, 0, 147, 0.15);
}

/* Reversed layout - image on left */
.service-card-horizontal.reversed {
    flex-direction: row-reverse;
}

/* Service Image */
.service-image {
    flex: 0 0 40%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-horizontal:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(52, 0, 147, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-horizontal:hover .service-image::after {
    opacity: 1;
}

/* Service Badge */
.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.service-badge.featured {
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    color: #1a1a2e;
    animation: pulse-badge 2s infinite;
}

.service-badge.construction {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Service Content */
.service-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-title {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-title i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.room-item {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.room-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.room-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.room-header i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    color: #1a1a2e;
    border-radius: 50%;
    font-size: 1rem;
}

.room-header span {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1rem;
}

/* Room Features List */
.room-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.room-features li {
    position: relative;
    padding: 8px 0 8px 0;
    padding-right: 22px;
    font-size: 0.85rem;
    color: var(--text-color);
    border-bottom: 1px dotted rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.room-features li:last-child {
    border-bottom: none;
}

.room-features li:hover {
    color: var(--primary-color);
    padding-right: 25px;
}

.room-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #2ecc71;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
}

/* Service Note */
.service-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e8f4fd, #f0f9ff);
    border-radius: 12px;
    border-right: 4px solid var(--primary-color);
    margin-top: auto;
}

.service-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-note span {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Warning Note Style */
.service-note.warning {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-right-color: #e67e22;
}

.service-note.warning i {
    color: #e67e22;
}

/* Responsive Design for Horizontal Cards */
@media (max-width: 992px) {

    .service-card-horizontal,
    .service-card-horizontal.reversed {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 auto;
        min-height: 300px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .service-title {
        font-size: 1.4rem;
    }

    .service-image {
        min-height: 250px;
    }

    .room-item {
        padding: 15px;
    }
}

/* Extra Info Section - Services & Supplies */
.extra-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.info-card.extra-services {
    border-top: 4px solid #e74c3c;
}

.info-card.supplies {
    border-top: 4px solid #3498db;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 12px;
    font-size: 1.3rem;
}

.info-icon.supplies-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.info-card-header h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-extra {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-supplies {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.08);
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.2s ease;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li:hover {
    padding-right: 10px;
    color: var(--primary-color);
}

.info-card.extra-services .info-list li i {
    color: #e74c3c;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
}

.info-card.supplies .info-list li i {
    color: #3498db;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 20px;
}

.info-footer {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
}

.info-footer i {
    font-size: 1.1rem;
}

/* Responsive for Extra Info Section */
@media (max-width: 768px) {
    .extra-info-section {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 25px;
    }

    .info-card-header h3 {
        font-size: 1.1rem;
    }
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 35px;
}

.card-title {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.room-section {
    margin-bottom: 20px;
}

.room-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.room-title i {
    color: var(--accent-color);
    background: #fff8e1;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.features-list {
    padding-right: 0;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
    padding-right: 25px;
}

.features-list li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    right: 0;
    top: 2px;
    font-size: 0.9em;
    width: auto;
    margin-left: 0;
}

.note-box {
    background-color: #fffbeb;
    /* Light yellow */
    border: 1px solid #fcd34d;
    color: #92400e;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: start;
    gap: 10px;
}

/* Features/Why Us - Modern Redesign */
.why-us-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 60px;
}

.why-us-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(52, 0, 147, 0.15);
}

.why-us-card:hover::before {
    transform: scaleX(1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(52, 0, 147, 0.3);
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-us-icon.clock-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.why-us-icon.star-icon {
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    box-shadow: 0 10px 25px rgba(251, 140, 0, 0.3);
}

.why-us-icon.support-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.why-us-icon.price-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.why-us-icon.guarantee-icon {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.3);
}

.why-us-card h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-us-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.why-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #27ae60;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.why-us-badge i {
    font-size: 0.9rem;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(52, 0, 147, 0.3);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Responsive for Why Us */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Footer */
footer {
    background-color: #111827;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu implementation skipped for brevity, using simple stack */
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background-color: var(--light-gray);
    /* Alternate background */
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.offer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

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

.offer-card.highlight {
    border: 2px solid var(--accent-color);
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.offer-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.offer-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    /* RTL Note: Ensure left/right makes sense */
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.offer-badge.special {
    background: var(--accent-color);
    color: #1a1a2e;
}

.offer-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.offer-content h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.offer-details {
    flex-grow: 1;
    margin-bottom: 20px;
}

.offer-desc {
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
}

.new-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 800;
}

.offer-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-contact a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.top-bar-contact a:hover {
    color: var(--accent-color);
}

/* Contact Section */
/* Contact Section - Modern Redesign */
.contact-section-modern {
    padding: 100px 0;
    background-color: #f8faff;
    position: relative;
    overflow: hidden;
}

.contact-badge {
    background: linear-gradient(135deg, #25D366, #128C7E);
    margin-bottom: 20px;
}

/* Main CTA - Whatsapp */
.main-contact-cta {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 40px auto 60px;
    border: 1px solid rgba(37, 211, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.main-contact-cta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #25D366;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: #e7fcf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    font-size: 2.2rem;
}

.cta-text h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.cta-text p {
    color: var(--text-light);
    margin: 0;
}

.cta-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Contact Numbers Grid */
.contact-numbers-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    position: relative;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Main Number Styling - Same Structure */
.contact-card-modern.main-number {
    grid-column: auto;
    /* Reset to auto to fit grid */
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border: 2px solid var(--primary-color);
}

.contact-card-modern.main-number::before {
    content: 'الرقم الرئيسي';
    position: absolute;
    top: -12px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(52, 0, 147, 0.2);
}

.card-badge {
    display: none;
    /* Hidden as handled by pseudo-element above for better positioning */
}

.contact-number-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.contact-card-modern.main-number .contact-number-display {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.contact-number-display i {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 5px;
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-modern.main-number .contact-number-display i {
    color: white;
    background: var(--primary-color);
}

.contact-buttons {
    display: flex;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.contact-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.1rem;
}

.call-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid #e8eaff;
}

.call-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.whatsapp-btn {
    background: white;
    color: #25D366;
    border: 2px solid #e7fcf0;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Main number distinctive buttons */
.contact-card-modern.main-number .call-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    box-shadow: 0 5px 15px rgba(52, 0, 147, 0.2);
}

.contact-card-modern.main-number .call-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.contact-card-modern.main-number .whatsapp-btn {
    background: white;
    color: #25D366;
    border: 2px solid #e7fcf0;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.contact-card-modern.main-number .whatsapp-btn:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: scale(1.05);
}

/* Working Hours */
.working-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 60px;
    color: var(--text-light);
    background: white;
    display: inline-flex;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.hours-icon {
    width: 45px;
    height: 45px;
    background: #fff3e0;
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hours-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.hours-text strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.hours-text span {
    font-size: 0.95rem;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card-modern.main-number {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-contact-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .cta-content {
        flex-direction: column;
    }

    .contact-grid-modern {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .contact-card-modern.main-number {
        grid-column: span 1;
    }

    .contact-card-modern {
        padding: 25px;
    }

    .working-hours {
        width: 100%;
        border-radius: 20px;
        left: auto;
        transform: none;
        justify-content: flex-start;
    }
}



/* Modern Footer Styles */
.footer-modern {
    background: linear-gradient(to top, #1a1a2e, #24006b);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Decorational overlay */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), #ff8f00);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* About Col */
.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-col.about p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.8;
}

/* Links Col */
.footer-col.links ul {
    list-style: none;
    padding: 0;
}

.footer-col.links li {
    margin-bottom: 15px;
}

.footer-col.links a {
    color: #cbd5e1;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col.links a::before {
    content: "\f104";
    /* FontAwesome Angle Left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--accent-color);
    transition: margin-left 0.3s;
}

.footer-col.links a:hover {
    color: var(--white);
    padding-right: 10px;
}

/* Contact/Social Col */
.footer-col.contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #cbd5e1;
}

.footer-col.contact i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-link i {
    color: var(--white);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.social-link:hover i {
    color: white;
    /* Keep white on button hover */
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Professional Header Redesign */

/* Top Bar Refinement */
.top-bar {
    background-color: var(--primary-dark);
    /* Darker shade for contrast */
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-contact a {
    opacity: 0.9;
    transition: opacity 0.3s;
}

.top-bar-contact a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Header Container */
header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    height: 80px;
    display: block;
    /* Fixed: was flex, causing layout issues */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    /* Ensures equal spacing */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Logo Sizing */
.logo img {
    height: 45px !important;
    /* Adjusted for perfect fit */
    width: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.05);
}

/* Navigation Links - Professional Look */
.nav-links {
    gap: 40px;
    height: 100%;
    align-items: center;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links li a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

/* Elegant Underline Animation */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    /* Spaced out */
    right: 0;
    /* RTL origin */
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a:hover::after {
    width: 100%;
    left: 0;
    /* Fill to left */
}

/* Header Button */
header .btn-primary {
    padding: 10px 25px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(52, 0, 147, 0.2);
    /* Colored shadow */
}

header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(52, 0, 147, 0.3);
}

/* Sticky State (Can be toggled via JS if needed, but css sticky handles mostly) */
/* Current css uses sticky: top 0. layout is good. */
/* Countdown Timer Styles */
.offer-timer-container {
    background: linear-gradient(135deg, #fff8e1 0%, #ffffff 100%);
    border: 2px dashed var(--accent-color);
    border-radius: 15px;
    padding: 20px;
    margin: 0 auto 40px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 202, 64, 0.15);
}

.offer-timer-container.bottom-timer {
    margin: 50px auto 0;
}

.timer-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.timer-title i {
    color: #e74c3c;
    /* Red alarm icon */
    animation: swing 1s infinite alternate;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    direction: ltr;
    /* To keep numbers order correct Day:Hour:Min:Sec */
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    background-color: var(--primary-color);
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    position: relative;
    overflow: hidden;
}

.time-value::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.time-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

@keyframes swing {
    0% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(15deg);
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 10px;
    }

    .time-value {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Slots Availability Styles */
.slots-info {
    margin: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f9fafb;
    padding: 8px;
    border-radius: 8px;
    border: 1px dashed #e5e7eb;
}

.slots-count {
    color: #e74c3c;
    font-weight: 800;
    font-size: 1.1rem;
}

.slots-label {
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #eee;
    border-radius: 3px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #ff9f43);
    border-radius: 3px;
    width: 0%;
    /* Will become dynamic */
    transition: width 1s ease-out;
}

/* Pulse animation for low slots */
.pulse-text {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Service Cards - appended content */

/* Refined Room Section Container */
/* Refined Room Section - Cleaner Design */
.room-section {
    background-color: transparent;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    /* Only top divider */
    border-radius: 0;
    padding: 25px 0 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.room-section:first-child {
    border-top: none;
    padding-top: 0;
}

.room-section:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    box-shadow: none;
    /* Removed box shadow on hover to keep it flat and clean */
}

/* Enhanced Room Icons */
/* Enhanced Room Icons - Clean and Floating */
.room-title i {
    background: none;
    /* Removed background box */
    color: var(--accent-color);
    box-shadow: none;
    font-size: 1.4rem;
    /* Larger icon */
    width: auto;
    height: auto;
    padding: 0;
    margin-left: 10px;
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Styling the Features List Items */
.features-list li {
    padding: 8px 30px 8px 10px;
    /* More padding */
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    /* Subtle separator */
    transition: padding-right 0.2s ease;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    padding-right: 35px;
    /* Slight movement on hover */
    color: var(--primary-dark);
}

.features-list li::before {
    color: var(--success);
    /* Green checkmarks for 'done' feeling */
    font-size: 0.9rem;
    background: rgba(46, 204, 113, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Card Image Gradient Overlay */
.card-image {
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0.6;
}

/* Contact Section V3 - Dashboard Style (Added) */
.contact-v3 {
    padding: 100px 0;
    background-color: #f8faff;
}

.contact-dashboard {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
    align-items: stretch;
}

/* Main Hub Styles */
.main-hub {
    flex: 1.2;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.hub-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.hub-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.main-hub h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.main-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-hub p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.hub-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hub-btn {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(52, 0, 147, 0.2);
}

.call-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

.wa-btn {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.hub-footer {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-light);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #4caf50;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Support Panel Styles */
.support-panel {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.panel-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.panel-header h3 {
    font-size: 1.1rem;
    margin: 0;
    color: var(--primary-dark);
}

.agents-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agent-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #f8faff;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.agent-row:hover {
    background: #eef2ff;
    transform: translateX(-5px);
}

.agent-info {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-size: 0.8rem;
    color: var(--text-light);
}

.agent-phone {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.agent-actions {
    display: flex;
    gap: 8px;
}

.mini-btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mini-btn.call {
    background: white;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
}

.mini-btn.call:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.mini-btn.wa {
    background: white;
    color: #25D366;
    border: 1px solid #e0e0e0;
}

.mini-btn.wa:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Responsive V3 */
@media (max-width: 900px) {
    .contact-dashboard {
        flex-direction: column;
    }

    .hub-actions {
        flex-direction: column;
    }

    .main-number-large {
        font-size: 2rem;
    }

    .hub-footer {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
/* Expired Offers Section */
.expired-offers-section {
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px dashed #ccc;
}

.expired-header {
    text-align: center;
    margin-bottom: 25px;
}

.expired-header h3 {
    color: #666;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.expired-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.expired-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    position: relative;
    overflow: hidden;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.expired-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

.expired-overlay {
    position: absolute;
    top: 15px;
    left: -35px;
    background: #c0392b;
    color: white;
    padding: 5px 40px;
    transform: rotate(-45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 2;
}

.expired-content h4 {
    margin: 10px 0;
    color: #333;
    font-size: 1.1rem;
}

.expired-price {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.expired-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.expired-price .final-price {
    color: #333;
    font-weight: 700;
    font-size: 1.1rem;
}

.booking-stat {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.booking-stat strong {
    color: #c0392b;
    font-size: 1rem;
}
