/* Antalya Temizlik Firmaları - Site Styles */

:root {
    --primary-blue: #1c52a0;
    --light-blue-bg: #8ab6e7;
    --accent-red: #da291c;
    --whatsapp-green: #25d366;
    --text-dark: #1a1a2e;
    --text-light: #64748b;
    --bg-light: #f8fafc;

    /* Modern Design Tokens */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);

    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* GLOBAL FORM STYLES - Modern Clean Design */
.form-control,
.form-select {
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 82, 160, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.btn {
    border-radius: var(--radius-md);
    font-weight: 600;
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 4px 14px rgba(28, 82, 160, 0.25);
}

.btn-primary:hover {
    background-color: #154285;
    border-color: #154285;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 82, 160, 0.35);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 16px;
}

.card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
}

.rounded-pill {
    border-radius: var(--radius-full) !important;
}

/* HEADER */
.header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: #444 !important;
    margin: 0 10px;
    font-size: 15px;
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    border-bottom: 2px solid var(--primary-blue);
}

.btn-header-add {
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: var(--radius-full);
    padding: var(--spacing-xs) var(--spacing-lg);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-header-add:hover {
    background-color: #154285;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Firma Ekle Button - Distinctive Style */
.btn-firma-ekle {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-firma-ekle:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45);
}

.header-search-icon {
    color: #888;
    font-size: 16px;
    margin-left: 15px;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4e8f8 50%, #c0ddf3 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 0 140px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.hero-woman-overlay {
    position: absolute;
    right: 5%;
    bottom: -20px;
    /* Hafif aşağıdan başlasın */
    height: 105%;
    max-height: 550px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a233a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-search-box {
    display: flex;
    gap: 10px;
}

.hero-search-box .form-select {
    height: 54px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.hero-search-box .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 82, 160, 0.1);
}

.hero-search-box .btn-search {
    background-color: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 0 var(--spacing-xl);
    font-weight: 700;
    height: 54px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.3);
}

.hero-search-box .btn-search:hover {
    background-color: #b01f14;
}

@media (max-width: 991px) {
    .hero-search-box {
        flex-direction: column;
    }

    .hero-search-box .btn-search {
        width: 100%;
        margin-top: 5px;
    }
}

/* SERVICES STRIP */
.services-strip {
    margin-top: -70px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.service-card-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: block;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-item i {
    margin-bottom: 15px;
}

.service-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

/* SECTION TITLES */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a233a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header i {
    color: #ffc107;
    /* Yıldız Rengi */
}

/* FEATURED COMPANIES */
.featured-section {
    padding: 20px 0 50px;
}

.company-card {
    background: #fff;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.company-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.company-card-body {
    padding: var(--spacing-lg);
}

.company-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.company-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.company-rating {
    color: #ffc107;
    font-size: 13px;
    margin-right: 15px;
}

.company-location {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.company-actions {
    display: flex;
    gap: 10px;
    padding: 0 15px 15px;
}

.btn-action-call {
    flex: 1;
    border: 1px solid var(--primary-blue);
    /* Mavi outline yerine dolu olmayan mavi */
    color: var(--primary-blue);
    background: #fff;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-call:hover {
    background: var(--primary-blue);
    color: #fff;
}

.btn-action-whatsapp {
    flex: 1;
    background-color: var(--whatsapp-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-whatsapp:hover {
    background-color: #1da851;
}

.btn-action-profile {
    flex: 1;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-action-profile:hover {
    background: #154285;
    color: #fff;
}

/* DISTRICTS SECTION */
.districts-section {
    padding: 30px 0 50px;
    background-color: #fcfcfc;
}

.district-btn-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.district-btn-item {
    background: linear-gradient(135deg, #e8f4fd 0%, #dbe9f6 100%);
    color: var(--text-dark);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.district-btn-item i {
    color: #ef7f1a;
    /* Turuncu ikonlar */
}

/* Farklı renklerde ikonlar için */
.district-btn-item:nth-child(2n) i {
    color: #1c52a0;
}

.district-btn-item:nth-child(3n) i {
    color: #25d366;
}

.district-btn-item:hover {
    background: linear-gradient(135deg, #dae8f5 0%, #c5dcf0 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}


/* WHY US SECTION */
.why-us-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    /* #f4f8fb */
}

.why-us-title {
    color: #1a233a;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #444;
}

.why-us-list li i {
    color: #1c52a0;
    /* Koyu Mavi Tik */
    font-size: 18px;
}

.why-us-image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* CONTACT FORM SECTION */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-section h3 {
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-xl);
}

.contact-form-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.contact-form-row .form-control,
.contact-form-row .form-select {
    width: 200px;
    height: 50px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-form-row .form-control:focus,
.contact-form-row .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 82, 160, 0.1);
}

.contact-form-row .btn-submit {
    background-color: var(--accent-red);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 0 var(--spacing-xl);
    font-weight: 700;
    height: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.25);
}

.contact-form-row .btn-submit:hover {
    background-color: #b01f14;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.35);
}

/* FOOTER */
.footer-simple {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.footer-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ====================================
   PAGE COMPONENTS - PROFESSIONAL STYLE
   ==================================== */

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    padding: 50px 0;
    color: #fff;
}

.page-header-gradient {
    background: linear-gradient(135deg, #1c52a0 0%, #3a7bd5 100%);
}

.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-light .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.header-stats {
    display: flex;
    gap: 20px;
}

.header-stats .stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
}

.header-stats .stat-item i {
    margin-right: 8px;
}

/* Filter Bar */
.filter-bar {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* Company Card Pro */
.company-card-pro {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.company-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.company-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.company-card-content {
    padding: 15px;
    flex-grow: 1;
}

.company-card-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.company-logo-thumb {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.company-logo-placeholder {
    background: #e8f4fd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.company-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.company-card-location {
    font-size: 13px;
    color: #888;
}

.company-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.company-card-rating .stars i {
    font-size: 12px;
    color: #ddd;
}

.company-card-rating .stars i.active {
    color: #ffc107;
}

.company-card-rating .rating-score {
    font-weight: 700;
    color: #333;
}

.company-card-rating .rating-count {
    font-size: 12px;
    color: #999;
}

.company-card-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.company-card-actions {
    display: flex;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

.btn-card-detail {
    flex: 1;
    background: var(--primary-blue);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-card-detail:hover {
    background: #154285;
    color: #fff;
}

.btn-card-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-card-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

.btn-card-call {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: var(--whatsapp-green);
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
}

/* Pagination Pro */
.pagination-pro .page-link {
    border: none;
    padding: 10px 16px;
    margin: 0 3px;
    border-radius: 8px;
    color: #666;
    font-weight: 500;
}

.pagination-pro .page-item.active .page-link {
    background: var(--primary-blue);
    color: #fff;
}

/* Company Hero */
.company-hero {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

.company-hero-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.company-hero-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    background: #fff;
}

.company-logo-placeholder-lg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.company-hero-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.company-hero-location {
    opacity: 0.8;
    margin-bottom: 10px;
}

.company-hero-rating i {
    color: #ffc107;
    font-size: 16px;
}

.company-hero-rating i:not(.active) {
    opacity: 0.4;
}

.company-hero-rating .score {
    font-weight: 700;
    margin-left: 8px;
}

.company-hero-rating .count {
    opacity: 0.7;
}

/* Content Card */
.content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.content-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card-header i {
    color: var(--primary-blue);
    font-size: 18px;
}

.content-card-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.content-card-body {
    padding: 20px;
}

/* Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.service-tag:hover {
    background: var(--primary-blue);
    color: #fff;
}

.service-tag i {
    margin-right: 5px;
}

/* Sidebar Card */
.sidebar-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sidebar-card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-header i {
    color: var(--primary-blue);
}

.sidebar-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.sidebar-card-body {
    padding: 20px;
}

.sidebar-card-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

/* Contact Item */
.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 18px;
    margin-top: 3px;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 3px;
}

.contact-item p {
    margin: 0;
    color: #333;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Sidebar CTA Card */
.sidebar-cta-card {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.sidebar-cta-card h4 {
    margin-bottom: 10px;
}

.sidebar-cta-card p {
    opacity: 0.8;
    font-size: 14px;
}

/* Section Header Inline */
.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-header-inline h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* Listing Card */
.listing-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.listing-card-image {
    height: 160px;
    object-fit: cover;
    width: 100%;
}

.listing-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.listing-card-body {
    padding: 15px;
}

.listing-badge {
    background: #e8f4fd;
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.listing-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 10px 0;
}

.listing-company {
    font-size: 13px;
    color: #888;
}

.listing-price {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.blog-placeholder {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.blog-card-body {
    padding: 20px;
}

.blog-category {
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-summary {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.blog-card-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}

/* Blog Detail */
.blog-header-section {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.blog-header-category {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-header-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-header-meta {
    display: flex;
    gap: 25px;
    opacity: 0.8;
    font-size: 14px;
}

.blog-header-meta i {
    margin-right: 8px;
}

.blog-content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
}

.blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* Share Section */
.share-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* Recent Posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts-list li {
    border-bottom: 1px solid #f0f0f0;
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.recent-posts-list a:hover {
    background: #f8f9fa;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post-info strong {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info small {
    color: #999;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.category-list a:hover,
.category-list li.active a {
    background: #f0f7ff;
    color: var(--primary-blue);
}

.category-list a i {
    margin-right: 10px;
}

/* Auth Section */
.auth-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    min-height: 100vh;
    padding: 50px 0;
}

.min-vh-75 {
    min-height: 75vh;
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.auth-info-side {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    color: #fff;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.auth-logo img {
    height: 50px;
    margin-bottom: 40px;
}

.auth-info-side h2 {
    font-weight: 800;
    margin-bottom: 15px;
}

.auth-info-side p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.auth-features {
    list-style: none;
    padding: 0;
}

.auth-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-features i {
    color: #4ade80;
}

.auth-stats {
    display: flex;
    gap: 30px;
    margin-top: auto;
}

.auth-stats .stat-item {
    text-align: center;
}

.auth-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.auth-stats .stat-label {
    font-size: 12px;
    opacity: 0.7;
}

.auth-form-side {
    padding: 50px 40px;
}

.auth-title {
    font-weight: 800;
    margin-bottom: 5px;
}

.auth-subtitle {
    color: #888;
    margin-bottom: 30px;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 14px;
    position: relative;
}

/* CTA Section */
.cta-mini-section {
    background: linear-gradient(135deg, #1c52a0 0%, #2d6ec9 100%);
    padding: 50px 0;
    color: #fff;
}

.cta-mini-section h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ccc;
}

.empty-state h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Service Header */
.service-header {
    background: linear-gradient(135deg, #1c52a0 0%, #3a7bd5 100%);
}

.service-header-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 2rem;
    color: #fff;
}

.service-description-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.service-description-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-stats .stat {
    text-align: center;
}

.service-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.service-stats .stat-label {
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-woman-overlay {
        display: none;
    }

    .services-strip {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 40px;
    }

    .contact-form-row {
        flex-direction: column;
    }

    .contact-form-row .form-control,
    .contact-form-row .form-select,
    .contact-form-row .btn-submit {
        width: 100%;
    }

    .footer-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .company-hero-info {
        flex-direction: column;
        text-align: center;
    }

    .blog-header-title {
        font-size: 1.8rem;
    }

    .blog-header-meta {
        flex-wrap: wrap;
        justify-content: center;
    }

    .auth-form-side {
        padding: 30px 20px;
    }

    .header-stats {
        flex-wrap: wrap;
    }
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    right: 5%;
    bottom: 50px;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.hero-circle-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50px;
    left: 50px;
    animation: float 6s ease-in-out infinite;
}

.hero-circle-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(28, 82, 160, 0.1);
    /* Primary Blue transparent */
    border-radius: 50%;
    bottom: 50px;
    right: 50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-icon-deco {
    position: absolute;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Why Us Illustration */
.why-us-illustration {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
}

.illustration-circle {
    width: 200px;
    height: 200px;
    background: #e8f4fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    position: relative;
    z-index: 1;
}

.illustration-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    font-weight: 700;
    color: var(--primary-blue);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.6);
    }

    100% {
        box-shadow: 0 2px 10px rgba(245, 158, 11, 0.4);
    }
}

.company-card-image {
    position: relative;
}

/* Reviews Section */
.reviews-section {
    background: #f8fafc;
}

.review-item {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-rating i {
    font-size: 14px;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    font-size: 28px;
    color: #ddd;
    transition: color 0.2s;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #ffc107;
}

/* ====================================
   PROFESSIONAL COMPANY DETAIL PAGE
   ==================================== */

/* Company Hero Pro */
.company-hero-pro {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.company-hero-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%23ffffff' 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");
    pointer-events: none;
}

.company-hero-info-pro {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    position: relative;
}

.company-hero-logo-wrapper {
    position: relative;
    flex-shrink: 0;
}

.company-hero-logo-pro {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.company-logo-placeholder-pro {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.featured-badge-pro {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.featured-badge-pro i {
    font-size: 10px;
}

.company-hero-content {
    flex: 1;
}

.company-hero-title-pro {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.company-hero-location-pro {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.company-hero-location-pro i {
    margin-right: 8px;
}

.company-hero-rating-pro {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stars-pro i {
    color: #ffc107;
    font-size: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.stars-pro i.far {
    opacity: 0.5;
}

.rating-score-pro {
    font-size: 1.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 10px;
}

.rating-count-pro {
    opacity: 0.8;
    font-size: 0.95rem;
}

.company-stats-pro {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item-pro {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.stat-item-pro:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.stat-item-pro i {
    font-size: 16px;
}

.company-hero-actions-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-hero-light-pro {
    background: #fff;
    color: var(--primary-blue);
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-hero-light-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-blue);
}

.btn-whatsapp-pro {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-pro:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* Enhanced Content Cards */
.content-card {
    transition: all 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Enhanced Sidebar Card */
.sidebar-card {
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Review Section Enhancements */
.reviews-section {
    background: #f8fafc;
}

.review-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.review-item:last-child {
    margin-bottom: 0;
}

/* Enhanced Alert Info */
.alert-info {
    background: linear-gradient(135deg, #e8f4fd 0%, #d4e8f8 100%);
    border: none;
    border-left: 4px solid var(--primary-blue);
    color: #1a5276;
    border-radius: 0 12px 12px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .company-hero-pro {
        padding: 50px 0;
    }

    .company-hero-info-pro {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-hero-title-pro {
        font-size: 1.8rem;
    }

    .company-hero-rating-pro {
        justify-content: center;
    }

    .company-stats-pro {
        justify-content: center;
    }

    .company-hero-actions-pro {
        width: 100%;
    }
}

/* Utility Animations */
.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-elevate {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-elevate:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}



/* Intl Tel Input - Bootstrap Integration */
.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@18.2.1/build/img/flags@2x.png");
    }

}

/* Service Request Form - Clean Card Design */
.contact-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-section h3 {
    text-align: center;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.6rem;
    margin-bottom: var(--spacing-xl);
}

.contact-form-row {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-form-row .form-control,
.contact-form-row .form-select {
    flex: 1;
    min-width: 180px;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 0 var(--spacing-md);
}

.contact-form-row .form-control:focus,
.contact-form-row .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 82, 160, 0.1);
    background: #fff;
}

.contact-form-row .btn-submit {
    height: 50px;
    border-radius: var(--radius-md);
    padding: 0 var(--spacing-xl);
    white-space: nowrap;
    background: var(--accent-red);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.25);
    transition: all 0.3s ease;
}

.contact-form-row .btn-submit:hover {
    background-color: #b91d12;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 41, 28, 0.35);
}

@media (max-width: 768px) {
    .contact-form-row {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }

    .contact-form-row .form-control,
    .contact-form-row .form-select {
        width: 100%;
        min-width: 100%;
    }

    .contact-form-row .btn-submit {
        width: 100%;
    }
}

/* Service Request Card - New Grid Layout */
.service-request-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    margin: 0 auto;
}

.service-request-card .form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.service-request-card .form-control,
.service-request-card .form-select {
    height: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    transition: all 0.2s ease;
}

.service-request-card .form-control:focus,
.service-request-card .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(28, 82, 160, 0.1);
    background: #fff;
}

.btn-submit-request {
    background: linear-gradient(135deg, var(--accent-red) 0%, #c01810 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 4px 14px rgba(218, 41, 28, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit-request:hover {
    background: linear-gradient(135deg, #c01810 0%, var(--accent-red) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(218, 41, 28, 0.4);
    color: #fff;
}

/* Fix for intl-tel-input inside service request card */
.service-request-card .iti {
    width: 100%;
}

.service-request-card .iti .form-control {
    padding-left: 90px;
}

/* =========================================
   intl-tel-input Global Z-Index Fix
   ========================================= */
/* Fix for phone country dropdown being hidden behind other elements */
.iti {
    position: relative;
    z-index: 10;
}

.iti--container {
    z-index: 9999 !important;
    /* position: fixed removed to let JS handle positioning correctly */
}

.iti__country-list {
    z-index: 9999 !important;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
}

.iti__country-list::-webkit-scrollbar {
    width: 6px;
}

.iti__country-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb {
    background: #c0c0c0;
    border-radius: 3px;
}

.iti__country-list::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

.iti__country {
    padding: 8px 12px;
    transition: background 0.2s ease;
}

.iti__country:hover {
    background: var(--bg-light);
}

.iti__country.iti__highlight {
    background: #e8f4fd;
}

.iti__flag-box,
.iti__country-name,
.iti__dial-code {
    vertical-align: middle;
}

.iti__country-name {
    margin-left: 8px;
    color: var(--text-dark);
}

.iti__dial-code {
    color: var(--text-muted);
    margin-left: 6px;
}