@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Tajawal:wght@400;500;700&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600&display=swap');

/* Color Variables & Config */
:root {
    --primary: #0057B8;
    --primary-rgb: 0, 87, 184;
    --secondary: #00B4D8;
    --secondary-rgb: 0, 180, 216;
    --accent: #009688;
    --accent-rgb: 0, 150, 136;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --dark: #1E293B;
    --dark-rgb: 30, 41, 59;
    --luxury-gold: #D4AF37;
    --luxury-gold-rgb: 212, 175, 55;
    --gray-muted: #64748B;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --card-shadow: 0 15px 35px rgba(0, 87, 184, 0.06);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Font stacks */
    --font-heading: 'Cairo', sans-serif;
    --font-sub: 'Tajawal', sans-serif;
    --font-body: 'IBM Plex Sans Arabic', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Offset for anchor links behind the sticky header */
[id] {
    scroll-margin-top: 110px;
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
}

p {
    font-family: var(--font-body);
    color: var(--gray-muted);
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Global Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #003a80 100%);
}

.bg-gradient-luxury {
    background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--luxury-gold);
}

.section-padding {
    padding: 100px 0;
}

.z-index-10 {
    position: relative;
    z-index: 10;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: var(--card-shadow);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 87, 184, 0.12);
    border-color: rgba(0, 180, 216, 0.3);
}

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

/* Premium Buttons */
.btn-premium {
    position: relative;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.95rem;
    overflow: hidden;
    z-index: 1;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-premium-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.25);
}

.btn-premium-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-premium-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.35);
}

.btn-premium-primary:hover::after {
    opacity: 1;
}

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

.btn-premium-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 87, 184, 0.2);
}

.btn-premium-luxury {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, #b8972f 100%);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
}

.btn-premium-luxury:hover {
    background: linear-gradient(135deg, #b8972f 0%, var(--luxury-gold) 100%);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
}

/* Premium Heading System */
.section-title-wrapper {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title-wrapper .subtitle {
    font-family: var(--font-sub);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 87, 184, 0.05);
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 16px;
}

.section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--luxury-gold);
    border-radius: 2px;
}

.section-title-wrapper h2::before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--primary);
}

/* Header & Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 87, 184, 0.05);
    padding: 10px 0;
}

.navbar-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.2);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary);
    line-height: 1.2;
}

.brand-subtitle {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    color: var(--luxury-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    padding: 8px 18px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2.5px;
    background: var(--luxury-gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: right;
}

.navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    background: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    position: relative;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    left: 6px;
    transition: var(--transition);
}

.toggler-icon-1 { top: 12px; }
.toggler-icon-2 { top: 18px; width: 18px; left: 12px; }
.toggler-icon-3 { top: 24px; }

.navbar-toggler:not(.collapsed) .toggler-icon-1 {
    transform: rotate(45deg);
    top: 18px;
}
.navbar-toggler:not(.collapsed) .toggler-icon-2 {
    opacity: 0;
}
.navbar-toggler:not(.collapsed) .toggler-icon-3 {
    transform: rotate(-45deg);
    top: 18px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 220px 0 140px;
    background: linear-gradient(to bottom, rgba(30, 41, 59, 0.93), rgba(15, 23, 42, 0.95)), url('../images/hero_bg.png') no-repeat center center / cover;
    overflow: hidden;
}

.hero-shape-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--white);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-tag i {
    color: var(--luxury-gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-title span {
    display: inline-block;
    color: var(--secondary);
}

.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-card-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.hero-card .form-control, 
.hero-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    text-align: right;
    transition: var(--transition);
}

.hero-card .form-control:focus, 
.hero-card .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.25);
}

.hero-card .form-control::placeholder {
    color: #94a3b8;
}

.hero-card option {
    background-color: var(--dark);
    color: var(--white);
}

/* About Teaser / About Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-main-img {
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--dark) 0%, #0f172a 100%);
    border: 2px solid var(--luxury-gold);
    border-radius: 20px;
    padding: 25px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    max-width: 220px;
}

.about-badge .years {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--luxury-gold);
    display: block;
    line-height: 1;
}

.about-badge .text {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    font-weight: 700;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 25px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 87, 184, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.about-feature-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.about-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-icon-overlay {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.3);
    z-index: 3;
}

.service-card-body {
    padding-top: 15px;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: var(--transition);
}

.service-card:hover .service-card-title {
    color: var(--primary);
}

.service-card-desc {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-card-btn {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card-btn i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.service-card:hover .service-card-btn i {
    transform: translateX(-4px);
}

/* Why Choose Us & Working Process */
.why-choose-bg {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: var(--white);
}

.why-choose-bg .section-title-wrapper h2 {
    color: var(--white);
}

.why-choose-bg .section-title-wrapper p {
    color: #94a3b8;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 180, 216, 0.2);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(0, 180, 216, 0.1);
    color: var(--secondary);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-card p {
    color: #94a3b8;
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Process Timeline */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.process-step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid rgba(0, 87, 184, 0.1);
    box-shadow: var(--card-shadow);
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 3;
    transition: var(--transition);
}

.process-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--luxury-gold);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step:hover .process-step-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: scale(1.05);
    border-color: transparent;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.88rem;
    margin-bottom: 0;
}

.process-col {
    position: relative;
}

.process-col:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 45px;
    left: -50%;
    width: 100%;
    height: 2px;
    border-top: 2px dashed rgba(0, 87, 184, 0.2);
    z-index: 1;
}

/* Brands We Repair */
.brand-swiper-container {
    padding: 20px 0;
}

.brand-slide-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.03);
    border: 1px solid rgba(0, 87, 184, 0.05);
    padding: 15px;
    transition: var(--transition);
}

.brand-slide-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.08);
}

.brand-slide-item span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-slide-item:hover span {
    opacity: 1;
    color: var(--secondary);
}

/* Counter Statistics */
.counter-box {
    text-align: center;
    padding: 30px 15px;
}

.counter-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 15px;
}

.counter-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-label {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    font-weight: 700;
    color: #cbd5e1;
}

/* Testimonials */
.testimonial-swiper-container {
    padding: 30px 0 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 87, 184, 0.04);
    height: 100%;
}

.testimonial-quote {
    font-size: 2.2rem;
    color: rgba(0, 87, 184, 0.1);
    margin-bottom: -15px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-info p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 20px !important;
    border-radius: 5px !important;
}

/* FAQ Accordion */
.accordion-item {
    background: var(--white);
    border: 1px solid rgba(0, 87, 184, 0.05) !important;
    margin-bottom: 15px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 87, 184, 0.02);
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.06);
    border-color: rgba(0, 180, 216, 0.15) !important;
}

.accordion-header {
    border-radius: 15px !important;
}

.accordion-button {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    padding: 20px 25px;
    text-align: right;
    box-shadow: none !important;
    background-color: var(--white) !important;
    transition: var(--transition);
}

.accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 87, 184, 0.05);
}

.accordion-body {
    padding: 20px 25px;
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.8;
}

/* CTA Call to Action */
.cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #003a80 100%);
    color: var(--white);
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    filter: blur(80px);
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    color: #e2e8f0;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-btn-group {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

/* Footer Section */
.main-footer {
    background: #0f1722;
    color: #94a3b8;
    padding: 80px 0 30px;
    border-top: 4px solid var(--luxury-gold);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2.5px;
    background: var(--luxury-gold);
}

.footer-about p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: var(--secondary);
}

.footer-links-list a:hover i {
    transform: translateX(-4px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    color: var(--luxury-gold);
    font-size: 1.1rem;
    margin-top: 4px;
}

.footer-contact-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-contact-text a {
    transition: var(--transition);
}

.footer-contact-text a:hover {
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #64748b;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Floating Actions & Widgets */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.btn-float {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.btn-float:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white);
}

.btn-float-whatsapp {
    background: #25D366;
}

.btn-float-whatsapp:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-float-call {
    background: var(--primary);
}

.btn-float-call:hover {
    box-shadow: 0 10px 25px rgba(0, 87, 184, 0.35);
}

.btn-float-backtop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--dark);
    opacity: 0;
    visibility: hidden;
}

.btn-float-backtop.show {
    opacity: 1;
    visibility: visible;
}

.btn-float-backtop:hover {
    box-shadow: 0 10px 25px rgba(30, 41, 59, 0.35);
}

/* Inner Page Banners */
.inner-banner {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%), url('../images/hero_bg.png') no-repeat center center / cover;
    color: var(--white);
    position: relative;
    border-bottom: 2px solid var(--luxury-gold);
}

.inner-banner h1 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: flex-start;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-item {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "\f104"; /* FontAwesome angle-left */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 10px;
    padding-right: 10px;
}

.breadcrumb-item a {
    color: #94a3b8;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
}

.breadcrumb-item.active {
    color: var(--luxury-gold);
}

/* About Page Specifics */
.values-card {
    height: 100%;
}

.values-icon {
    font-size: 2.2rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.values-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Contact Page Specifics */
.contact-info-card {
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(0, 87, 184, 0.06);
    color: var(--primary);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.contact-info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-info-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-text a {
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-info-text a:hover {
    color: var(--primary);
}

.contact-form-panel {
    border-radius: 24px;
}

.contact-form-panel .form-label {
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-panel .form-control,
.contact-form-panel .form-select {
    border: 1px solid rgba(0, 87, 184, 0.1);
    background-color: rgba(0, 87, 184, 0.02);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.95rem;
    text-align: right;
    transition: var(--transition);
}

.contact-form-panel .form-control:focus,
.contact-form-panel .form-select:focus {
    background-color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.15);
}

.map-container {
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 87, 184, 0.08);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Service Category Tabs/Badges */
.service-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    border: none;
}

.service-tab-btn {
    border: 1px solid rgba(0, 87, 184, 0.1);
    background: var(--white);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-tab-btn:hover {
    border-color: var(--secondary);
    color: var(--primary);
    background: rgba(0, 180, 216, 0.04);
}

.service-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(0, 87, 184, 0.2);
}
