/*bookink style*/


 

    body {
        background-color: var(--dark-bg);
        color: var(--text-white);
    }

    .btn-primary {
        background-color: var(--primary-gold) !important;
        border-color: var(--primary-gold) !important;
        color: #000 !important;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background-color: #b88a4a !important;
        border-color: #b88a4a !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(197, 157, 95, 0.3);
    }

    /* Page Header */
    .page-header {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        padding: 60px 0;
        text-align: center;
    }

    .page-header h1 {
        color: var(--primary-gold);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .breadcrumb {
        background: transparent;
        justify-content: center;
    }

    .breadcrumb-item a {
        color: var(--primary-gold);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: var(--text-muted);
    }

    .breadcrumb-item::before {
        color: var(--text-muted);
    }

    /* Booking Wrapper */
    .booking-wrapper {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 40px;
        transition: all 0.3s ease;
    }

    .booking-wrapper:hover {
        border-color: var(--primary-gold);
    }

    .booking-wrapper h3 {
        color: var(--primary-gold);
        margin-bottom: 30px;
        text-align: center;
    }

    .form-label {
        color: var(--primary-gold);
        font-weight: 500;
        margin-bottom: 8px;
    }

    .form-control, .form-select {
        background-color: #2a2a2a !important;
        border-color: #444 !important;
        color: white !important;
        border-radius: 12px;
        padding: 12px 16px;
        transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-gold) !important;
        box-shadow: 0 0 0 0.2rem rgba(197, 157, 95, 0.25);
    }

    .form-control::placeholder {
        color: var(--text-muted);
    }

    textarea.form-control {
        resize: vertical;
    }

    /* Modern Development Alert Modal */
    .dev-alert-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        z-index: 9999;
        display: none;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

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

    @keyframes borderGlow {
        0%, 100% {
            border-color: var(--primary-gold);
            box-shadow: 0 0 20px rgba(197, 157, 95, 0.2);
        }
        50% {
            border-color: #ffd700;
            box-shadow: 0 0 40px rgba(197, 157, 95, 0.5);
        }
    }

    .dev-alert-modal {
        background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
        border: 2px solid var(--primary-gold);
        border-radius: 30px;
        max-width: 500px;
        width: 90%;
        margin: 20px;
        animation: slideUp 0.4s ease;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        position: relative;
        overflow: hidden;
    }

    .dev-alert-modal::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-gold), #ffd700, var(--primary-gold));
        animation: borderGlow 2s infinite;
    }

    .modal-header-icon {
        text-align: center;
        padding: 30px 30px 0 30px;
    }

    .modal-header-icon .icon-circle {
        width: 100px;
        height: 100px;
        background: rgba(197, 157, 95, 0.15);
        border: 2px solid var(--primary-gold);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        animation: pulse 2s infinite;
    }

    .modal-header-icon i {
        font-size: 48px;
        color: var(--primary-gold);
    }

    .dev-alert-modal h3 {
        color: var(--primary-gold);
        font-size: 28px;
        margin: 20px 0 10px;
        text-align: center;
    }

    .dev-alert-modal .subtitle {
        color: var(--text-muted);
        text-align: center;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .dev-alert-modal .modal-body {
        padding: 0 30px 20px;
    }

    .info-box {
        background: rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        padding: 20px;
        margin: 15px 0;
        text-align: center;
    }

    .info-box p {
        margin: 0;
        color: var(--text-white);
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
    }

    .contact-item {
        background: rgba(197, 157, 95, 0.1);
        border-radius: 50px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .contact-item:hover {
        background: rgba(197, 157, 95, 0.2);
        transform: translateX(-5px);
    }

    .contact-item i {
        color: var(--primary-gold);
        font-size: 20px;
    }

    .contact-item span {
        color: var(--text-white);
        font-size: 18px;
        font-weight: 500;
        direction: ltr;
    }

    .contact-item small {
        color: var(--text-muted);
        font-size: 12px;
    }

    .modal-buttons {
        display: flex;
        gap: 15px;
        margin: 25px 0 20px;
    }

    .modal-buttons .btn {
        flex: 1;
        padding: 12px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

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

    .btn-close-modal:hover {
        background: var(--primary-gold);
        color: #000;
    }

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

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

    .btn-call {
        background: var(--primary-gold);
        border: none;
        color: #000;
    }

    .btn-call:hover {
        background: #b88a4a;
        transform: translateY(-2px);
    }

    /* Steps Cards */
    .step-card {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
    }

    .step-card:hover {
        border-color: var(--primary-gold);
        transform: translateY(-10px);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: rgba(197, 157, 95, 0.2);
        border: 2px solid var(--primary-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 1.5rem;
        font-weight: bold;
        color: var(--primary-gold);
    }

    .step-icon i {
        font-size: 2rem;
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .step-card h5 {
        color: var(--primary-gold);
        margin-bottom: 10px;
    }

    .step-card p {
        color: var(--text-muted);
        margin: 0;
        font-size: 0.9rem;
    }

    /* Benefits Cards */
    .benefit-card {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
    }

    .benefit-card:hover {
        border-color: var(--primary-gold);
        transform: translateY(-5px);
    }

    .benefit-card i {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }

    .benefit-card h4 {
        color: var(--primary-gold);
        margin-bottom: 10px;
    }

    .benefit-card p {
        color: var(--text-muted);
        margin: 0;
    }

    .bg-primary-light {
        background-color: rgba(197, 157, 95, 0.1) !important;
        color: var(--primary-gold) !important;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text-muted);
    }

    .bg-light-custom {
        background-color: #0a0a0a;
    }
    
    
/*Home style*/


    /* الثيمة الجديدة: أسود وذهبي */
  

    body {
        background-color: var(--dark-bg);
        color: var(--text-white);
    }

    /* Hero Slider Customization */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    .hero-title {
        color: var(--primary-gold) !important;
    }
    .btn-primary {
        background-color: var(--primary-gold) !important;
        border-color: var(--primary-gold) !important;
        color: #000 !important;
        font-weight: bold;
    }
    .btn-outline-primary {
        color: var(--primary-gold) !important;
        border-color: var(--primary-gold) !important;
    }
    .btn-outline-primary:hover {
        background-color: var(--primary-gold) !important;
        color: #000 !important;
    }

    /* Quick Booking Section */
    .quick-booking-card {
        background-color: var(--card-bg) !important;
        border: 1px solid #333;
    }
    .quick-booking-card .form-label {
        color: var(--primary-gold) !important;
    }
    .quick-booking-card .form-control {
        background-color: #2a2a2a !important;
        border-color: #444 !important;
        color: white !important;
    }

    /* Services & Fleet Sections */
    .services-section, .fleet-section {
        background-color: var(--dark-bg) !important;
    }
    .section-title {
        color: var(--primary-gold) !important;
    }
    .service-card, .vehicle-card {
        background-color: var(--card-bg) !important;
        border: 1px solid #333 !important;
        transition: transform 0.3s ease, border-color 0.3s ease;
    }
    .service-card:hover, .vehicle-card:hover {
        border-color: var(--primary-gold) !important;
        transform: translateY(-10px);
    }
    .card-title {
        color: var(--primary-gold) !important;
    }
    .text-muted {
        color: var(--text-muted) !important;
    }
    .badge.bg-primary-light {
        background-color: rgba(197, 157, 95, 0.1) !important;
        color: var(--primary-gold) !important;
    }

    /* About Company Sections */
    .about-section {
        padding: 80px 0;
        background-color: var(--card-bg);
    }
    .about-icon {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }
    .stats-box {
        text-align: center;
        padding: 30px;
        border-radius: 15px;
        background: #111;
        border-bottom: 4px solid var(--primary-gold);
    }
    .stats-number {
        font-size: 2.5rem;
        font-weight: bold;
        color: var(--primary-gold);
    }
    
    
    /*aboute style*/
    
  
    body {
        background-color: var(--bg-black);
        color: var(--text-white);
    }

.text-muted{

color: white;           
}

    /* Page Header */
    .page-header {
        background: linear-gradient(180deg, #000 0%, #111 100%);
        border-bottom: 1px solid rgba(197, 157, 95, 0.2);
        padding: 5rem 0 !important;
        text-align: center;
    }

    .page-header h1 {
        font-size: 3.5rem;
        color: var(--primary-gold);
        font-weight: 800;
    }

    /* Breadcrumb */
    .breadcrumb {
        justify-content: center;
        background: transparent;
    }
    .breadcrumb-item a {
        color: var(--primary-gold);
        text-decoration: none;
    }
    .breadcrumb-item.active {
        color: var(--text-white);
    }

    /* About Content */
    .about-content {
        padding: 5rem 0;
    }
    .about-content h2 {
        color: var(--primary-gold);
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    .about-content p {
        color: var(--text-muted);
        line-height: 1.8;
    }
    .stat-box {
        background: var(--card-bg);
        padding: 20px;
        border-radius: 15px;
        border: 1px solid #222;
        text-align: center;
        transition: var(--transition);
    }
    .stat-box:hover {
        border-color: var(--primary-gold);
        transform: translateY(-5px);
    }
    .stat-box h3 {
        color: var(--primary-gold) !important;
        font-weight: bold;
    }
    .stat-box p {
        margin-bottom: 0;
        font-size: 0.9rem;
    }

    /* Mission & Vision */
    .mission-vision {
        background-color: #0a0a0a !important;
        padding: 5rem 0;
    }
    .mission-vision .card {
        background-color: var(--card-bg) !important;
        border: 1px solid #222 !important;
        border-radius: 20px;
        transition: var(--transition);
    }
    .mission-vision .card:hover {
        border-color: var(--primary-gold) !important;
    }
    .icon-box i {
        color: var(--primary-gold) !important;
    }
    .mission-vision h3 {
        color: var(--primary-gold);
        margin-bottom: 1rem;
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 5rem 0;
    }
    .section-title h2 {
        color: var(--primary-gold);
        text-align: center;
        margin-bottom: 10px;
    }
    .section-title p {
        color: var(--text-muted);
        text-align: center;
        margin-bottom: 50px;
    }
    .feature-box {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #222;
        height: 100%;
        transition: var(--transition);
    }
    .feature-box:hover {
        border-color: var(--primary-gold);
        transform: translateY(-5px);
    }
    .feature-icon {
        font-size: 2.5rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }
    .feature-box h4 {
        color: var(--text-white);
    }

    /* Testimonials */
    .testimonials-section {
        background-color: #0a0a0a !important;
        padding: 5rem 0;
    }
    .testimonial-card {
        background: var(--card-bg);
        padding: 30px;
        border-radius: 20px;
        border: 1px solid #222;
    }
    .testimonial-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid var(--primary-gold);
        margin-left: 15px;
    }
    .rating i {
        color: #444;
    }
    .rating i.active {
        color: var(--primary-gold);
    }
    .testimonial-text {
        color: var(--text-muted);
        font-style: italic;
    }

    /* Partners */
    .partners-section {
        padding: 5rem 0;
    }
    .partner-item img {
        filter: grayscale(1) brightness(2);
        opacity: 0.6;
        transition: var(--transition);
    }
    .partner-item:hover img {
        filter: grayscale(0) brightness(1);
        opacity: 1;
    }
    .text-card{
        color: #ffff
    }
    
    
    /*Contact us style */
    
    
     /* الثيمة الجديدة: أسود وذهبي */
    :root {
        --primary-gold: #c59d5f;
        --dark-bg: #000000;
        --card-bg: #1a1a1a;
        --text-white: #ffffff;
        --text-muted: #a0a0a0;
    }

    body {
        background-color: var(--dark-bg);
        color: var(--text-white);
    }

    .btn-primary {
        background-color: var(--primary-gold) !important;
        border-color: var(--primary-gold) !important;
        color: #000 !important;
        font-weight: bold;
    }

    .btn-primary:hover {
        background-color: #b88a4a !important;
        border-color: #b88a4a !important;
        color: #000 !important;
    }

    .btn-outline-primary {
        color: var(--primary-gold) !important;
        border-color: var(--primary-gold) !important;
    }

    .btn-outline-primary:hover {
        background-color: var(--primary-gold) !important;
        color: #000 !important;
    }

    .btn-success {
        background-color: #25D366 !important;
        border-color: #25D366 !important;
        color: #fff !important;
    }

    .btn-success:hover {
        background-color: #128C7E !important;
        border-color: #128C7E !important;
    }

    /* Hero Section */
    .page-header {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        padding: 60px 0;
        text-align: center;
    }

    .page-header h1 {
        color: var(--primary-gold);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .breadcrumb {
        background: transparent;
        justify-content: center;
    }

    .breadcrumb-item a {
        color: var(--primary-gold);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: var(--text-muted);
    }

    .breadcrumb-item::before {
        color: var(--text-muted);
    }

    /* Info Cards */
    .info-card {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 40px 20px;
        transition: all 0.3s ease;
        height: 100%;
    }

    .info-card:hover {
        border-color: var(--primary-gold);
        transform: translateY(-10px);
    }

    .info-icon {
        width: 80px;
        height: 80px;
        background: rgba(197, 157, 95, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .info-icon i {
        font-size: 2.5rem;
        color: var(--primary-gold);
    }

    .info-card h4 {
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .info-card p {
        color: var(--text-muted);
        margin-bottom: 10px;
        direction: ltr;
        text-align: center;
    }

    /* Contact Form */
    .contact-form-wrapper, .map-wrapper {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 30px;
        height: 100%;
    }

    .contact-form-wrapper h3, .map-wrapper h3 {
        color: var(--primary-gold);
        margin-bottom: 25px;
        text-align: center;
    }

    .form-control, .form-select {
        background-color: #2a2a2a !important;
        border-color: #444 !important;
        color: white !important;
        border-radius: 12px;
        padding: 12px 16px;
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--primary-gold) !important;
        box-shadow: 0 0 0 0.2rem rgba(197, 157, 95, 0.25);
    }

    .form-control::placeholder, .form-select {
        color: var(--text-muted);
    }

    textarea.form-control {
        resize: vertical;
    }

    /* Map Placeholder */
    .map-placeholder {
        background-color: #2a2a2a;
        border-radius: 12px;
        padding: 60px 20px;
        text-align: center;
    }

    .map-placeholder i {
        color: var(--primary-gold);
    }

    /* Working Hours */
    .working-hours {
        background-color: #0a0a0a;
        padding: 60px 0;
        text-align: center;
    }

    .section-title h2 {
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .section-title p {
        color: var(--text-muted);
    }

    .hours-box {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 20px;
        padding: 40px;
        margin-top: 30px;
    }

    .hours-box i {
        color: var(--primary-gold);
    }

    .hours-box h4 {
        color: var(--primary-gold);
        font-size: 1.5rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        background-color: var(--card-bg);
        border: 1px solid #333;
        border-radius: 15px;
        padding: 20px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--primary-gold);
    }

    .faq-item h5 {
        color: var(--primary-gold);
        margin-bottom: 15px;
    }

    .faq-item h5 i {
        margin-left: 10px;
    }

    .faq-item p {
        color: var(--text-muted);
        margin-bottom: 0;
    }

    .bg-primary-light {
        background-color: rgba(197, 157, 95, 0.1) !important;
        color: var(--primary-gold) !important;
    }
    
    
/*Fleet Style*/



    body {
        background-color: var(--bg-black);
        color: var(--text-white);
    }

    /* Page Header */
    .page-header {
        background: linear-gradient(180deg, #000 0%, #111 100%);
        border-bottom: 1px solid rgba(197, 157, 95, 0.2);
        padding: 5rem 0 !important;
        text-align: center;
    }

    .page-header h1 {
        font-size: 3.5rem;
        color: var(--primary-gold);
        font-weight: 800;
        margin-bottom: 1rem;
    }

    .page-header p {
        color: var(--text-muted);
        font-size: 1.2rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        justify-content: center;
        background: transparent;
    }
    .breadcrumb-item a {
        color: var(--primary-gold);
        text-decoration: none;
    }
    .breadcrumb-item.active {
        color: var(--text-white);
    }

    /* Filter Section */
    .filter-section {
        padding: 2rem 0;
        background-color: #0a0a0a;
    }
    .filter-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .filter-btn {
        background: transparent;
        border: 1px solid var(--primary-gold);
        color: var(--primary-gold);
        padding: 8px 25px;
        border-radius: 30px;
        transition: var(--transition);
    }
    .filter-btn.active, .filter-btn:hover {
        background: var(--primary-gold);
        color: black;
    }

    /* Fleet Grid */
    .fleet-grid {
        padding: 5rem 0;
    }
    .vehicle-card {
        background-color: var(--card-bg) !important;
        border: 1px solid #222 !important;
        border-radius: 20px;
        overflow: hidden;
        transition: var(--transition);
    }
    .vehicle-card:hover {
        border-color: var(--primary-gold) !important;
        transform: translateY(-10px);
    }
    .vehicle-image {
        position: relative;
        height: 250px;
        overflow: hidden;
    }
    .vehicle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }
    .vehicle-card:hover .vehicle-image img {
        transform: scale(1.1);
    }
    .vehicle-overlay {
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }
    .vehicle-card:hover .vehicle-overlay {
        opacity: 1;
    }

    .card-title {
        color: var(--primary-gold) !important;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .vehicle-specs {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    .vehicle-specs i {
        color: var(--primary-gold);
        margin-left: 5px;
    }

    .btn-gold {
        background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        color: black !important;
        font-weight: 600;
        border: none;
        border-radius: 30px;
        padding: 10px;
    }

    /* Features Section */
    .features-section {
        background-color: #0a0a0a !important;
        padding: 5rem 0;
    }
    .section-title h2 {
        color: var(--primary-gold);
        text-align: center;
        margin-bottom: 10px;
    }
    .section-title p {
        color: var(--text-muted);
        text-align: center;
        margin-bottom: 50px;
    }
    .feature-card {
        background: var(--card-bg);
        padding: 40px;
        border-radius: 20px;
        border: 1px solid #222;
        transition: var(--transition);
        height: 100%;
    }
    .feature-card:hover {
        border-color: var(--primary-gold);
        transform: translateY(-5px);
    }
    .feature-icon {
        font-size: 3rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }
    .feature-card h4 {
        color: var(--text-white);
        margin-bottom: 15px;
    }
    .feature-card p {
        color: var(--text-muted);
        margin-bottom: 0;
    }
    
    
/*service style*/


:root {
        --primary-gold: #c59d5f;
        --dark-gold: #a6824a;
        --bg-black: #000000;
        --card-bg: #111111;
        --text-white: #ffffff;
        --text-muted: #a0a0a0;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
        background-color: var(--bg-black);
        color: var(--text-white);
    }

    /* Page Header */
    .page-header {
        background: linear-gradient(180deg, #000 0%, #111 100%);
        border-bottom: 1px solid rgba(197, 157, 95, 0.2);
        padding: 5rem 0 !important;
    }

    .page-title {
        font-size: 3.5rem;
        color: var(--primary-gold);
        font-weight: 800;
    }

    .page-subtitle {
        color: var(--text-muted);
        font-size: 1.2rem;
    }

    .badge.bg-gold-light {
        background-color: rgba(197, 157, 95, 0.1) !important;
        color: var(--primary-gold) !important;
        border: 1px solid rgba(197, 157, 95, 0.3);
    }

    /* Breadcrumb */
    .breadcrumb-link {
        color: var(--primary-gold) !important;
        text-decoration: none;
    }
    .breadcrumb-item.active {
        color: var(--text-white) !important;
    }

    /* Services Grid */
    .services-grid {
        background-color: var(--bg-black);
    }

    .service-card {
        background-color: var(--card-bg) !important;
        border: 1px solid #222 !important;
        transition: var(--transition);
    }

    .service-card:hover {
        border-color: var(--primary-gold) !important;
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(197, 157, 95, 0.1) !important;
    }

    .service-header {
        border-bottom: 1px solid #222;
        padding-bottom: 1.5rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        background: rgba(197, 157, 95, 0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-gold);
    }

    .card-title {
        color: var(--primary-gold) !important;
    }

    .service-price {
        background: rgba(197, 157, 95, 0.05);
        border: 1px solid rgba(197, 157, 95, 0.1);
        padding: 1rem;
        border-radius: 12px;
    }

    .price-amount {
        color: var(--primary-gold) !important;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .btn-gold {
        background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        color: black !important;
        font-weight: 600;
        border: none;
    }

    .btn-gold:hover {
        filter: brightness(1.1);
        transform: scale(1.02);
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, #111 0%, #000 100%);
        border-top: 1px solid rgba(197, 157, 95, 0.2);
    }

    .cta-title {
        color: var(--primary-gold);
    }

    .btn-outline-gold {
        border: 2px solid var(--primary-gold);
        color: var(--primary-gold) !important;
        font-weight: 600;
    }

    .btn-outline-gold:hover {
        background-color: var(--primary-gold);
        color: black !important;
    }

    
    