:root {
    --orange: #FF7A00;
    --orange-dark: #E66A00;
    --orange-light: #FF9A33;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

* {
    font-family: 'Inter', 'Cabin', sans-serif;
}

body {
    font-family: 'Inter', 'Cabin', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Arabic Font */
html[dir="rtl"],
html[lang="ar"],
body[dir="rtl"],
body[lang="ar"] {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    direction: rtl;
}

html[dir="rtl"] *,
html[lang="ar"] *,
body[dir="rtl"] *,
body[lang="ar"] * {
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

/* French Font */
html[lang="fr"],
body[lang="fr"] {
    font-family: 'Inter', 'Cabin', sans-serif;
}

.text-orange {
    color: var(--orange) !important;
}

.bg-orange {
    background-color: var(--orange) !important;
}

.btn-orange {
    background-color: var(--orange);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-2px);
}

.rounded-custom {
    border-radius: 12px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.badge-orange {
    background-color: var(--orange);
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-image {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
    box-shadow: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.btn-rounded {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
}

.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.product-card {
    height: 100%;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.screenshot-gallery img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.screenshot-gallery img:hover {
    transform: scale(1.05);
}

.modal-content {
    border-radius: 12px;
    border: none;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}

.table {
    border-radius: 8px;
    overflow: hidden;
}

.table thead {
    background-color: var(--light-gray);
}

.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--orange);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Boldonse Font for Navbar Brand */
@font-face {
    font-family: 'Boldonse';
    src: url('../fonts/Boldonse-Regular.woff2') format('woff2'),
         url('../fonts/Boldonse-Regular.woff') format('woff'),
         url('../fonts/Boldonse-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.navbar-brand {
    font-family: 'Boldonse', 'Oswald', 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange) !important;
}

footer {
    background-color: #343a40 !important;
}

footer a {
    color: #f8f9fa !important;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--orange) !important;
    transition: color 0.3s ease;
}

footer .text-light {
    color: #f8f9fa !important;
}

/* RTL Support */
[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .dropdown-menu {
    right: 0;
    left: auto;
}

[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

/* Product Description Styles */
.product-description {
    line-height: 1.8;
    color: #333;
}

.product-description h2,
.product-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--orange);
    font-weight: 700;
}

.product-description h2 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--orange);
    padding-bottom: 0.5rem;
}

.product-description h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.product-description ul {
    margin: 1rem 0;
    padding-right: 2rem;
    list-style-type: disc;
}

.product-description li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.product-description p {
    margin-bottom: 1rem;
    text-align: justify;
}

.product-description strong {
    color: var(--orange);
    font-weight: 600;
}

.product-description div[lang="ar"] {
    direction: rtl;
    text-align: right;
}

.product-description div[lang="ar"] ul {
    padding-right: 2rem;
    padding-left: 0;
}

.product-description div[lang="fr"],
.product-description div[lang="en"] {
    direction: ltr;
    text-align: left;
}

.product-description div[lang="fr"] ul,
.product-description div[lang="en"] ul {
    padding-left: 2rem;
    padding-right: 0;
}

/* User Guide Accordion Styles */
.user-guide-accordion {
    --bs-accordion-border-radius: 12px;
    --bs-accordion-border-color: #e9ecef;
}

.user-guide-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.user-guide-accordion .accordion-item:hover {
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.15);
}

.user-guide-accordion .accordion-button {
    background-color: #f8f9fa;
    border: none;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: #333;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.user-guide-accordion .accordion-button:not(.collapsed) {
    background-color: var(--orange);
    color: white;
    box-shadow: none;
}

.user-guide-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.user-guide-accordion .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.25);
    border-color: var(--orange);
}

.user-guide-accordion .accordion-body {
    padding: 1.5rem;
    background-color: white;
    line-height: 1.8;
}

.user-guide-accordion .accordion-body h3 {
    color: var(--orange);
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.user-guide-accordion .accordion-body h3:first-child {
    margin-top: 0;
}

.user-guide-accordion .accordion-body p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

.user-guide-accordion .accordion-body ul {
    margin: 1rem 0;
    padding-right: 2rem;
    list-style-type: disc;
}

.user-guide-accordion .accordion-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: #555;
}

.user-guide-accordion .accordion-body strong {
    color: var(--orange);
    font-weight: 600;
}

/* RTL Support for Accordion */
[dir="rtl"] .user-guide-accordion .accordion-button::after {
    margin-left: 0;
    margin-right: auto;
    transform: rotate(180deg);
}

[dir="rtl"] .user-guide-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

[dir="rtl"] .user-guide-accordion .accordion-body ul {
    padding-right: 2rem;
    padding-left: 0;
}

[dir="ltr"] .user-guide-accordion .accordion-body ul {
    padding-left: 2rem;
    padding-right: 0;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .user-guide-accordion .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .user-guide-accordion .accordion-body {
        padding: 1.25rem;
    }
}

/* Phone Number Display - Always LTR (Left to Right) */
a[href^="tel:"],
.phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

/* Ensure phone numbers display correctly in RTL contexts */
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] .phone-number,
html[lang="ar"] a[href^="tel:"],
html[lang="ar"] .phone-number {
    direction: ltr !important;
    text-align: left !important;
    unicode-bidi: embed !important;
}

/* Advantages Cards Hover Effect */
.hvr-grow {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hvr-grow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Advantages Section Styling */
.advantages-card {
    border-top: 3px solid var(--orange);
    transition: all 0.3s ease;
}

.advantages-card:hover {
    border-top-color: var(--orange-dark);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.2) !important;
}

/* Advantages Title - Ensure same height for all titles */
.advantages-title {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure About Us sections are always visible */
.about-content .alert {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-content .alert-info,
.about-content .alert-success,
.about-content .alert-warning {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* About Us Page - Professional Minimalist Design with Shadows */
.about-main-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 8px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease;
}

.about-main-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Info Cards - Subtle Professional Shadows */
.about-info-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
    background: #ffffff;
}

.about-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08) !important;
}

.about-info-icon {
    filter: drop-shadow(0 2px 4px rgba(255, 122, 0, 0.3));
    transition: all 0.3s ease;
}

.about-info-card:hover .about-info-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 122, 0, 0.4));
}

/* Statistics Cards - Professional Premium Design */
.about-stat-card {
    background: linear-gradient(135deg, #FF7A00 0%, #E66A00 100%) !important;
    color: #ffffff !important;
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(255, 122, 0, 0.3), 0 5px 15px rgba(255, 122, 0, 0.2) !important;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-stat-card:hover::before {
    opacity: 1;
}

.stat-card-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-stat-card:hover .stat-card-bg {
    opacity: 1;
    animation: statPulse 3s ease-in-out infinite;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.about-stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 122, 0, 0.4), 0 10px 30px rgba(255, 122, 0, 0.3) !important;
}

.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.about-stat-icon {
    font-size: 3rem !important;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.about-stat-card:hover .about-stat-icon {
    transform: scale(1.1) rotate(8deg) translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #ffffff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    margin-bottom: 0.5rem !important;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-number {
    transform: scale(1.05);
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.stat-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-stat-card:hover .stat-decoration {
    opacity: 1;
    animation: statShine 2s ease-in-out infinite;
}

@keyframes statShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Specific styling for each card */
.stat-card-purchases {
    background: linear-gradient(135deg, #FF7A00 0%, #FF9500 50%, #E66A00 100%) !important;
}

.stat-card-countries {
    background: linear-gradient(135deg, #FF7A00 0%, #FF8C00 50%, #E66A00 100%) !important;
}

/* Icon Circle - Elegant Shadow */
.about-icon-circle {
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3), 0 4px 10px rgba(255, 122, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.about-main-card:hover .about-icon-circle {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 122, 0, 0.4), 0 6px 15px rgba(255, 122, 0, 0.25) !important;
}

/* Advantages Cards - Enhanced Shadows */
.advantages-card {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.advantages-card:hover {
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.about-advantage-icon {
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3), 0 3px 8px rgba(255, 122, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.advantages-card:hover .about-advantage-icon {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4), 0 5px 12px rgba(255, 122, 0, 0.3) !important;
}

/* Service Cards - Professional Deep Shadows */
.about-service-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.3s ease;
}

.about-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.about-service-icon {
    filter: drop-shadow(0 3px 6px rgba(255, 122, 0, 0.3));
    transition: all 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(255, 122, 0, 0.4));
}

.border-orange {
    border-color: var(--orange) !important;
}

/* Statistics Cards - Clean Design */
.bg-orange {
    background-color: var(--orange) !important;
}

/* Service Cards - Elegant Border */
.border-top.border-orange {
    border-top-width: 4px !important;
    border-top-color: var(--orange) !important;
}

/* Professional Breadcrumb Design */
.professional-breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05), 0 1px 4px rgba(0, 0, 0, 0.03);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.professional-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.professional-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    display: none;
}

.professional-breadcrumb .breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.professional-breadcrumb .breadcrumb-link:hover {
    color: var(--orange);
    background-color: rgba(255, 122, 0, 0.1);
    transform: translateX(2px);
}

.professional-breadcrumb .breadcrumb-link i {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.professional-breadcrumb .breadcrumb-separator {
    color: #dee2e6;
    font-size: 0.875rem;
    margin: 0 0.5rem;
    display: inline-flex;
    align-items: center;
}

.professional-breadcrumb .breadcrumb-current {
    color: var(--orange);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: 8px;
    display: inline-block;
    position: relative;
}

.professional-breadcrumb .breadcrumb-current::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--orange);
    border-radius: 0 2px 2px 0;
}

/* RTL Support for Breadcrumb */
[dir="rtl"] .professional-breadcrumb .breadcrumb-link:hover {
    transform: translateX(-2px);
}

[dir="rtl"] .professional-breadcrumb .breadcrumb-current::before {
    left: auto;
    right: 0;
    border-radius: 2px 0 0 2px;
}

[dir="rtl"] .professional-breadcrumb .breadcrumb-link i {
    margin-right: 0;
    margin-left: 0.25rem;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .professional-breadcrumb {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .professional-breadcrumb .breadcrumb-link,
    .professional-breadcrumb .breadcrumb-current {
        padding: 0.3rem 0.6rem;
    }
    
    .professional-breadcrumb .breadcrumb-separator {
        margin: 0 0.25rem;
        font-size: 0.75rem;
    }
}

/* Contact Page - Professional Shadows */
.contact-info-card {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 15px !important;
    background: #ffffff;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon-circle {
    box-shadow: 0 6px 15px rgba(255, 122, 0, 0.3), 0 3px 8px rgba(255, 122, 0, 0.2) !important;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 122, 0, 0.4), 0 5px 12px rgba(255, 122, 0, 0.3) !important;
}

.contact-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.contact-link {
    color: #6c757d;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--orange);
    text-shadow: 0 1px 2px rgba(255, 122, 0, 0.2);
}

.contact-form-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: #ffffff;
}

.contact-form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12), 0 6px 18px rgba(0, 0, 0, 0.08) !important;
}

.contact-form-card .form-control {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.contact-form-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.15);
}

.contact-form-card .btn-orange {
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form-card .btn-orange:hover {
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
}

