/*
 * Luxury Law Firm Theme
 * Visual Identity: Dark + Gold Premium Look
 * 
 * Color Palette:
 * Primary Gold: #D4AF37
 * Mid Gold: #C29A2B
 * Dark Gold: #8B6F2B
 * Deep Bronze: #6A5023
 * Light Beige: #F5EEDC
 * Dark Base: #0D0D0D
 * Text White: #FFFFFF
 * Text Gray: #F2F2F2
 */

:root {
    --primary-gold: #D4AF37;
    --mid-gold: #C29A2B;
    --dark-gold: #8B6F2B;
    --deep-bronze: #6A5023;
    --light-beige: #F5EEDC;
    --dark-base: #0D0D0D;
    --dark-secondary: #1A1A1A;
    --dark-tertiary: #2D2D2D;
    --text-white: #FFFFFF;
    --text-gray: #F2F2F2;
    --text-muted: #B8B8B8;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C29A2B 50%, #8B6F2B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #E5C04A 0%, #D4AF37 50%, #C29A2B 100%);
    --dark-gradient: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
}

/* ============================================
   BASE STYLES
   ============================================ */

* {
    font-family: "madani", "Cairo", sans-serif;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    direction: rtl;
}

body {
    background-color: var(--dark-base);
    color: var(--text-white);
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: var(--dark-secondary);
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Links */
a {
    text-decoration: none;
    color: var(--primary-gold);
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--mid-gold);
    text-decoration: none;
}

/* Selection */
::selection {
    background: var(--primary-gold);
    color: var(--dark-base);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    background: var(--gold-gradient);
    color: var(--dark-base);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-gold:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: var(--dark-base);
}

.btn-gold-outline {
    position: relative;
    display: inline-block;
    padding: 12px 32px;
    background: transparent;
    color: var(--primary-gold);
    font-weight: 600;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-gold-outline:hover {
    background: var(--gold-gradient);
    color: var(--dark-base);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   PRE-LOADER
   ============================================ */

.pre-loader {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background: var(--dark-base);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    flex-direction: column;
}

.pre-loader .loader-logo {
    width: 150px;
    animation: pulse 2s ease-in-out infinite;
}

.pre-loader h1 {
    color: var(--primary-gold);
    margin-top: 30px;
    font-size: 24px;
    letter-spacing: 2px;
}

.pre-loader .loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dark-tertiary);
    border-top: 3px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-top: 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}

.pre-loader.hidden {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============================================
   TOP HEADER
   ============================================ */

.topHeader {
    background: var(--dark-base);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 10px 0;
    transition: all 0.3s ease;
}

.topHeader .emergency h6,
.topHeader .emergency a {
    color: var(--text-gray);
    font-size: 14px;
}

.topHeader .emergency a:hover {
    color: var(--primary-gold);
}

.topHeader .emergency i {
    color: var(--primary-gold);
    margin-left: 8px;
}

/* Social Icons */
.socialIcons {
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.socialIcons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    font-size: 14px;
}

.socialIcons a:hover {
    background: var(--gold-gradient);
    color: var(--dark-base);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Header Button */
.defaultBtn2 {
    background: var(--gold-gradient);
    color: var(--dark-base);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.defaultBtn2:hover {
    background: var(--gold-gradient-hover);
    color: var(--dark-base) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */

.mainNav {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.mainNav .navbar-brand img {
    height: 60px;
    object-fit: contain;
    filter: brightness(1.1);
}

.mainNav .nav-item .nav-link {
    color: var(--text-gray);
    padding: 10px 18px;
    margin: 0 2px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.mainNav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.mainNav .nav-item .nav-link:hover::after,
.mainNav .nav-item .nav-link.active::after {
    width: 60%;
}

.mainNav .nav-item .nav-link:hover,
.mainNav .nav-item .nav-link.active {
    color: var(--primary-gold);
}

/* Sticky Navigation */
.animatedNav .mainNav {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.animatedNav .topHeader {
    opacity: 0;
    visibility: hidden;
    height: 0;
    min-height: 0;
    padding: 0;
    overflow: hidden;
}

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid var(--primary-gold);
    padding: 8px 12px;
    background: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   MAIN SLIDER / HERO
   ============================================ */

.mainSlider {
    position: relative;
    overflow: hidden;
}

.mainSlider .mainSliderContainer .swiper-slide {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-height: 600px;
}

.mainSlider .mainSliderContainer .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(13, 13, 13, 0.7) 50%,
        rgba(13, 13, 13, 0.85) 100%
    );
    z-index: 1;
}

.mainSlider .mainSliderContainer .swiper-slide .info {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.mainSlider .mainSliderContainer .swiper-slide .info .hint {
    color: var(--text-white);
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.mainSlider .mainSliderContainer .swiper-slide .info .hint:first-child {
    color: var(--primary-gold);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mainSlider .mainSliderContainer .swiper-slide .info .btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.mainSlider .mainSliderContainer .swiper-slide .info .btns .btn {
    background: var(--gold-gradient);
    color: var(--dark-base);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mainSlider .mainSliderContainer .swiper-slide .info .btns .btn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--dark-base) !important;
}

/* Slider Navigation */
.mainSlider .swiperBtns {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.mainSlider .swiperBtns .swiper-button-next,
.mainSlider .swiperBtns .swiper-button-prev {
    position: relative;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.3s ease;
    top: unset;
    left: unset;
    right: unset;
}

.mainSlider .swiperBtns .swiper-button-next:hover,
.mainSlider .swiperBtns .swiper-button-prev:hover {
    background: var(--gold-gradient);
    color: var(--dark-base);
    border-color: transparent;
}

.mainSlider .swiperBtns .swiper-button-next::after,
.mainSlider .swiperBtns .swiper-button-prev::after {
    font-size: 18px;
}

/* Slider Bottom Decoration */
.mainSlider::after,
.mainSlider::before {
    content: '';
    position: absolute;
    bottom: -50px;
    width: 60%;
    height: 100px;
    background: var(--dark-base);
    z-index: 5;
    transform: rotate(3deg);
}

.mainSlider::after {
    right: -10%;
    transform: rotate(-3deg);
}

.mainSlider::before {
    left: -10%;
    transform: rotate(3deg);
}

/* ============================================
   ABOUT US SECTION
   ============================================ */

.aboutUs {
    background: var(--dark-base);
    padding: 100px 0;
    position: relative;
}

.aboutUs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.aboutUs .title {
    color: var(--primary-gold);
    margin-bottom: 30px;
    position: relative;
}

.aboutUs .title::after {
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    height: 1px;
}

.aboutUs .title::before {
    background: var(--primary-gold);
}

.aboutUs .title span {
    background: var(--dark-base);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 15px 30px;
    font-size: 20px;
}

.aboutUs .description-list {
    list-style: none;
    padding: 20px 0;
}

.aboutUs .description-list li {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--dark-secondary);
    border-radius: 10px;
    border-right: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.aboutUs .description-list li:hover {
    background: var(--dark-tertiary);
    transform: translateX(-5px);
}

.aboutUs .description-list li i {
    color: var(--primary-gold);
    font-size: 20px;
}

.aboutUs img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.Services-Section {
    background: var(--light-beige);
    padding: 100px 0;
    position: relative;
}

.Services-Section .title {
    color: var(--dark-base);
}

.Services-Section .title span {
    background: var(--light-beige);
    border-color: var(--dark-gold);
    color: var(--dark-base);
}

.Services-Section .title::after {
    background: linear-gradient(90deg, var(--dark-gold), transparent);
}

.Services-Section .title::before {
    background: var(--dark-gold);
}

.Services-Section .subTitle {
    color: var(--deep-bronze);
}

.Services-Section .job-categories-block {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    height: 100%;
}

.Services-Section .job-categories-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(106, 80, 35, 0.2);
    border-color: var(--primary-gold);
}

.Services-Section .job-categories-block .twm-media {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.Services-Section .job-categories-block:hover .twm-media {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.Services-Section .job-categories-block .twm-media i {
    font-size: 32px;
    color: var(--dark-base);
}

.Services-Section .job-categories-block .twm-content .twm-jobs-available {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 15px;
}

.Services-Section .job-categories-block .twm-content p {
    color: var(--deep-bronze);
    font-size: 14px;
    line-height: 1.8;
}

/* Owl Carousel Styling */
.Service-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient) !important;
    border-radius: 50% !important;
    color: var(--dark-base) !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.Service-carousel .owl-nav button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.Service-carousel .owl-dots .owl-dot span {
    background: var(--dark-gold);
}

.Service-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-gold);
    width: 30px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */

.contactForm {
    background: var(--dark-base);
    padding: 100px 0;
    position: relative;
}

.contactForm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.contactForm .contactInfo {
    padding: 30px;
}

.contactForm .contactInfo .title {
    color: var(--primary-gold);
    margin-bottom: 40px;
}

.contactForm .contactInfo .title span {
    background: var(--dark-base);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.contactForm .contactInfo .info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--dark-secondary);
    border-radius: 15px;
    border-right: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.contactForm .contactInfo .info:hover {
    background: var(--dark-tertiary);
    transform: translateX(-5px);
}

.contactForm .contactInfo .info i {
    color: var(--primary-gold);
    font-size: 24px;
    margin-top: 5px;
}

.contactForm .contactInfo .info .data h6 {
    color: var(--primary-gold);
    font-size: 16px;
    margin-bottom: 8px;
}

.contactForm .contactInfo .info .data p,
.contactForm .contactInfo .info .data a {
    color: var(--text-gray) !important;
    font-size: 14px;
}

.contactForm .contactInfo .info .data a:hover {
    color: var(--primary-gold) !important;
}

/* Form Styling */
.contactForm form {
    background: var(--dark-secondary);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.contactForm form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
}

.contactForm form .circleBlur,
.contactForm form .circleBlur2 {
    display: none;
}

.contactForm form .form-label {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.contactForm form .form-label i {
    color: var(--primary-gold);
}

.contactForm form .form-control {
    background: var(--dark-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-white);
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contactForm form .form-control:focus {
    background: var(--dark-base);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contactForm form .form-control::placeholder {
    color: var(--text-muted);
}

.contactForm form textarea.form-control {
    min-height: 150px;
    resize: none;
}

.contactForm form .customBtn {
    background: var(--gold-gradient);
    color: var(--dark-base);
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contactForm form .customBtn:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   REFERENCES / PARTNERS SECTION
   ============================================ */

.references {
    background: var(--dark-secondary);
    padding: 60px 0;
}

.references .referenceLogo {
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.references .referenceLogo img {
    max-height: 60px;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.references .referenceLogo:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.references .swiper-pagination-bullet {
    background: var(--dark-gold);
}

.references .swiper-pagination-bullet-active {
    background: var(--primary-gold);
}

/* ============================================
   FOOTER
   ============================================ */

#Footer .footer {
    background: var(--dark-base);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#Footer .footer .logo {
    max-width: 180px;
    margin-bottom: 25px;
}

#Footer .footer .info {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

#Footer .footer .head {
    color: var(--primary-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

#Footer .footer .head::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

#Footer .footer .Links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#Footer .footer .Links ul li {
    margin-bottom: 12px;
}

#Footer .footer .Links ul li a {
    color: var(--text-gray);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

#Footer .footer .Links ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(-5px);
}

#Footer .footer .Links ul li a::before {
    content: '←';
    margin-left: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

#Footer .footer .Links ul li a:hover::before {
    opacity: 1;
}

#Footer .footer .Links .more p {
    color: var(--primary-gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

#Footer .footer .Links .more a {
    color: var(--text-gray);
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

#Footer .footer .Links .more a:hover {
    color: var(--primary-gold);
}

#Footer .footer .Links .more a i {
    color: var(--primary-gold);
}

/* Copyright */
#Footer .footer .Copyright {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 50px;
    padding-top: 30px;
    text-align: center;
}

#Footer .footer .Copyright p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

#Footer .footer .Copyright a {
    color: var(--primary-gold);
}

/* Floating Buttons */
.container-wa,
.container-call {
    position: fixed;
    z-index: 999;
}

.container-wa {
    bottom: 100px;
    left: 30px;
}

.container-call {
    bottom: 30px;
    left: 30px;
}

.container-wa .floating-button,
.container-call .floating-button {
    width: 55px;
    height: 55px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.container-wa .floating-button:hover,
.container-call .floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.container-wa .floating-button i,
.container-call .floating-button i {
    color: var(--dark-base);
    font-size: 24px;
}

/* ============================================
   MODAL STYLING
   ============================================ */

.cvModal .modal-content {
    background: var(--dark-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
}

.cvModal .modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cvModal .modal-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    .mainNav .navbar-collapse {
        background: var(--dark-secondary);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(212, 175, 55, 0.1);
    }
    
    .mainNav .nav-item .nav-link {
        padding: 12px 15px;
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .mainSlider .mainSliderContainer .swiper-slide {
        height: 80vh;
        min-height: 500px;
    }
    
    .mainSlider .mainSliderContainer .swiper-slide .info {
        padding: 20px;
    }
    
    .mainSlider .mainSliderContainer .swiper-slide .info .hint:first-child {
        font-size: 28px;
    }
    
    .mainSlider .mainSliderContainer .swiper-slide .info .hint {
        font-size: 18px;
    }
    
    .mainSlider .mainSliderContainer .swiper-slide .info .btns .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .mainSlider .swiperBtns {
        display: none;
    }
    
    .aboutUs,
    .Services-Section,
    .contactForm {
        padding: 60px 0;
    }
    
    .contactForm form {
        padding: 25px;
    }
    
    .container-wa,
    .container-call {
        left: 15px;
    }
    
    .container-wa {
        bottom: 80px;
    }
    
    .container-call {
        bottom: 15px;
    }
    
    .container-wa .floating-button,
    .container-call .floating-button {
        width: 45px;
        height: 45px;
    }
    
    .container-wa .floating-button i,
    .container-call .floating-button i {
        font-size: 20px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gold {
    color: var(--primary-gold) !important;
}

.bg-dark-base {
    background-color: var(--dark-base) !important;
}

.bg-dark-secondary {
    background-color: var(--dark-secondary) !important;
}

.bg-light-beige {
    background-color: var(--light-beige) !important;
}

.border-gold {
    border-color: var(--primary-gold) !important;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   OVERRIDE OLD PURPLE COLOR (#4727a5)
   Replace with Gold Theme Colors
   ============================================ */

/* Override all purple colors from style.css */
.defaultBtn,
.defaultBtn2,
.defaultBtn3 {
    background: var(--gold-gradient) !important;
    color: var(--dark-base) !important;
    border: none !important;
}

.defaultBtn:hover,
.defaultBtn2:hover,
.defaultBtn3:hover {
    background: var(--gold-gradient-hover) !important;
    color: var(--dark-base) !important;
}

.defaultBtn span,
.defaultBtn2 span,
.defaultBtn3 span {
    background-color: var(--dark-base) !important;
}

.title,
.title2,
.title3,
.subTitle,
.pageTitle {
    color: var(--primary-gold) !important;
}

.title::after,
.title2::after,
.title3::after,
.pageTitle::before {
    background: linear-gradient(90deg, var(--primary-gold), transparent) !important;
}

.title::before,
.title2::before,
.title3::before {
    background: var(--primary-gold) !important;
}

.title a,
.title span,
.title2 a,
.title2 span,
.title3 a,
.title3 span,
.pageTitle span {
    border-color: var(--primary-gold) !important;
    color: var(--primary-gold) !important;
}

.title a,
.title2 a,
.title3 a {
    background: var(--gold-gradient) !important;
    color: var(--dark-base) !important;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: var(--dark-gold) !important;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-gold) !important;
}

.mainNav .nav-item .nav-link.active,
.mainNav .nav-item .nav-link:hover,
.mainNav .nav-item .nav-link:focus {
    color: var(--primary-gold) !important;
}

.mainNav .dropdown .dropdown-menu {
    background-color: var(--dark-secondary) !important;
    border-color: var(--primary-gold) !important;
}

.ourFields .content .fields .nav .nav-link.active {
    background-color: var(--primary-gold) !important;
    color: var(--dark-base) !important;
}

.ourFields .content .fields .tab-content ul li {
    color: var(--text-gray) !important;
}

.default-btn:hover {
    color: var(--primary-gold) !important;
}

/* ============================================
   HERO SECTION (New)
   ============================================ */

.hero-section {
    background: var(--dark-base);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero-section .hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-section .hero-title span {
    color: var(--primary-gold);
    display: block;
}

.hero-section .hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-section .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-section .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-section .hero-stat {
    text-align: center;
}

.hero-section .hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-gold);
    display: block;
    line-height: 1;
}

.hero-section .hero-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.hero-section .hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.4s both;
}

.hero-section .hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.hero-section .hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.hero-section .hero-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .hero-decoration-1 {
    top: 10%;
    right: 5%;
}

.hero-section .hero-decoration-2 {
    bottom: 10%;
    left: 10%;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding: 120px 0 40px;
    }
    
    .hero-section .hero-title {
        font-size: 36px;
    }
    
    .hero-section .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-section .hero-stats {
        gap: 20px;
    }
    
    .hero-section .hero-stat-number {
        font-size: 32px;
    }
    
    .hero-section .hero-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-title {
        font-size: 28px;
    }
    
    .hero-section .hero-buttons {
        flex-direction: column;
    }
    
    .hero-section .hero-buttons .btn-gold,
    .hero-section .hero-buttons .btn-gold-outline {
        width: 100%;
        text-align: center;
    }
    
    .hero-section .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */

.floating-buttons-container {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: var(--dark-base);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--dark-base);
}

/* WhatsApp Button */
.floating-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
}

.floating-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #2EE370 0%, #25D366 100%);
    color: #fff;
}

/* Call Button */
.floating-btn.call-btn {
    background: var(--gold-gradient);
}

.floating-btn.call-btn:hover {
    background: var(--gold-gradient-hover);
}

/* Back to Top Button */
.floating-btn.top-btn {
    background: var(--dark-secondary);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn.top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn.top-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-base);
}

/* Pulse Animation for WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.floating-btn.whatsapp-btn {
    animation: pulse-whatsapp 2s infinite;
}

.floating-btn.whatsapp-btn:hover {
    animation: none;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-buttons-container {
        left: 15px;
        bottom: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ============================================
   NEW SERVICES SECTION - LUXURY DESIGN
   ============================================ */

.services-section-new {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-beige) 0%, #EDE5D3 100%);
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Section Header */
.services-section-new .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-section-new .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-base);
    color: var(--primary-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-gold);
}

.services-section-new .section-badge i {
    font-size: 16px;
}

.services-section-new .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 15px;
}

.services-section-new .section-desc {
    font-size: 18px;
    color: var(--deep-bronze);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Grid */
.services-section-new .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Service Card */
.services-section-new .service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.services-section-new .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
}

/* Card Number */
.services-section-new .service-card .card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.services-section-new .service-card:hover .card-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

/* Card Icon */
.services-section-new .service-card .card-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section-new .service-card .card-icon i {
    font-size: 40px;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.services-section-new .service-card .card-icon .icon-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.services-section-new .service-card:hover .card-icon .icon-bg {
    background: var(--gold-gradient);
    transform: rotate(0deg);
    border-radius: 50%;
}

.services-section-new .service-card:hover .card-icon i {
    color: var(--dark-base);
    transform: scale(1.1);
}

/* Card Content */
.services-section-new .service-card .card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-base);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.services-section-new .service-card:hover .card-title {
    color: var(--dark-gold);
}

.services-section-new .service-card .card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Card Footer */
.services-section-new .service-card .card-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.services-section-new .service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-section-new .service-card .card-link i {
    transition: transform 0.3s ease;
}

.services-section-new .service-card .card-link:hover {
    color: var(--dark-gold);
}

.services-section-new .service-card .card-link:hover i {
    transform: translateX(-5px);
}

/* Card Shine Effect */
.services-section-new .service-card .card-shine {
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: right 0.5s ease;
}

.services-section-new .service-card:hover .card-shine {
    right: 100%;
}

/* CTA Button */
.services-section-new .services-cta {
    text-align: center;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.services-section-new .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-base);
    color: var(--primary-gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-section-new .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
    z-index: -1;
}

.services-section-new .cta-button:hover::before {
    width: 100%;
}

.services-section-new .cta-button:hover {
    color: var(--dark-base);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.services-section-new .cta-button i {
    transition: transform 0.3s ease;
}

.services-section-new .cta-button:hover i {
    transform: translateX(-5px);
}

/* ============================================
   SERVICES SECTION RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .services-section-new .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .services-section-new {
        padding: 80px 0;
    }
    
    .services-section-new .section-title {
        font-size: 32px;
    }
    
    .services-section-new .section-desc {
        font-size: 16px;
    }
    
    .services-section-new .service-card {
        padding: 30px 25px;
    }
    
    .services-section-new .service-card .card-icon {
        width: 80px;
        height: 80px;
    }
    
    .services-section-new .service-card .card-icon i {
        font-size: 35px;
    }
}

@media (max-width: 767px) {
    .services-section-new {
        padding: 60px 0;
    }
    
    .services-section-new .section-header {
        margin-bottom: 40px;
    }
    
    .services-section-new .section-badge {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .services-section-new .section-title {
        font-size: 26px;
    }
    
    .services-section-new .section-desc {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .services-section-new .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-section-new .service-card {
        padding: 30px 20px;
    }
    
    .services-section-new .service-card .card-number {
        font-size: 50px;
    }
    
    .services-section-new .service-card .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .services-section-new .service-card .card-icon i {
        font-size: 30px;
    }
    
    .services-section-new .service-card .card-title {
        font-size: 20px;
    }
    
    .services-section-new .service-card .card-desc {
        font-size: 14px;
    }
    
    .services-section-new .services-cta {
        margin-top: 40px;
    }
    
    .services-section-new .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .services-section-new {
        padding: 50px 0;
    }
    
    .services-section-new .section-title {
        font-size: 22px;
    }
    
    .services-section-new .service-card {
        padding: 25px 18px;
    }
    
    .services-section-new .service-card .card-number {
        font-size: 40px;
        top: 15px;
        left: 15px;
    }
    
    .services-section-new .service-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .services-section-new .service-card .card-icon i {
        font-size: 26px;
    }
    
    .services-section-new .service-card .card-title {
        font-size: 18px;
    }
    
    .services-section-new .cta-button {
        width: 100%;
        justify-content: center;
        padding: 14px 25px;
        font-size: 15px;
    }
}
